    /* ── DESIGN TOKENS. DARK MODE (default) ─────────────────── */
    :root {
      --studio-black:   #0d0e12;
      --studio-deep:    #13141a;
      --studio-card:    #1a1c24;
      --studio-raised:  #20222d;
      --studio-border:  rgba(255,255,255,0.07);
      --studio-border2: rgba(255,255,255,0.13);

      --amber:          #f5a623;
      --amber-dim:      #c47e10;
      --amber-glow:     rgba(245,166,35,0.18);
      --red-live:       #e8304a;
      --red-live-glow:  rgba(232,48,74,0.25);

      --ink-primary:    #f0f0f0;
      --ink-secondary:  #9ea3b0;
      --ink-tertiary:   #5c6070;
      --ink-muted:      #3a3e4d;

      --bg-page:        var(--studio-black);
      --bg-deep:        var(--studio-deep);
      --bg-card:        var(--studio-card);
      --bg-raised:      var(--studio-raised);
      --border-subtle:  var(--studio-border);
      --border-mid:     var(--studio-border2);

      --font-display:   'Bebas Neue', sans-serif;
      --font-body:      'DM Sans', sans-serif;

      --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
      --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
      --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
    }

    html.light {
      --studio-black:   #f4f4f6;
      --studio-deep:    #ffffff;
      --studio-card:    #ffffff;
      --studio-raised:  #eeeef2;
      --studio-border:  rgba(0,0,0,0.08);
      --studio-border2: rgba(0,0,0,0.14);
      --ink-primary:    #111318;
      --ink-secondary:  #4a4f60;
      --ink-tertiary:   #8a8fa0;
      --ink-muted:      #c0c4d0;
      --bg-page: #f4f4f6; --bg-deep: #ffffff; --bg-card: #ffffff;
      --bg-raised: #eeeef2; --border-subtle: rgba(0,0,0,0.08); --border-mid: rgba(0,0,0,0.14);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg-page);
      color: var(--ink-primary);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
      transition: background 0.3s, color 0.3s;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.5;
    }
    html.light body::before { opacity: 0; }

    .page-wrapper {
      position: relative;
      z-index: 1;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 var(--sp-5);
    }

    /* ── TOPBAR. Alleen zichtbaar op mobiel ─────────────────── */
    .topbar { display: none; }

    @media (max-width: 600px) {
      .topbar {
        display: block;
        background: var(--bg-deep);
        border-bottom: 1px solid var(--border-subtle);
        transition: background 0.3s;
      }
      html.light .topbar { background: #a50d26; border-bottom: 1px solid rgba(0,0,0,0.1); }
      .topbar-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 5px var(--sp-5);
        display: flex;
        justify-content: center;
      }
    }

    /* Lang-switcher. Op desktop/tablet in de header, op mobiel in de topbar */
    .lang-switcher { display: flex; gap: var(--sp-2); align-items: center; }
    .lang-switcher a {
      display: flex; align-items: center; justify-content: center;
      width: 28px; height: 20px;
      border-radius: 3px; overflow: hidden;
      opacity: 0.55; transition: opacity 0.2s; text-decoration: none;
    }
    .lang-switcher a:hover { opacity: 1; }
    .lang-switcher a.active { opacity: 1; outline: 2px solid var(--amber); outline-offset: 2px; }
    .lang-switcher img { width: 28px; height: 20px; object-fit: cover; display: block; }
    .lang-code { display: none; } /* altijd verborgen op desktop */

    /* Op mobiel: landcodes tonen, vlaggen verbergen (in topbar) */
    @media (max-width: 600px) {
      .lang-switcher img { display: none; }
      .lang-code {
        display: inline;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--ink-secondary);
        font-family: var(--font-body);
      }
      html.light .lang-code { color: rgba(255,255,255,0.8); }
      .lang-switcher a { width: auto; height: auto; padding: 3px 5px; overflow: visible; }
      .lang-switcher a.active .lang-code { color: var(--ink-primary); }
      html.light .lang-switcher a.active .lang-code { color: #fff; }
      /* Lang-switcher in header verbergen op mobiel. Zit in topbar */
      header .lang-switcher { display: none; }
    }

    /* ── HEADER ──────────────────────────────────────────────── */
    header {
      background: var(--bg-deep);
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background 0.3s, border-color 0.3s;
    }
    html.light header { background: #c8102e; border-bottom: 1px solid rgba(0,0,0,0.15); }
    html.light .logo-text { color: #fff; }
    html.light .logo-text span { color: #ffe066; }
    html.light .header-tagline { color: rgba(255,255,255,0.65); }
    html.light .live-badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }
    html.light .live-dot { background: #fff; }
    html.light .logo-icon { background: #fff; box-shadow: none; }
    html.light .logo-icon svg { fill: #c8102e; }
    html.light .lang-switcher a.active { outline-color: #ffe066; }
    html.light .theme-toggle { color: rgba(255,255,255,0.85); }
    html.light .theme-toggle:hover { background: rgba(255,255,255,0.15); color: #fff; }

    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: var(--sp-4) var(--sp-5);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: var(--sp-4);
    }

    .logo-area { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; }

    .logo-icon {
      width: 40px; height: 40px;
      background: var(--amber);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 0 20px var(--amber-glow);
    }
    .logo-icon svg { width: 22px; height: 22px; fill: var(--studio-black); }

    .logo-text { font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; color: var(--ink-primary); line-height: 1; }
    .logo-text span { color: var(--amber); }
    .header-tagline { font-size: 11px; color: var(--ink-tertiary); letter-spacing: 0.5px; display: block; margin-top: 2px; }

    .live-badge {
      display: flex; align-items: center; gap: var(--sp-2);
      background: rgba(232,48,74,0.12);
      border: 1px solid rgba(232,48,74,0.3);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
      color: var(--red-live);
      text-transform: uppercase;
    }

    .live-dot {
      width: 7px; height: 7px;
      background: var(--red-live);
      border-radius: 50%;
      animation: pulse-red 1.4s ease-in-out infinite;
    }

    @keyframes pulse-red {
      0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 var(--red-live-glow); }
      50% { opacity: 0.7; transform: scale(1.15); box-shadow: 0 0 0 5px transparent; }
    }

    .theme-toggle {
      background: none;
      border: 1px solid var(--border-mid);
      cursor: pointer;
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--ink-secondary);
      flex-shrink: 0;
      transition: background 0.18s, color 0.18s, border-color 0.18s;
    }
    .theme-toggle:hover { background: var(--bg-raised); color: var(--ink-primary); }
    .theme-toggle svg { width: 18px; height: 18px; fill: currentColor; display: block; }
    .theme-toggle .icon-moon { display: block; }
    .theme-toggle .icon-sun  { display: none; }
    html.light .theme-toggle .icon-moon { display: none; }
    html.light .theme-toggle .icon-sun  { display: block; }

    /* ── HERO ────────────────────────────────────────────────── */
    .hero {
      padding: var(--sp-3) 0 var(--sp-2);
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--sp-4); flex-wrap: wrap;
      border-bottom: 1px solid var(--border-subtle);
      margin-bottom: var(--sp-3);
    }
    .hero-left { display: flex; flex-direction: column; gap: 2px; }
    .hero h1 { font-family: var(--font-display); font-size: 20px; letter-spacing: 1.5px; line-height: 1; color: var(--ink-primary); }
    .hero h1 .highlight { color: var(--amber); }
    .hero-sub { font-size: 12px; color: var(--ink-secondary); font-weight: 300; margin: 0; }
    .hero-stats { display: flex; gap: var(--sp-5); align-items: center; }
    .stat { text-align: center; }
    .stat-num { font-family: var(--font-display); font-size: 20px; color: var(--amber); line-height: 1; }
    .stat-label { font-size: 9px; color: var(--ink-tertiary); letter-spacing: 0.6px; text-transform: uppercase; margin-top: 1px; }

    /* ── AD ZONES ────────────────────────────────────────────── */
    .ad-zone { margin: var(--sp-4) 0; width: 100%; }
    .ad-container {
      background: var(--bg-deep);
      border: 1px dashed var(--ink-muted);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .ad-label { position: absolute; top: 6px; left: 10px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }
    .ad-placeholder { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.5px; }
    .ad-leaderboard { height: 90px; min-width: 320px; }
    .ad-rectangle { height: 250px; width: 300px; max-width: 100%; }
    .ad-large-rect { height: 280px; width: 336px; max-width: 100%; }
    .ad-zone-top { text-align: center; }
    .ad-zone-top .ad-container { margin: 0 auto; }

    /* ── FILTER BAR ──────────────────────────────────────────── */
    .filter-section { margin-bottom: var(--sp-3); display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-3); }
    .filter-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-tertiary); font-weight: 500; flex-shrink: 0; }
    .filter-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
    .chip {
      padding: 4px 12px;
      border-radius: 100px;
      border: 1px solid var(--border-mid);
      background: var(--bg-card);
      color: var(--ink-secondary);
      font-size: 12px; font-weight: 500;
      cursor: pointer;
      transition: all 0.18s;
      letter-spacing: 0.3px;
      font-family: var(--font-body);
    }
    .chip:hover { border-color: var(--amber); color: var(--amber); }
    .chip.active { background: var(--amber); border-color: var(--amber); color: #0d0e12; font-weight: 600; }

    /* ── LAYOUT ──────────────────────────────────────────────── */
    .content-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--sp-6); align-items: start; }

    @media (max-width: 900px) {
      .content-layout { grid-template-columns: 1fr; }
      .sidebar { order: 2; position: static; }
    }

    .section-heading { display: flex; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-3); }
    .section-heading h2 { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; color: var(--ink-primary); }
    .section-heading .count { font-size: 12px; color: var(--ink-tertiary); background: var(--bg-raised); border-radius: 100px; padding: 3px 10px; font-weight: 500; }

    /* ── RADIO GRID ──────────────────────────────────────────── */
    .radio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: var(--sp-3); }

    .radio-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-md);
      overflow: hidden;
      text-decoration: none;
      display: flex; flex-direction: column; align-items: center;
      padding: 6px 6px var(--sp-2); gap: 6px;
      transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s, background 0.3s;
      cursor: pointer;
      position: relative;
    }
    .radio-card:hover { transform: translateY(-3px); border-color: var(--amber); box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 0 0 1px var(--amber-glow); }
    html.light .radio-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10), 0 0 0 1px var(--amber-glow); }
    .radio-card:hover .play-overlay { opacity: 1; }
    .radio-card:hover .card-logo { transform: scale(1.04); }
    .radio-card.playing { border-color: var(--amber); box-shadow: 0 0 0 2px var(--amber-glow), 0 8px 32px rgba(0,0,0,0.4); }
    .radio-card.playing .live-indicator { display: flex; }

    .logo-wrap {
      width: 100%; aspect-ratio: 1 / 1; max-width: 96px;
      border-radius: var(--r-sm); overflow: hidden;
      background: var(--bg-raised); flex-shrink: 0;
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    /* Uitgeblurde achtergrond. Zelfde logo uitgerekt als achtergrond */
    .logo-wrap::before {
      content: "";
      position: absolute; inset: 0;
      background-image: var(--logo-url);
      background-size: cover;
      background-position: center;
      filter: blur(10px) brightness(0.55) saturate(1.6);
      transform: scale(1.15);
    }
    .card-logo { position: relative; width: 88%; height: 88%; object-fit: contain; transition: transform 0.2s; padding: 4px; }

    .play-overlay {
      position: absolute; inset: 0;
      background: rgba(13,14,18,0.7);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.18s;
    }
    .play-btn { width: 36px; height: 36px; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .play-btn svg { width: 14px; height: 14px; fill: #0d0e12; margin-left: 2px; }

    .station-name { font-size: 11px; font-weight: 500; color: var(--ink-secondary); text-align: center; line-height: 1.3; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .live-indicator { display: none; align-items: center; gap: 4px; position: absolute; top: 8px; right: 8px; background: var(--red-live); border-radius: 100px; padding: 2px 7px; }
    .live-indicator span { font-size: 8px; font-weight: 700; letter-spacing: 1px; color: #fff; text-transform: uppercase; }

    /* Externe kaart (linkt naar player-subdomein of hoofdsite, geen lokale player-start) */
    .radio-card.is-external { cursor: pointer; }
    .radio-card.is-external:hover { transform: translateY(-3px); border-color: var(--amber); box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 0 0 1px var(--amber-glow); }
    .radio-card.is-external .ext-badge { position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: var(--amber); color: #1a1200; border-radius: 50%; font-size: 13px; font-weight: 700; line-height: 1; box-shadow: 0 2px 6px rgba(0,0,0,0.25); }

    .wave-bars { display: none; align-items: flex-end; gap: 2px; height: 14px; }
    .radio-card.playing .wave-bars { display: flex; }
    .bar { width: 3px; background: var(--amber); border-radius: 2px; animation: wave 0.8s ease-in-out infinite alternate; }
    .bar:nth-child(1) { height: 6px; animation-delay: 0s; }
    .bar:nth-child(2) { height: 12px; animation-delay: 0.15s; }
    .bar:nth-child(3) { height: 8px; animation-delay: 0.3s; }
    .bar:nth-child(4) { height: 14px; animation-delay: 0.1s; }
    .bar:nth-child(5) { height: 5px; animation-delay: 0.25s; }
    @keyframes wave { from { transform: scaleY(0.4); } to { transform: scaleY(1); } }

    /* ── SIDEBAR ─────────────────────────────────────────────── */
    .sidebar { display: flex; flex-direction: column; gap: var(--sp-5); position: sticky; top: 80px; }

    @media (max-width: 900px) {
      .sidebar { position: static; }
      /* Op tablet/mobiel alleen de Most szól widget tonen, rest verbergen */
      .sidebar .sidebar-widget:not(:first-child) { display: none; }
    }

    @media (max-width: 600px) {
      /* Op kleine schermen sidebar volledig verbergen. De player bar vervangt deze functie */
      .sidebar { display: none; }
    }
    .sidebar-widget { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); overflow: hidden; }
    .widget-header { padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: var(--sp-2); }
    .widget-title { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.5px; color: var(--ink-primary); }
    .widget-icon { color: var(--amber); display: flex; }
    .widget-icon svg { width: 16px; height: 16px; fill: var(--amber); }
    .widget-body { padding: var(--sp-4) var(--sp-5); }

    .now-playing-empty { text-align: center; padding: var(--sp-5) 0; }
    .now-playing-empty p { font-size: 13px; color: var(--ink-tertiary); margin-top: var(--sp-3); }
    .vinyl-icon { width: 48px; height: 48px; background: var(--bg-raised); border-radius: 50%; margin: 0 auto; display: flex; align-items: center; justify-content: center; border: 2px solid var(--border-mid); }
    .vinyl-icon svg { width: 24px; height: 24px; fill: var(--ink-muted); }

    .station-website-link { display: inline-flex; align-items: center; gap: 5px; margin-top: var(--sp-3); font-size: 12px; color: var(--amber); text-decoration: none; opacity: 0.85; transition: opacity 0.18s; }
    .station-website-link:hover { opacity: 1; text-decoration: underline; }
    .station-website-link svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }

    .player-website-link { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--amber); text-decoration: none; opacity: 0.8; transition: opacity 0.18s; white-space: nowrap; }
    .player-website-link:hover { opacity: 1; }
    .player-website-link svg { width: 11px; height: 11px; fill: currentColor; flex-shrink: 0; }

    .top-list { list-style: none; }
    .top-list li { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: 1px solid var(--border-subtle); }
    .top-list li:last-child { border-bottom: none; }
    .top-list a { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; width: 100%; transition: color 0.15s; }
    .top-list a:hover .tl-name { color: var(--amber); }
    .tl-num { font-family: var(--font-display); font-size: 18px; color: var(--ink-muted); width: 24px; flex-shrink: 0; text-align: right; }
    .tl-logo { width: 36px; height: 36px; border-radius: var(--r-sm); object-fit: contain; background: var(--bg-raised); padding: 2px; flex-shrink: 0; }
    .tl-name { font-size: 13px; color: var(--ink-secondary); font-weight: 500; transition: color 0.15s; }

    .sister-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
    .sister-link { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; padding: var(--sp-2); border-radius: var(--r-sm); transition: background 0.15s; }
    .sister-link:hover { background: var(--bg-raised); }
    .sister-link img { width: 28px; height: 20px; border-radius: 2px; object-fit: cover; }
    .sister-link span { font-size: 9px; color: var(--ink-tertiary); letter-spacing: 0.3px; }

    /* ── PLAYER BAR ──────────────────────────────────────────── */
    .player-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: var(--bg-deep);
      border-top: 1px solid var(--border-mid);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      transform: translateY(100%);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, border-color 0.3s;
      padding: var(--sp-4) var(--sp-5);
      box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
    }
    .player-bar.visible { transform: translateY(0); }
    .player-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: var(--sp-5); }
    .player-station { display: flex; align-items: center; gap: var(--sp-3); min-width: 0; flex: 1; }
    .player-logo { width: 64px; height: 64px; border-radius: var(--r-md); object-fit: contain; background: var(--bg-raised); padding: 3px; flex-shrink: 0; }
    .player-info { min-width: 0; }
    .player-name { font-weight: 600; font-size: 14px; color: var(--ink-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .player-song-title { font-size: 11px; color: var(--ink-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; margin: 2px 0 0; min-height: 14px; }
    .player-song-title:empty::before { content: "\25CF  На живо излъчване"; font-size: 10px; color: var(--amber); letter-spacing: 0.3px; }
    .player-status { font-size: 11px; color: var(--amber); display: flex; align-items: center; gap: 5px; }
    .player-controls { display: flex; align-items: center; gap: var(--sp-3); }
    .ctrl-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.15s; padding: 6px; color: var(--ink-secondary); }
    .ctrl-btn:hover { background: var(--bg-raised); color: var(--ink-primary); }
    .ctrl-btn svg { width: 20px; height: 20px; fill: currentColor; }
    .ctrl-play { width: 48px; height: 48px; background: var(--amber); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; flex-shrink: 0; box-shadow: 0 0 20px var(--amber-glow); }
    .ctrl-play:hover { transform: scale(1.07); box-shadow: 0 0 30px var(--amber-glow); }
    .ctrl-play svg { width: 20px; height: 20px; fill: #0d0e12; margin-left: 2px; }
    .player-volume { display: flex; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
    .vol-slider { -webkit-appearance: none; appearance: none; width: 90px; height: 4px; border-radius: 2px; background: var(--bg-raised); outline: none; cursor: pointer; }
    .vol-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--amber); cursor: pointer; box-shadow: 0 0 8px var(--amber-glow); }
    .player-wave { display: flex; align-items: flex-end; gap: 3px; height: 20px; flex-shrink: 0; }
    .player-bar-seg { width: 3px; background: var(--amber); border-radius: 2px; animation: wave 0.7s ease-in-out infinite alternate; }
    .player-bar-seg:nth-child(1) { height: 8px; animation-delay: 0s; }
    .player-bar-seg:nth-child(2) { height: 18px; animation-delay: 0.12s; }
    .player-bar-seg:nth-child(3) { height: 12px; animation-delay: 0.24s; }
    .player-bar-seg:nth-child(4) { height: 20px; animation-delay: 0.06s; }
    .player-bar-seg:nth-child(5) { height: 7px; animation-delay: 0.18s; }
    .close-player { background: none; border: none; cursor: pointer; color: var(--ink-muted); padding: var(--sp-2); border-radius: var(--r-sm); transition: color 0.15s; flex-shrink: 0; }
    .close-player:hover { color: var(--ink-primary); }
    .close-player svg { width: 16px; height: 16px; fill: currentColor; display: block; }

    /* ── SEO CONTENT ─────────────────────────────────────────── */
    .seo-section { margin: var(--sp-7) 0 var(--sp-6); padding-top: var(--sp-6); border-top: 1px solid var(--border-subtle); }
    .seo-section h2 { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; color: var(--ink-primary); margin-bottom: var(--sp-4); }
    .seo-section h3 { font-family: var(--font-display); font-size: 17px; letter-spacing: 0.5px; color: var(--ink-secondary); margin: var(--sp-5) 0 var(--sp-2); }
    .seo-section p { font-size: 13px; color: var(--ink-secondary); line-height: 1.8; margin-bottom: var(--sp-3); max-width: 760px; }

    /* ── FOOTER ──────────────────────────────────────────────── */
    footer { margin-top: var(--sp-7); border-top: 1px solid var(--border-subtle); padding: var(--sp-6) 0 var(--sp-8); }
    .footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-5); }
    .footer-about { max-width: 600px; }
    .footer-about h2 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.5px; margin-bottom: var(--sp-3); }
    .footer-about p { font-size: 13px; color: var(--ink-secondary); line-height: 1.7; }
    .footer-links { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
    .footer-links a { font-size: 12px; color: var(--ink-tertiary); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--amber); }
    .footer-copy { font-size: 12px; color: var(--ink-muted); }


    /* ── ANIMATIONS ──────────────────────────────────────────── */
    .radio-card { opacity: 0; animation: cardIn 0.4s ease forwards; }
    @keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    .radio-grid.filter-active .radio-card:not(.match) { opacity: 0.28; filter: grayscale(0.6); transform: scale(0.97); transition: opacity 0.25s, filter 0.25s, transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
    .radio-grid.filter-active .radio-card:not(.match):hover { opacity: 0.55; filter: grayscale(0.3); }
    .radio-grid.filter-active .radio-card.match { animation: none; opacity: 1; transform: scale(1); background: var(--amber); border-color: var(--amber); box-shadow: 0 4px 20px rgba(245,166,35,0.35); transition: opacity 0.25s, filter 0.25s, transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s; }
    .radio-grid.filter-active .radio-card.match .station-name { color: #1a1200; }
    html.light .radio-grid.filter-active .radio-card.match { box-shadow: 0 4px 16px rgba(245,166,35,0.4); }

    .radio-card:nth-child(1)  { animation-delay: 0.04s; } .radio-card:nth-child(2)  { animation-delay: 0.08s; }
    .radio-card:nth-child(3)  { animation-delay: 0.12s; } .radio-card:nth-child(4)  { animation-delay: 0.16s; }
    .radio-card:nth-child(5)  { animation-delay: 0.20s; } .radio-card:nth-child(6)  { animation-delay: 0.24s; }
    .radio-card:nth-child(7)  { animation-delay: 0.28s; } .radio-card:nth-child(8)  { animation-delay: 0.32s; }
    .radio-card:nth-child(9)  { animation-delay: 0.36s; } .radio-card:nth-child(10) { animation-delay: 0.40s; }
    .radio-card:nth-child(n+11) { animation-delay: 0.44s; }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 768px) {
      .radio-grid { grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); gap: 8px; }
      .hero { padding: var(--sp-2) 0; }
      .hero h1 { font-size: 16px; letter-spacing: 1px; }
      .hero-sub { font-size: 11px; }
      .hero-stats { gap: var(--sp-3); }
      .stat-num { font-size: 16px; }
      .player-volume { display: none; }
      .player-wave { display: none; }
      .player-song-title { max-width: 180px; }
      .ad-leaderboard { height: 50px; }
      .header-tagline { display: none; }
      .live-badge { display: none; }
    }
    @media (max-width: 480px) {
      .radio-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .lang-switcher a { width: 22px; height: 16px; }
      .lang-switcher img { width: 22px; height: 16px; }
      .hero { gap: var(--sp-2); }
      .hero-stats .stat:nth-child(2) { display: none; }
    }
