/* Main styles for Hackathon Raptors Wrapped 2025 */

:root {
    --raptor-purple: #667eea;
    --raptor-teal: #48dbfb;
    --raptor-gold: #feca57;
    --bg-dark: #1a1a2e;
    --bg-card: #16213e;
    --bg-light: #f8f9fa;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-accent: #feca57;
    --success: #00d26a;
    --warning: #ff9f43;
    --error: #ff6b6b;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #feca57 0%, #ff9f43 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Typography */
.mono {
    font-family: 'Courier New', Courier, monospace;
}

.code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Colors */
.accent { color: var(--raptor-gold); }
.purple { color: var(--raptor-purple); }
.teal { color: var(--raptor-teal); }
.success { color: var(--success); }
.error { color: var(--error); }

/* Links */
a {
    color: var(--raptor-purple);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    margin: 16px 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.fade-in {
    animation: fadeIn 0.4s ease;
}

.slide-in {
    animation: slideIn 0.4s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--raptor-purple);
}

/* Selection */
::selection {
    background: var(--raptor-purple);
    color: white;
}
