  :root {
    --red: #e8000d;
    --red-hover: #c40009;
    --red-light: #fff0f0;
    --bg: #f5f5f5;
    --white: #ffffff;
    --text: #111111;
    --text-mid: #444444;
    --muted: #888888;
    --border: #e2e2e2;
    --shadow: 0 2px 16px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
    --player-h: 80px;
    --nav-h: 80px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    padding-bottom: calc(var(--player-h) + 16px);
    overflow-x: hidden;
  }

  /* TOP BAR */
  .top-bar {
    background: var(--red);
    color: #fff;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 36px;
  }
  .top-bar-left { display: flex; align-items: center; gap: 8px; }
  .top-bar-dot {
    width: 7px; height: 7px; background: #fff; border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:0.5} }
  .top-bar-right { display: flex; gap: 20px; }
  .top-bar-right a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.68rem; }
  .top-bar-right a:hover { color: #fff; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 200;
    height: var(--nav-h);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex; align-items: center; padding: 0 40px; gap: 32px;
  }

  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
  .logo-bars { display: flex; align-items: flex-end; gap: 3px; height: 32px; }
  .logo-bars span { width: 4px; background: var(--red); border-radius: 2px; transition: height 0.3s ease; }
  .logo-bars span:nth-child(1){height:55%} .logo-bars span:nth-child(2){height:100%}
  .logo-bars span:nth-child(3){height:70%} .logo-bars span:nth-child(4){height:100%}
  .logo-bars span:nth-child(5){height:45%}
  .logo:hover .logo-bars span:nth-child(1){height:80%} .logo:hover .logo-bars span:nth-child(2){height:55%}
  .logo:hover .logo-bars span:nth-child(3){height:100%} .logo:hover .logo-bars span:nth-child(4){height:70%}
  .logo:hover .logo-bars span:nth-child(5){height:90%}
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-top { font-size: 0.55rem; font-style: italic; color: var(--muted); letter-spacing: 1px; margin-bottom: 1px; }
  .logo-name { font-size: 1.25rem; font-weight: 300; color: var(--text); letter-spacing: -0.5px; }
  .logo-name strong { font-weight: 900; color: var(--red); }

  .nav-links { display: flex; gap: 4px; list-style: none; flex: 1; }
  .nav-links a {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-mid); text-decoration: none;
    padding: 8px 12px; border-radius: 4px; transition: all 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { background: var(--red-light); color: var(--red); }

  .nav-right { display: flex; align-items: center; gap: 12px; }
  .nav-search {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg); border: 1.5px solid var(--border);
    border-radius: 20px; padding: 7px 16px;
    font-size: 0.78rem; color: var(--muted); cursor: pointer; transition: border-color 0.2s;
  }
  .nav-search:hover { border-color: var(--red); }
  .nav-search svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 2; }

  .btn-red {
    font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase; padding: 9px 22px;
    background: var(--red); color: #fff; border: none; border-radius: 4px; cursor: pointer; transition: all 0.2s;
  }
  .btn-red:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,0,13,0.3); }

  /* HERO */
  .hero {
    background: var(--white); border-bottom: 3px solid var(--red);
    padding: 0 40px; display: grid; grid-template-columns: 1fr 460px;
    min-height: 400px; overflow: hidden;
  }
  .hero-left {
    padding: 56px 60px 56px 0;
    display: flex; flex-direction: column; justify-content: center;
    animation: fadeUp 0.7s ease forwards;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px;
  }
  .hero-eyebrow::before { content:''; width:6px; height:6px; background:var(--red); border-radius:50%; animation: pulse 1s ease-in-out infinite; }
  .hero h1 {
    font-family: 'Oswald', sans-serif; font-size: clamp(3rem,5vw,5.5rem); font-weight: 700;
    line-height: 0.95; letter-spacing: -1px; color: var(--text); margin-bottom: 20px; text-transform: uppercase;
  }
  .hero h1 em { font-style: normal; color: var(--red); }
  .hero-sub { font-size: 0.92rem; font-weight: 400; color: var(--text-mid); line-height: 1.7; max-width: 400px; margin-bottom: 32px; }
  .hero-actions { display: flex; gap: 12px; align-items: center; }
  .btn-outline {
    font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase; padding: 9px 22px;
    background: transparent; color: var(--text); border: 2px solid var(--border); border-radius: 4px; cursor: pointer; transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--text); }
  .hero-right {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #e8000d 0%, #8b0009 100%);
    display: flex; align-items: center; justify-content: center;
    animation: fadeUp 0.7s 0.15s ease both;
  }
  .hero-now-playing { position: relative; z-index: 2; text-align: center; color: #fff; padding: 40px; }
  .hnp-label {
    font-size: 0.65rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
    background: rgba(255,255,255,0.2); border-radius: 20px; padding: 5px 14px;
    display: inline-block; margin-bottom: 24px;
  }
  .hnp-album {
    width: 140px; height: 140px; background: rgba(255,255,255,0.15); border-radius: 12px;
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem; box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
  .hnp-title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; }
  .hnp-artist { font-size: 0.85rem; font-weight: 600; opacity: 0.75; }

  /* TICKER */
  .ticker-bar { background: #111; overflow: hidden; }
  .ticker-inner { display: flex; align-items: stretch; }
  .ticker-label {
    background: var(--red); color: #fff;
    font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    padding: 10px 20px; flex-shrink: 0; display: flex; align-items: center; gap: 6px; white-space: nowrap;
  }
  .ticker-label::before { content:''; width:6px; height:6px; background:#fff; border-radius:50%; animation: pulse 1s ease-in-out infinite; }
  .ticker-scroll { flex: 1; overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); }
  .ticker-content {
    display: flex; gap: 50px; animation: ticker 30s linear infinite;
    white-space: nowrap; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75); padding: 10px 0;
  }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .ticker-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .ticker-sep { color: var(--red); font-size: 0.9rem; }

  /* SECTION HEADERS */
  .section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
  .section-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
  .section-title { font-family: 'Oswald', sans-serif; font-size: 1.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); }
  .section-see-all {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--red); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: gap 0.2s;
  }
  .section-see-all:hover { gap: 8px; }

  /* STATIONS */
  .stations-section { padding: 52px 40px; background: var(--white); }
  .stations-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

  .station-card {
    border-radius: 10px; overflow: hidden; cursor: pointer;
    border: 2px solid transparent; transition: all 0.3s ease;
    background: var(--white); box-shadow: var(--shadow); position: relative;
    opacity: 0; animation: fadeUp 0.5s ease forwards;
  }
  .station-card:nth-child(1){animation-delay:0.05s} .station-card:nth-child(2){animation-delay:0.12s}
  .station-card:nth-child(3){animation-delay:0.19s} .station-card:nth-child(4){animation-delay:0.26s}
  .station-card:nth-child(5){animation-delay:0.33s}
  .station-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--red); }
  .station-card.active { border-color: var(--red); box-shadow: 0 6px 28px rgba(232,0,13,0.2); }

  .station-thumb {
    height: 140px; position: relative;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .station-hits .station-thumb   { background: linear-gradient(135deg, #e8000d, #ff4f57); }
  .station-rock .station-thumb   { background: linear-gradient(135deg, #1a1a1a, #555); }
  .station-club .station-thumb   { background: linear-gradient(135deg, #5c00c7, #9b40ff); }
  .station-80s  .station-thumb   { background: linear-gradient(135deg, #0066cc, #00aaff); }
  .station-90s  .station-thumb   { background: linear-gradient(135deg, #007a3d, #00c060); }

  .station-thumb-icon { font-size: 3.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); transition: transform 0.3s; }
  .station-card:hover .station-thumb-icon { transform: scale(1.12); }

  .station-freq-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 0.6rem; font-weight: 800; letter-spacing: 1.5px;
    background: rgba(0,0,0,0.35); color: #fff; padding: 3px 8px; border-radius: 10px; backdrop-filter: blur(4px);
  }

  .station-play-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center; transition: background 0.3s;
  }
  .station-card:hover .station-play-overlay { background: rgba(0,0,0,0.25); }
  .station-play-btn {
    width: 48px; height: 48px; background: rgba(255,255,255,0.95); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.7); transition: all 0.25s; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  .station-play-btn svg { width: 18px; height: 18px; fill: var(--red); margin-left: 2px; }
  .station-card:hover .station-play-btn, .station-card.active .station-play-btn { opacity: 1; transform: scale(1); }

  .station-body { padding: 14px 16px 16px; border-top: 3px solid transparent; transition: border-color 0.3s; }
  .station-hits.active .station-body, .station-hits:hover .station-body { border-color: #e8000d; }
  .station-rock.active .station-body, .station-rock:hover .station-body { border-color: #1a1a1a; }
  .station-club.active .station-body, .station-club:hover .station-body { border-color: #5c00c7; }
  .station-80s.active  .station-body, .station-80s:hover  .station-body { border-color: #0066cc; }
  .station-90s.active  .station-body, .station-90s:hover  .station-body { border-color: #007a3d; }

  .station-name { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
  .station-desc { font-size: 0.72rem; font-weight: 500; color: var(--muted); margin-bottom: 12px; line-height: 1.4; }
  .station-now { display: flex; align-items: center; gap: 6px; }
  .station-live-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; animation: pulse 1.2s ease-in-out infinite; }
  .station-hits .station-live-dot { background: #e8000d; }
  .station-rock .station-live-dot { background: #333; }
  .station-club .station-live-dot { background: #5c00c7; }
  .station-80s  .station-live-dot { background: #0066cc; }
  .station-90s  .station-live-dot { background: #007a3d; }
  .station-now-song { font-size: 0.7rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* TOP 10 + SIDEBAR */
  .two-col-section { padding: 52px 40px; background: var(--red); display: grid; grid-template-columns: 1fr 360px; gap: 32px; }

  .top10-list { display: flex; flex-direction: column; gap: 3px; }
  .top10-item {
    display: flex; align-items: center; gap: 16px; padding: 12px 16px;
    background: var(--white); border-radius: 6px; cursor: pointer;
    transition: all 0.2s; border: 1.5px solid transparent;
  }
  .top10-item:hover { border-color: var(--red); box-shadow: 0 3px 12px rgba(232,0,13,0.1); transform: translateX(4px); }
  .top10-rank { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; width: 32px; text-align: right; flex-shrink: 0; color: #ddd; }
  .top10-rank.gold { color: #f0a500; } .top10-rank.silver { color: #aaa; } .top10-rank.bronze { color: #c07028; }
  .top10-thumb { width: 46px; height: 46px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--bg); }
  .top10-info { flex: 1; min-width: 0; }
  .top10-title { font-weight: 700; font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .top10-artist { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
  .top10-duration { font-size: 0.7rem; color: var(--muted); flex-shrink: 0; font-variant-numeric: tabular-nums; }

  /* SIDEBAR */
  .sidebar { display: flex; flex-direction: column; gap: 14px; }
  .promo-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    box-shadow: var(--shadow); border: 1.5px solid var(--border); cursor: pointer; transition: all 0.25s;
  }
  .promo-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
  .promo-thumb { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
  .promo-c1 .promo-thumb { background: linear-gradient(135deg, #e8000d, #ff6b6b); }
  .promo-c2 .promo-thumb { background: linear-gradient(135deg, #1a1a1a, #555); }
  .promo-c3 .promo-thumb { background: linear-gradient(135deg, #0066cc, #66aaff); }
  .promo-body { padding: 12px 16px; }
  .promo-tag { font-size: 0.6rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
  .promo-title { font-weight: 700; font-size: 0.88rem; line-height: 1.3; color: var(--text); }
  .promo-sub { font-size: 0.7rem; color: var(--muted); margin-top: 3px; }

  /* SHOWS */
  .shows-section { padding: 52px 40px; background: var(--white); }
  .shows-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .show-card { border-radius: 10px; overflow: hidden; cursor: pointer; transition: all 0.25s; box-shadow: var(--shadow); background: var(--white); border: 1.5px solid var(--border); }
  .show-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
  .show-thumb { height: 160px; display: flex; align-items: flex-end; padding: 16px; position: relative; overflow: hidden; }
  .show-c1 .show-thumb { background: linear-gradient(to bottom, #e8000d, #8b0000); }
  .show-c2 .show-thumb { background: linear-gradient(to bottom, #1a1a2e, #444); }
  .show-c3 .show-thumb { background: linear-gradient(to bottom, #5c00c7, #2a003d); }
  .show-c4 .show-thumb { background: linear-gradient(to bottom, #007a3d, #003d1e); }
  .show-thumb-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); font-size: 3.5rem; opacity: 0.35; }
  .show-time-badge { position: relative; z-index: 2; font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); color: #fff; padding: 4px 10px; border-radius: 12px; }
  .show-body { padding: 14px 16px 16px; }
  .show-label { font-size: 0.6rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
  .show-title { font-weight: 800; font-size: 0.95rem; line-height: 1.3; color: var(--text); margin-bottom: 4px; }
  .show-host { font-size: 0.72rem; color: var(--muted); }

  /* NEWSLETTER */
  .newsletter-section { padding: 60px 40px; background: var(--red); position: relative; overflow: hidden; }
  .newsletter-section::before { content:''; position: absolute; top:-60px; right:-60px; width:300px; height:300px; background:rgba(255,255,255,0.05); border-radius:50%; }
  .newsletter-section::after  { content:''; position: absolute; bottom:-80px; left:20%; width:400px; height:400px; background:rgba(0,0,0,0.07); border-radius:50%; }
  .newsletter-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .newsletter-text h2 { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; line-height: 1.05; margin-bottom: 16px; }
  .newsletter-text h2 span { color: rgba(255,255,255,0.6); font-weight: 400; }
  .newsletter-text p { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.7; }
  .newsletter-form { display: flex; flex-direction: column; gap: 12px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-input {
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 500;
    background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
    border-radius: 6px; padding: 13px 16px; outline: none; transition: all 0.2s; width: 100%;
  }
  .form-input::placeholder { color: rgba(255,255,255,0.55); }
  .form-input:focus { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }
  .btn-subscribe {
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 32px;
    background: #fff; color: var(--red); border: none; border-radius: 6px; cursor: pointer;
    align-self: flex-start; transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .btn-subscribe:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  /* FOOTER */
  .site-footer { background: #111; color: #fff; padding: 56px 40px 0; }
  .footer-top { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-tagline { font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin: 16px 0 12px; }
  .footer-blurb { font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 1.7; }
  .footer-socials { display: flex; gap: 8px; margin-top: 18px; }
  .social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 0.8rem; cursor: pointer; transition: all 0.2s; text-decoration: none; }
  .social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
  .footer-col-title { font-size: 0.62rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: #fff; }
  .footer-bottom { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 0.72rem; color: rgba(255,255,255,0.28); }

  /* PLAYER */
  #player {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
    height: var(--player-h); background: var(--white);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12); border-top: 3px solid var(--red);
    display: flex; align-items: center; padding: 0 32px; gap: 28px;
  }
  .player-left { display: flex; align-items: center; gap: 14px; min-width: 260px; flex-shrink: 0; }
  .player-album {
    width: 52px; height: 52px; border-radius: 8px; background: var(--red);
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    flex-shrink: 0; box-shadow: 0 3px 12px rgba(232,0,13,0.3); position: relative; overflow: hidden;
  }
  .player-album::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.25) 0%,transparent 60%); }
  .player-info { min-width: 0; }
  .player-station-badge { font-size: 0.58rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 2px; display: flex; align-items: center; gap: 5px; }
  .live-badge { background: var(--red); color: #fff; font-size: 0.55rem; font-weight: 800; letter-spacing: 1.5px; padding: 1px 5px; border-radius: 2px; }
  .player-song { font-weight: 700; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }
  .player-artist-lbl { font-size: 0.72rem; color: var(--muted); }

  .player-center { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .player-controls { display: flex; align-items: center; gap: 20px; }
  .ctrl-btn { background: none; border: none; cursor: pointer; color: var(--text-mid); padding: 0; display: flex; align-items: center; justify-content: center; transition: color 0.2s, transform 0.15s; }
  .ctrl-btn:hover { color: var(--text); transform: scale(1.1); }
  .ctrl-btn svg { width: 20px; height: 20px; fill: currentColor; }
  .ctrl-btn.play-main { width: 46px; height: 46px; background: var(--red); color: #fff; border-radius: 50%; box-shadow: 0 4px 16px rgba(232,0,13,0.35); transition: all 0.2s; }
  .ctrl-btn.play-main:hover { background: var(--red-hover); transform: scale(1.05); }
  .ctrl-btn.play-main svg { width: 20px; height: 20px; }
  .player-timing { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 460px; }
  .p-time { font-size: 0.68rem; color: var(--muted); font-variant-numeric: tabular-nums; flex-shrink: 0; }
  .p-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; cursor: pointer; overflow: hidden; }
  .p-bar-fill { height: 100%; background: var(--red); border-radius: 2px; width: 0%; transition: width 0.5s linear; }

  .player-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
  .player-vis { display: flex; align-items: flex-end; gap: 2px; height: 26px; }
  .pv-bar { width: 3px; background: var(--red); border-radius: 2px; transition: height 0.12s ease; opacity: 0.7; }
  .vol-row { display: flex; align-items: center; gap: 8px; }
  .vol-icon svg { width: 16px; height: 16px; fill: var(--muted); }
  .vol-slider { -webkit-appearance: none; width: 80px; height: 4px; background: var(--border); border-radius: 2px; outline: none; cursor: pointer; }
  .vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; background: var(--text); border-radius: 50%; }
  .station-pills { display: flex; gap: 5px; }
  .pill { font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; padding: 5px 10px; background: var(--bg); border: 1.5px solid var(--border); color: var(--text-mid); border-radius: 4px; cursor: pointer; transition: all 0.2s; }
  .pill:hover, .pill.active { background: var(--red); border-color: var(--red); color: #fff; }

  /* ANIMATIONS */
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  .hero-left { animation: fadeUp 0.7s ease forwards; }
  .hero-right { animation: fadeUp 0.7s 0.15s ease both; }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .stations-grid { grid-template-columns: repeat(3, 1fr); }
    .shows-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col-section { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 0 16px; gap: 12px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .stations-section, .shows-section, .two-col-section, .newsletter-section { padding-left: 16px; padding-right: 16px; }
    .stations-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { grid-template-columns: 1fr; }
    .top-bar { padding: 0 16px; }
    .hero { padding: 0 16px; }
    .site-footer { padding: 40px 20px 0; }

    /* ── PLAYER MOBILE AGRANDI ── */
    :root { --player-h: 130px; }
    body { padding-bottom: calc(130px + 16px); }

    #player {
      height: auto;
      min-height: 130px;
      padding: 12px 16px 14px;
      gap: 0;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      border-top: 3px solid var(--red);
    }

    .player-left {
      width: 100%;
      min-width: 0;
      flex: none;
      gap: 12px;
      margin-bottom: 10px;
    }

    .player-album {
      width: 46px; height: 46px;
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .player-info { flex: 1; min-width: 0; }

    .player-song {
      font-size: 0.95rem;
      max-width: 100%;
    }

    .player-artist-lbl { font-size: 0.75rem; }

    .player-center {
      flex: 1;
      flex-direction: row;
      align-items: center;
      gap: 12px;
    }

    .player-controls { gap: 14px; flex-shrink: 0; }
    .ctrl-btn svg { width: 22px; height: 22px; }

    .ctrl-btn.play-main {
      width: 52px; height: 52px;
      box-shadow: 0 4px 16px rgba(232,0,13,0.4);
    }

    .ctrl-btn.play-main svg { width: 22px; height: 22px; }

    .player-timing { flex: 1; max-width: none; gap: 8px; }
    .p-bar { height: 5px; }
    .p-time { font-size: 0.7rem; }

    .player-right {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      margin-left: auto;
    }

    .player-vis {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 32px;
      flex-shrink: 0;
    }
    .pv-bar { width: 4px; }
    .player-timing { display: none; }
    .station-pills { display: none; }
    .vol-slider    { width: 64px; }
    .vol-icon svg  { width: 18px; height: 18px; }
  }

/* ─── LOGO IMAGE ─── */
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  /* Le logo est rouge sur blanc — on garde tel quel dans la nav blanche */
}

.logo-img-footer {
  height: 40px;
  /* Inversion pour fond sombre du footer */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ─── TWO-COL SECTION ON RED BACKGROUND ─── */
.two-col-section .section-label { color: rgba(255,255,255,0.75); }
.two-col-section .section-title { color: #fff; }
.two-col-section .section-see-all { color: #fff; }
.two-col-section .section-see-all:hover { color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════
   DARK MODE  —  [data-theme="dark"]
   ══════════════════════════════════════════ */

[data-theme="dark"] {
  --bg:      #111111;
  --white:   #1a1a1a;
  --text:    #f0f0f0;
  --text-mid:#b0b0b0;
  --muted:   #666666;
  --border:  #2e2e2e;
  --shadow:  0 2px 16px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.6);
  --red-light: rgba(232,0,13,0.15);
}

/* NAV */
[data-theme="dark"] nav                    { background: #1a1a1a; box-shadow: 0 2px 12px rgba(0,0,0,0.5); }
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active   { background: rgba(232,0,13,0.2); color: var(--red); }
[data-theme="dark"] .nav-search           { background: #222; border-color: #333; color: #888; }
[data-theme="dark"] .nav-search:hover     { border-color: var(--red); }

/* HERO */
[data-theme="dark"] .hero                 { background: #1a1a1a; }
[data-theme="dark"] .hero h1              { color: #f0f0f0; }
[data-theme="dark"] .hero-sub             { color: #999; }
[data-theme="dark"] .btn-outline          { color: #ccc; border-color: #444; }
[data-theme="dark"] .btn-outline:hover    { border-color: #999; color: #fff; }

/* STATIONS */
[data-theme="dark"] .stations-section     { background: #141414; }
[data-theme="dark"] .station-card         { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .station-card:hover   { border-color: var(--red); }
[data-theme="dark"] .station-body         { background: #1e1e1e; }
[data-theme="dark"] .station-name         { color: #f0f0f0; }
[data-theme="dark"] .station-desc         { color: #777; }
[data-theme="dark"] .station-now-song     { color: #aaa; }

/* TOP 10 */
[data-theme="dark"] .top10-item           { background: #1e1e1e; }
[data-theme="dark"] .top10-item:hover     { background: #252525; }
[data-theme="dark"] .top10-title          { color: #f0f0f0; }
[data-theme="dark"] .top10-thumb          { background: #2a2a2a; }

/* PROMO CARDS */
[data-theme="dark"] .promo-card           { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .promo-title          { color: #f0f0f0; }

/* SHOWS */
[data-theme="dark"] .shows-section        { background: #141414; }
[data-theme="dark"] .show-card            { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .show-title           { color: #f0f0f0; }
[data-theme="dark"] .show-host            { color: #777; }

/* SECTION TITLES */
[data-theme="dark"] .section-title        { color: #f0f0f0; }

/* PLAYER */
[data-theme="dark"] #player               { background: #1a1a1a; box-shadow: 0 -4px 24px rgba(0,0,0,0.5); }
[data-theme="dark"] .player-song          { color: #f0f0f0; }
[data-theme="dark"] .ctrl-btn             { color: #aaa; }
[data-theme="dark"] .ctrl-btn:hover       { color: #fff; }
[data-theme="dark"] .p-bar                { background: #2e2e2e; }
[data-theme="dark"] .vol-slider           { background: #2e2e2e; }
[data-theme="dark"] .pill                 { background: #222; border-color: #333; color: #aaa; }
[data-theme="dark"] .pill:hover,
[data-theme="dark"] .pill.active          { background: var(--red); border-color: var(--red); color: #fff; }
[data-theme="dark"] .vol-slider::-webkit-slider-thumb { background: #f0f0f0; }

/* LOGO in dark mode — keep red logo visible */
[data-theme="dark"] .logo-img             { filter: none; }

/* THEME TOGGLE BUTTON */
.theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: all 0.2s;
  display: flex; align-items: center;
}
.theme-toggle:hover {
  border-color: var(--red);
  background: var(--red-light);
}

/* ══════════════════════════════════════════
   HAMBURGER + MOBILE MENU
   ══════════════════════════════════════════ */

/* Bouton hamburger — caché sur desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.hamburger:hover { border-color: var(--red); background: var(--red-light); }

.ham-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Animation X quand ouvert */
.hamburger.active .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Cacher le bouton S'abonner sur mobile */
@media (max-width: 768px) {
  .btn-red-desktop { display: none !important; }
  .nav-search      { display: none !important; }
  .hamburger       { display: flex; }
}

/* ── OVERLAY ── */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

/* ── DRAWER ── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 85vw;
  background: var(--white);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

/* Header du drawer */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-logo { height: 36px; width: auto; }

.mobile-menu-close {
  width: 34px; height: 34px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; cursor: pointer;
  font-size: 1rem; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.mobile-menu-close:hover { border-color: var(--red); color: var(--red); }

/* Label de section */
.mobile-menu-label {
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
  padding: 16px 20px 8px;
}

/* Liste de liens */
.mobile-nav-links {
  list-style: none;
  padding: 0 10px;
  margin: 0 0 8px;
}

.mobile-nav-links li a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.18s;
  border: 1.5px solid transparent;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a:active {
  background: var(--red-light);
  border-color: rgba(232,0,13,0.15);
}

.mobile-nav-links li a:hover .mobile-nav-name {
  color: var(--red);
}

.mobile-nav-emoji {
  font-size: 1.5rem;
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mobile-nav-text {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}

.mobile-nav-name {
  font-size: 0.9rem; font-weight: 800;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text);
  transition: color 0.18s;
}

.mobile-nav-desc {
  font-size: 0.68rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.mobile-nav-freq {
  font-size: 0.65rem; font-weight: 700;
  color: var(--red);
  background: var(--red-light);
  padding: 2px 7px; border-radius: 10px;
  white-space: nowrap; flex-shrink: 0;
}

/* Footer du drawer */
.mobile-menu-footer {
  margin-top: auto;
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Dark mode overrides */
[data-theme="dark"] .mobile-menu {
  background: #1a1a1a;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
[data-theme="dark"] .mobile-menu-logo { filter: brightness(0) invert(1); opacity: 0.9; }
[data-theme="dark"] .mobile-nav-links li a:hover { background: rgba(232,0,13,0.12); border-color: rgba(232,0,13,0.2); }
[data-theme="dark"] .mobile-nav-emoji { background: #222; }
[data-theme="dark"] .mobile-menu-close { background: #222; border-color: #333; }
[data-theme="dark"] .ham-bar { background: #f0f0f0; }
