/* ============================================================
   TUNARENA - Design System (Stitch)
   Font: Spline Sans | Primary: #256af4 | Background: #f5f6f8
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #256af4;
    --primary-dark: #1d56c9;
    --primary-light: #5a8ff7;
    --primary-10: rgba(37, 106, 244, 0.1);
    --primary-20: rgba(37, 106, 244, 0.2);
    --secondary: #F59E0B;
    --secondary-dark: #D97706;
    --purple: #9333ea;
    --orange: #f97316;
    --bg: #f5f6f8;
    --bg-white: #ffffff;
    --text: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10B981;
    --danger: #EF4444;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --card-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --card-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* === Base === */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Spline Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); }
a:hover { color: var(--primary-dark); }

/* === App Shell (mobile-first centered) === */
.app-shell {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--bg);
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .app-shell { box-shadow: var(--card-shadow-lg); }
}

/* === Top Header === */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 50;
}

.app-header-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}

.app-header-brand {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
    text-transform: uppercase;
    font-style: italic;
}

.app-header-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-10);
    color: var(--primary);
    font-size: 1.1rem;
    text-decoration: none;
    flex-shrink: 0;
}

.app-header-avatar:hover { color: var(--primary); background: var(--primary-20); }

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.15s;
}

.header-btn:hover {
    background: var(--border);
}

/* === Wallet Chips (coins/tickets in header) === */
.wallet-chips {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.wallet-chip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.wallet-divider, .wallet-chip-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

.wallet-chip-value { font-size: 0.85rem; }
.wallet-chip-icon { font-size: 1rem; }
.wallet-chip-icon-coins { color: #F59E0B; }
.wallet-chip-icon-elo { color: var(--primary); }

/* === App Content (scrollable area above bottom nav) === */
.app-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 1rem 6rem;
}

/* === Bottom Navigation === */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-light);
    z-index: 100;
    padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom));
}

.bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.15s;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item:hover {
    color: var(--primary);
    text-decoration: none;
}

.bottom-nav-icon {
    font-size: 1.5rem;
}

.bottom-nav-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Cards === */
.card-tunarena {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.card-tunarena .card-header {
    background: var(--primary);
    border-bottom: none;
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
}

.card-tunarena .card-body {
    padding: 1.25rem;
}

/* Legacy support: .card-hitscan maps to .card-tunarena */
.card-hitscan {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.card-hitscan .card-header {
    background: var(--primary);
    border-bottom: none;
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
}

.card-hitscan .card-body {
    padding: 1.25rem;
}

/* === Buttons === */
.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    transition: all 0.15s;
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 106, 244, 0.3);
    color: #fff;
}

.btn-secondary {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--border-light);
    color: var(--text);
    border-color: var(--border);
}

.btn-outline-light {
    border-color: var(--border);
    color: var(--text-secondary);
}

.btn-outline-light:hover {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

/* Big play button (home) */
.btn-play {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(37, 106, 244, 0.25);
    transition: all 0.2s;
    cursor: pointer;
}

.btn-play:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 106, 244, 0.35);
    color: #fff;
}

/* === Tables (admin) === */
.table-hitscan,
.table-tunarena {
    color: var(--text);
}

.table-hitscan thead th,
.table-tunarena thead th {
    background-color: var(--primary);
    color: #fff;
    border-bottom: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.table-hitscan tbody tr,
.table-tunarena tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.table-hitscan tbody tr:hover,
.table-tunarena tbody tr:hover {
    background-color: var(--primary-10);
}

/* === Forms === */
.form-control, .form-select {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius);
}

.form-control:focus, .form-select:focus {
    background-color: var(--bg-white);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 3px var(--primary-10);
}

.form-label {
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
}

/* === Navbar (legacy top nav for admin) === */
.navbar-hitscan {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 1rem;
}

.navbar-hitscan .navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary);
    text-transform: uppercase;
}

.navbar-hitscan .navbar-brand span {
    color: var(--secondary);
}

.navbar-hitscan .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
}

.navbar-hitscan .nav-link:hover,
.navbar-hitscan .nav-link.active {
    color: var(--primary);
}

/* === Timeline (game) === */
.timeline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem;
    overflow-x: auto;
    min-height: 140px;
}

.timeline-card {
    flex-shrink: 0;
    width: 90px;
    height: 120px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    transition: all 0.2s;
    box-shadow: var(--card-shadow);
}

.timeline-card .card-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.timeline-card .card-title-small {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.timeline-card .card-artist-small {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.timeline-drop {
    flex-shrink: 0;
    width: 40px;
    height: 120px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0;
}

.timeline-drop.active {
    opacity: 1;
    border-color: var(--primary-light);
}

.timeline-drop:hover, .timeline-drop.highlight {
    background-color: var(--primary-10);
    border-color: var(--primary);
    opacity: 1;
}

/* Current song card */
.current-card {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(37, 106, 244, 0.15);
    max-width: 300px;
    margin: 0 auto;
}

.current-card .qr-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Player section */
.player-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
}

.player-section.active-player {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-10);
}

.player-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.player-score {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* === Scan page === */
.scan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: var(--bg);
}

.spotify-player {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-lg);
}

/* === Homepage === */
.hero-section {
    text-align: center;
    padding: 3rem 1rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
}

.hero-section .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Home redesign */
.home-hero {
    text-align: center;
    padding: 1.5rem 1rem;
}

.home-hero-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #5a8ff7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 24px rgba(37, 106, 244, 0.3);
}

.home-hero-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.home-hero-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.home-arena-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(37, 106, 244, 0.25);
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 1rem;
}

.home-arena-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 106, 244, 0.35);
}

.home-arena-cta:active { transform: scale(0.98); }

.home-arena-cta-icon { font-size: 2rem; }

.home-arena-cta-local {
    background: var(--bg-white);
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: var(--card-shadow-md);
}

.home-arena-cta-local:hover {
    color: var(--text);
    border-color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(37, 106, 244, 0.15);
}

.home-arena-cta-local .home-arena-cta-icon { color: var(--primary); }

.home-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.home-quick-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: transform 0.15s;
}

.home-quick-card:hover { transform: translateY(-2px); color: inherit; text-decoration: none; }
.home-quick-card:active { transform: scale(0.98); }

.home-quick-dark {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
}

.home-quick-dark .home-quick-sub { color: rgba(255,255,255,0.5); }

.home-quick-icon {
    font-size: 1.3rem;
    background: rgba(255,255,255,0.2);
    padding: 0.4rem;
    border-radius: var(--radius);
}

.home-quick-icon-primary {
    background: var(--primary-10);
    color: var(--primary);
}

.home-quick-title {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.home-quick-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.home-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    box-shadow: var(--card-shadow-md);
    margin-bottom: 1.5rem;
}

.home-form-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* === Stats cards (admin) === */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Result reveal === */
.reveal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.reveal-card {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    box-shadow: var(--card-shadow-lg);
    animation: reveal-in 0.5s ease-out;
}

.reveal-card.correct { border-color: var(--success); }
.reveal-card.wrong { border-color: var(--danger); }

.reveal-card .reveal-year {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
}

.reveal-card .reveal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 0.5rem;
}

.reveal-card .reveal-artist {
    font-size: 1rem;
    color: var(--text-secondary);
}

.reveal-card .reveal-result {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1.5rem;
}

.reveal-card .reveal-result.correct { color: var(--success); }
.reveal-card .reveal-result.wrong { color: var(--danger); }

@keyframes reveal-in {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* === Alert messages === */
.alert-hitscan,
.alert-tunarena {
    background-color: var(--primary-10);
    border: 1px solid var(--primary-light);
    color: var(--text);
    border-radius: var(--radius);
}

/* === Badge === */
.badge-year {
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25em 0.6em;
    border-radius: var(--radius);
}

/* === Pagination === */
.page-link {
    background-color: var(--bg-white);
    border-color: var(--border);
    color: var(--text-secondary);
}

.page-link:hover {
    background-color: var(--primary-10);
    border-color: var(--primary-light);
    color: var(--primary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* === Reveal card inline === */
.reveal-card-inline {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: var(--card-shadow-lg);
    animation: reveal-in 0.5s ease-out;
}

/* === Winner === */
.winner-banner {
    text-align: center;
    padding: 3rem;
}

.winner-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

/* === Leaderboard === */
.leaderboard-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
}

.leaderboard-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
}

.rank-gold { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
.rank-silver { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #000; }
.rank-bronze { background: linear-gradient(135deg, #CD7F32, #8B4513); color: #fff; }

/* Podium */
.podium-container { display: flex; justify-content: center; }
.podium { display: flex; align-items: flex-end; gap: 12px; }
.podium-step { text-align: center; width: 140px; }

.podium-medal {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.podium-1 .podium-medal { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
.podium-2 .podium-medal { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #000; }
.podium-3 .podium-medal { background: linear-gradient(135deg, #CD7F32, #8B4513); color: #fff; }

.podium-name { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.podium-stats { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 8px; }
.podium-bar { border-radius: 8px 8px 0 0; width: 100%; }
.podium-bar-1 { height: 120px; background: linear-gradient(to top, #FFD700, #FFA500); }
.podium-bar-2 { height: 80px; background: linear-gradient(to top, #C0C0C0, #A0A0A0); }
.podium-bar-3 { height: 50px; background: linear-gradient(to top, #CD7F32, #8B4513); }

.table-active { background-color: var(--primary-10) !important; }

/* === Team Members === */
.team-member-list { list-style: none; padding: 0; margin: 0; }
.team-member-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
}
.team-member-list li:last-child { border-bottom: none; }
.team-member-list .member-name { color: var(--text); font-weight: 500; }
.team-member-list .btn-remove {
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.team-member-list .btn-remove:hover { opacity: 1; }

/* === Print styles === */
.print-page {
    width: 210mm; min-height: 297mm; margin: 0 auto 2rem;
    padding: 10mm; background: #fff; color: #000; page-break-after: always;
}
.print-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr); gap: 0; width: 100%;
    height: calc(297mm - 20mm);
}
.print-card {
    border: 1px dashed #ccc; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 5mm; position: relative;
}
.print-card-recto .qr-code { width: 40mm; height: 40mm; }
.print-card-recto .card-number { position: absolute; bottom: 3mm; font-size: 8pt; color: #999; }
.print-card-verso { text-align: center; }
.print-card-verso .verso-year { font-size: 48pt; font-weight: 900; color: #000; line-height: 1; margin: 5mm 0; }
.print-card-verso .verso-title { font-size: 11pt; font-weight: 700; color: #333; margin-bottom: 2mm; }
.print-card-verso .verso-artist { font-size: 10pt; color: #666; }
.print-card::before {
    content: ''; position: absolute; inset: -1px;
    border: 0.5px dashed #ccc; pointer-events: none;
}

@media print {
    body { background: #fff !important; color: #000 !important; margin: 0; padding: 0; }
    .no-print { display: none !important; }
    .print-page { margin: 0; padding: 10mm; box-shadow: none; page-break-after: always; }
    .print-card { border: 0.5px dashed #ccc; }
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 1.75rem; }
    .timeline { gap: 4px; }
    .timeline-card { width: 70px; height: 100px; }
    .timeline-card .card-year { font-size: 1.2rem; }
}

/* === Content padding for bottom nav === */
.has-bottom-nav {
    padding-bottom: 5rem;
}
