*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #080C10;
    --bg2: #0D1117;
    --bg3: #141A22;
    --bg4: #1C242E;
    --accent: #00C853;
    --accent2: #00E676;
    --gold: #FFB300;
    --text: #F0F4F8;
    --muted: #7A8899;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(0,200,83,0.2);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(8,12,16,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex; align-items: center;
    padding: 0 24px;
  }
  .nav-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text);
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    font-size: 13px; font-weight: 500;
    text-decoration: none; color: var(--muted);
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent);
    color: #000; font-size: 13px; font-weight: 600;
    padding: 8px 20px; border-radius: 4px;
    text-decoration: none; letter-spacing: 0.5px;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--accent2); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 60px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,200,83,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255,179,0,0.05) 0%, transparent 50%);
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 900px;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,200,83,0.1);
    border: 1px solid var(--border2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px; font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 110px);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 12px;
  }
  .hero-title em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-sub {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--muted);
    max-width: 600px; margin: 0 auto 40px;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .btn-primary {
    background: var(--accent); color: #000;
    padding: 14px 32px; border-radius: 4px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.1s;
  }
  .btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 32px; border-radius: 4px;
    text-decoration: none; font-weight: 500; font-size: 14px;
    letter-spacing: 0.5px;
    transition: border-color 0.2s, transform 0.1s;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

  /* Countdown */
  .countdown {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  }
  .cd-unit {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .cd-number {
    font-family: var(--font-display);
    font-size: 52px; line-height: 1;
    color: var(--text);
    background: var(--bg3);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    padding: 16px 24px;
    min-width: 90px; text-align: center;
    border-radius: 4px;
  }
  .cd-label {
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--muted);
    font-weight: 500;
  }

  /* ── SECTIONS ── */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1300px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  h2.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    color: var(--text);
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .section-lead {
    font-size: 17px; color: var(--muted);
    max-width: 680px; line-height: 1.7;
    margin-bottom: 48px;
  }

  /* ── TOURNAMENT OVERVIEW ── */
  .overview-section { background: var(--bg2); }

  .overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .overview-prose p {
    color: rgba(240,244,248,0.75);
    font-size: 16px; line-height: 1.8;
    margin-bottom: 20px;
  }

  .stat-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 40px;
  }
  .stat-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    border-radius: 4px;
    padding: 20px 16px;
    text-align: center;
  }
  .stat-number {
    font-family: var(--font-display);
    font-size: 44px; color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 12px; color: var(--muted);
    letter-spacing: 1px; text-transform: uppercase;
  }

  .format-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
  }
  .format-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 16px 20px; border-radius: 4px;
  }
  .format-icon {
    width: 32px; height: 32px;
    background: rgba(0,200,83,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
  }
  .format-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; color: var(--text); }
  .format-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* ── HOST NATIONS ── */
  .hosts-section { background: var(--bg); }

  .hosts-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .host-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .host-card-top {
    padding: 32px 28px 24px;
    position: relative;
  }
  .host-flag {
    font-size: 52px; margin-bottom: 16px; display: block;
  }
  .host-name {
    font-family: var(--font-display);
    font-size: 34px; letter-spacing: 1px;
    color: var(--text); margin-bottom: 8px;
  }
  .host-card p {
    font-size: 14px; color: var(--muted); line-height: 1.7;
  }
  .host-card-footer {
    border-top: 1px solid var(--border);
    padding: 16px 28px;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .host-tag {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px; color: var(--muted);
    white-space: nowrap;
  }
  .host-games {
    position: absolute; top: 20px; right: 20px;
    background: var(--accent);
    color: #000; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 100px;
    letter-spacing: 0.5px;
  }

  /* ── TEAMS ── */
  .teams-section { background: var(--bg2); }

  .teams-filter {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
  }
  .filter-btn {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 8px 18px; border-radius: 100px;
    font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--accent); color: #000;
    border-color: var(--accent);
  }

  .teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
  .team-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px 16px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    position: relative;
  }
  .team-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
  }
  .team-flag-big { font-size: 36px; margin-bottom: 10px; display: block; }
  .team-name {
    font-size: 15px; font-weight: 600; color: var(--text);
    margin-bottom: 4px;
  }
  .team-rank {
    font-size: 12px; color: var(--muted);
    font-family: var(--font-mono);
    margin-bottom: 8px;
  }
  .team-best {
    font-size: 12px;
    background: rgba(0,200,83,0.1);
    color: var(--accent);
    border-radius: 100px;
    padding: 3px 10px;
    display: inline-block;
  }
  .team-group-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px; font-family: var(--font-mono);
    color: var(--muted);
  }

  /* ── PLAYERS ── */
  .players-section { background: var(--bg); }

  .players-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
  .player-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
  }
  .player-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .player-card-top {
    background: var(--bg3);
    padding: 28px 24px 20px;
    display: flex; align-items: center; gap: 18px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .player-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg4), var(--bg3));
    border: 2px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
  }
  .player-name {
    font-family: var(--font-display);
    font-size: 22px; letter-spacing: 0.5px;
    color: var(--text); line-height: 1;
    margin-bottom: 4px;
  }
  .player-club { font-size: 13px; color: var(--muted); }
  .player-nation-flag {
    position: absolute; top: 16px; right: 16px;
    font-size: 22px;
  }
  .player-card-body { padding: 16px 24px 20px; }
  .player-stat-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-bottom: 14px;
  }
  .player-stat { }
  .player-stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
  .player-stat-val { font-size: 15px; font-weight: 600; color: var(--text); }
  .player-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .player-rating {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(255,179,0,0.1);
    border: 1px solid rgba(255,179,0,0.2);
    color: var(--gold);
    padding: 4px 12px; border-radius: 100px;
    font-size: 12px; font-weight: 600;
    margin-top: 12px;
  }

  /* ── FIXTURES ── */
  .fixtures-section { background: var(--bg2); }

  .phase-tabs {
    display: flex; gap: 0; margin-bottom: 40px;
    border: 1px solid var(--border);
    border-radius: 6px; overflow: hidden;
    width: fit-content;
  }
  .phase-tab {
    background: transparent; color: var(--muted);
    border: none; padding: 10px 24px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    cursor: pointer; transition: all 0.2s;
    border-right: 1px solid var(--border);
  }
  .phase-tab:last-child { border-right: none; }
  .phase-tab.active { background: var(--accent); color: #000; font-weight: 600; }
  .phase-tab:hover:not(.active) { color: var(--text); background: var(--bg3); }

  .fixtures-grid {
    display: grid; gap: 12px;
  }
  .fixture-row {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 160px 1fr auto 1fr 120px;
    align-items: center; gap: 16px;
  }
  .fixture-date { font-size: 13px; color: var(--muted); font-family: var(--font-mono); }
  .fixture-team {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 500;
  }
  .fixture-team.right { flex-direction: row-reverse; text-align: right; }
  .fixture-vs {
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 13px; color: var(--muted);
    text-align: center; white-space: nowrap;
  }
  .fixture-venue { font-size: 12px; color: var(--muted); text-align: right; }
  .fixture-venue strong { display: block; color: var(--text); font-size: 13px; }
  .fixture-group {
    background: rgba(0,200,83,0.1);
    color: var(--accent);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1px;
  }

  /* ── STADIUMS ── */
  .stadiums-section { background: var(--bg); }

  .stadiums-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
  .stadium-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
  }
  .stadium-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .stadium-visual {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: var(--bg3);
    display: flex; align-items: center; justify-content: center;
  }
  .stadium-silhouette {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.5;
    font-size: 80px;
  }
  .stadium-capacity-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px; color: var(--text);
    font-family: var(--font-mono);
  }
  .stadium-body { padding: 20px; }
  .stadium-name {
    font-family: var(--font-display);
    font-size: 22px; color: var(--text);
    margin-bottom: 4px;
  }
  .stadium-city { font-size: 13px; color: var(--accent); margin-bottom: 10px; }
  .stadium-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
  .stadium-meta {
    display: flex; gap: 16px;
    padding-top: 12px; border-top: 1px solid var(--border);
  }
  .stadium-meta-item { font-size: 12px; color: var(--muted); }
  .stadium-meta-item strong { color: var(--text); font-size: 13px; display: block; }

  /* ── RIVALRIES ── */
  .rivalries-section { background: var(--bg2); }

  .rivalry-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .rivalry-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    position: relative; overflow: hidden;
  }
  .rivalry-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
  }
  .rivalry-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
  }
  .rivalry-flags { font-size: 32px; display: flex; gap: 4px; }
  .rivalry-name {
    font-family: var(--font-display);
    font-size: 24px; color: var(--text);
  }
  .rivalry-meetings {
    background: var(--bg4);
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 12px; color: var(--muted);
    font-family: var(--font-mono);
  }
  .rivalry-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-bottom: 16px;
  }
  .rs { text-align: center; }
  .rs-num {
    font-family: var(--font-display);
    font-size: 32px; color: var(--text); line-height: 1;
  }
  .rs-num.win { color: var(--accent); }
  .rs-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
  .rivalry-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ── PREDICTIONS ── */
  .predictions-section { background: var(--bg); }

  .predictions-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
  .favorites-list { display: flex; flex-direction: column; gap: 12px; }
  .favorite-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .fav-rank {
    font-family: var(--font-display);
    font-size: 28px; color: var(--border);
    min-width: 36px;
  }
  .fav-rank.top { color: var(--gold); }
  .fav-info { flex: 1; }
  .fav-name { font-size: 15px; font-weight: 600; color: var(--text); }
  .fav-desc { font-size: 13px; color: var(--muted); }
  .fav-odds {
    font-family: var(--font-mono);
    font-size: 14px; color: var(--accent);
    background: rgba(0,200,83,0.08);
    border: 1px solid var(--border2);
    padding: 4px 12px; border-radius: 4px;
  }
  .dark-horses { }
  .dark-horse-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 18px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 12px;
  }
  .dh-flag { font-size: 24px; }
  .dh-info { flex: 1; }
  .dh-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .dh-desc { font-size: 12px; color: var(--muted); }
  .dh-label {
    font-size: 11px; color: var(--gold);
    background: rgba(255,179,0,0.1);
    border: 1px solid rgba(255,179,0,0.2);
    padding: 3px 8px; border-radius: 100px;
    white-space: nowrap;
  }

  /* ── FAQ ── */
  .faq-section { background: var(--bg2); }

  .faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .faq-item {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--accent); }
  .faq-item:hover { border-color: rgba(0,200,83,0.3); }
  .faq-q {
    font-size: 15px; font-weight: 600; color: var(--text);
    margin-bottom: 0; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .faq-icon {
    width: 20px; height: 20px;
    background: var(--bg4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    font-size: 14px; color: var(--muted); line-height: 1.7;
    margin-top: 12px;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }

  /* ── FOOTER ── */
  footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 48px 24px;
  }
  .footer-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
  }
  .footer-brand p {
    font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 12px;
  }
  .footer-col h4 {
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--muted); margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul a {
    font-size: 14px; color: rgba(240,244,248,0.5);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--accent); }
  .footer-bottom {
    max-width: 1300px; margin: 32px auto 0;
    padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 13px; color: var(--muted); }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: rgba(0,200,83,0.3); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .overview-grid, .hosts-grid, .rivalry-grid, .predictions-grid, .faq-grid { grid-template-columns: 1fr; }
    .fixture-row { grid-template-columns: 1fr; gap: 8px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    nav .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; }
    .countdown { gap: 12px; }
    .cd-number { font-size: 36px; min-width: 68px; }
  }

  /* Divider */
  .section-divider {
    width: 48px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 40px;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0.4;
  }
  .scroll-hint p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
  .scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(4px); }
  }

  /* Top bar */
  .top-bar {
    background: var(--accent);
    color: #000; font-size: 12px; font-weight: 600;
    text-align: center; padding: 8px;
    letter-spacing: 1px;
  }