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

    :root {
      --bg:       #0c0c0e;
      --surface:  #151517;
      --surface2: #1e1e21;
      --border:   rgba(255,255,255,0.06);
      --accent:   #d63558;
      --accent-s: rgba(214,53,88,0.22);
      --accent-grad: linear-gradient(150deg, #c9436f 0%, #e8002a 100%);
      --green:    #3ddc84;
      --text:     #f0f0f0;
      --muted:    #6a6a7a;
      --ph:       76px;   /* player height */
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg); color: var(--text);
      min-height: 100vh; padding-bottom: var(--ph);
    }

    /* ── Header ── */
    header {
      position: sticky; top: 0; z-index: 50;
      display: flex; align-items: center; justify-content: space-between;
      height: 58px; padding: 0 28px;
      background: rgba(11,11,24,.92);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
    .logo img { height: 32px; width: auto; display: block; }
    .logo span { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -.5px; }

    nav { display: flex; gap: 4px; }
    nav a, nav button {
      color: var(--muted); text-decoration: none; background: none; border: none;
      font-size: 14px; font-weight: 500; font-family: inherit;
      padding: 6px 14px; border-radius: 8px; cursor: pointer;
      transition: color .15s, background .15s;
    }
    nav a:hover, nav button:hover { color: var(--text); background: var(--surface2); }
    nav a.on, nav button.on { color: var(--text); background: var(--surface2); }

    /* ── Main content ── */
    #main { max-width: 1220px; margin: 0 auto; padding: 40px 24px 64px; }

    .sec-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
    .sec-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; }
    .sec-sub { font-size: 13px; color: var(--muted); }

    /* ── Station grid ── */
    .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }

    .card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden; cursor: pointer;
      transition: transform .22s, border-color .22s, box-shadow .22s;
      text-decoration: none; color: inherit; display: block;
    }
    .card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.5); }
    .card.active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 14px 44px var(--accent-s); }

    .card-art-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface2); }
    .card-art { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
    .card:hover .card-art { transform: scale(1.04); }

    .on-air {
      position: absolute; top: 9px; left: 9px;
      display: none; align-items: center; gap: 5px;
      background: var(--accent); color: #fff;
      font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    }
    .card.active .on-air { display: flex; }
    .bars { display: flex; align-items: center; gap: 2px; }
    .bars span { display: block; width: 3px; border-radius: 2px; background: #fff; animation: bar 1.1s ease-in-out infinite; }
    .bars span:nth-child(2) { animation-delay: .16s; }
    .bars span:nth-child(3) { animation-delay: .32s; }
    .bars span:nth-child(4) { animation-delay: .48s; }
    @keyframes bar { 0%,100% { height: 3px; } 50% { height: 13px; } }

    .card-body { padding: 14px 16px 16px; }
    .card-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 3px; }
    .card-genre { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }

    .np-row { display: flex; align-items: center; gap: 9px; background: rgba(0,0,0,.2); border-radius: 10px; padding: 9px 10px; margin-bottom: 12px; }
    .np-art { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--surface2); }
    .np-texts { flex: 1; min-width: 0; }
    .np-title  { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .np-artist { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .card-foot { display: flex; align-items: center; justify-content: space-between; }
    .listeners { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
    .live-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: blink 2s ease-in-out infinite; }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

    .play-btn {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--accent-grad); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: #fff; transition: transform .15s, opacity .15s; flex-shrink: 0;
    }
    .play-btn:hover { transform: scale(1.12); opacity: .85; }
    .card.active .play-btn { opacity: 1; }

    /* ── Schedule (home) ── */
    #schedule { margin-top: 64px; }
    .tabs { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 2px; margin-bottom: 20px; scrollbar-width: none; }
    .tabs::-webkit-scrollbar { display: none; }
    .tab { flex-shrink: 0; padding: 7px 15px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .15s; font-family: inherit; }
    .tab:hover { color: var(--text); border-color: rgba(255,255,255,.14); }
    .tab.on { background: var(--accent); border-color: var(--accent); color: #fff; }
    .sch-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
    .sch-row { display: grid; grid-template-columns: 200px 1fr 80px; align-items: start; gap: 16px; padding: 13px 20px; border-bottom: 1px solid var(--border); transition: background .12s; }
    .sch-row:last-child { border-bottom: none; }
    .sch-row:hover { background: rgba(255,255,255,.02); }
    .sch-row.now { background: rgba(121,101,255,.08); }
    .sch-time { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; padding-top: 2px; }
    .sch-name { font-size: 14px; font-weight: 500; }
    .sch-host { font-size: 12px; color: var(--accent); margin-top: 3px; }
    .sch-desc { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
    .sch-badge { font-size: 10px; font-weight: 600; background: var(--accent); color: #fff; padding: 3px 9px; border-radius: 20px; text-align: center; white-space: nowrap; margin-top: 2px; }
    .sch-listen { font-size: 11px; font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; padding: 3px 0; display: inline-block; }
    .sch-listen:hover { text-decoration: underline; }
    .empty { padding: 52px 20px; text-align: center; color: var(--muted); font-size: 14px; }

    /* ── Station page ── */
    #main.sp { padding: 0 0 64px; max-width: 100%; }

    .sp-hero {
      position: relative; height: 340px; overflow: hidden;
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    .sp-hero-bg {
      position: absolute; inset: -24px;
      background-size: cover; background-position: center;
      filter: blur(22px) brightness(.38) saturate(1.3);
    }
    .sp-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .sp-hero-grad {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(11,11,24,.92) 100%);
    }
    .sp-hero-top {
      position: absolute; top: 0; left: 0; right: 0;
      padding: 16px 24px;
      background: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
    }
    .sp-back {
      display: inline-flex; align-items: center; gap: 6px;
      color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; font-weight: 500;
      padding: 6px 12px; border-radius: 8px;
      background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
      transition: background .15s;
    }
    .sp-back:hover { background: rgba(255,255,255,.2); }

    .sp-hero-bottom {
      position: relative; z-index: 1;
      display: flex; align-items: flex-end; justify-content: space-between;
      padding: 0 28px 28px;
    }
    .sp-hero-info {}
    .sp-hero-name { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
    .sp-hero-genre { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 5px; text-transform: uppercase; letter-spacing: .6px; }

    .sp-play-hero {
      width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
      background: var(--accent-grad); color: #fff; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(214,53,88,.5);
      transition: transform .15s, opacity .15s;
    }
    .sp-play-hero:hover { transform: scale(1.08); opacity: .88; }

    .sp-body { max-width: 820px; margin: 0 auto; padding: 32px 24px 0; }

    .sp-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

    .sp-stats { display: flex; gap: 12px; margin-bottom: 36px; }
    .sp-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; min-width: 120px; }
    .sp-stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--accent); }
    .sp-stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }

    .sp-sec { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }

    .sp-np {
      display: flex; align-items: center; gap: 14px;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 14px; padding: 16px; margin-bottom: 36px;
    }
    .sp-np-art { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: var(--surface2); }
    .sp-np-info { flex: 1; min-width: 0; }
    .sp-np-title  { font-size: 16px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sp-np-artist { font-size: 13px; color: var(--muted); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sp-np-live   { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--green); font-weight: 600; margin-top: 6px; }

    .sp-hist-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
    .sp-hist-row:last-child { border-bottom: none; }
    .sp-hist-num  { font-size: 13px; color: var(--muted); width: 22px; text-align: right; flex-shrink: 0; font-variant-numeric: tabular-nums; }
    .sp-hist-art  { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--surface2); }
    .sp-hist-info { flex: 1; min-width: 0; }
    .sp-hist-title  { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sp-hist-artist { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sp-hist-time { font-size: 11px; color: var(--muted); flex-shrink: 0; }

    /* Schedule on station page */
    .sp-sch-row { display: flex; align-items: flex-start; gap: 16px; padding: 11px 16px; border-bottom: 1px solid var(--border); }
    .sp-sch-row:last-child { border-bottom: none; }
    .sp-sch-row.now { background: rgba(121,101,255,.08); }
    .sp-sch-time { font-size: 12px; color: var(--muted); flex-shrink: 0; font-variant-numeric: tabular-nums; padding-top: 2px; min-width: 140px; }
    .sp-sch-info { flex: 1; min-width: 0; }
    .sp-sch-name { font-size: 14px; font-weight: 500; }
    .sp-sch-host { font-size: 12px; color: var(--accent); margin-top: 3px; }
    .sp-sch-desc { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
    .sp-sch-badge { font-size: 10px; font-weight: 600; background: var(--accent); color: #fff; padding: 3px 9px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
    .sp-sch-listen { font-size: 11px; font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
    .sp-sch-listen:hover { text-decoration: underline; }

    .sp-block { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 12px; }
    .sp-sch-more-btn { display: block; width: 100%; margin-bottom: 36px; padding: 11px; background: none; border: 1px dashed var(--border); border-radius: 14px; color: var(--muted); font: 13px/1 'Inter', sans-serif; cursor: pointer; transition: color .15s, border-color .15s; }
    .sp-sch-more-btn:hover { color: var(--text); border-color: rgba(255,255,255,.18); }
    .sp-sch-more-btn:disabled { opacity: .5; cursor: default; }

    /* ── Calendar (weekly schedule) ── */
    .cal-wrap {
      overflow: auto; max-height: 540px;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 14px; margin-bottom: 12px;
    }
    .cal-inner { min-width: 540px; }
    .cal-head {
      display: flex; position: sticky; top: 0; z-index: 5;
      background: var(--surface); border-bottom: 1px solid var(--border);
    }
    .cal-head-time { width: 44px; flex-shrink: 0; }
    .cal-head-days { flex: 1; display: grid; grid-template-columns: repeat(7, minmax(70px,1fr)); }
    .cal-day-head {
      padding: 8px 4px 6px; text-align: center;
      font-size: 11px; font-weight: 600; color: var(--muted);
      text-transform: uppercase; letter-spacing: .4px;
      border-left: 1px solid var(--border);
    }
    .cal-day-head:first-child { border-left: none; }
    .cal-day-head.cal-today { color: var(--accent); }
    .cal-day-num { display: block; font-family: 'Space Grotesk',sans-serif; font-size: 17px; font-weight: 700; line-height: 1.15; margin-bottom: 1px; }
    .cal-body { display: flex; }
    .cal-times { width: 44px; flex-shrink: 0; }
    .cal-time-slot { height: 40px; padding: 3px 6px 0 0; font-size: 10px; color: var(--muted); font-variant-numeric: tabular-nums; text-align: right; }
    .cal-cols { flex: 1; display: grid; grid-template-columns: repeat(7, minmax(70px,1fr)); }
    .cal-col {
      position: relative; height: 960px;
      border-left: 1px solid var(--border);
      background: repeating-linear-gradient(to bottom, rgba(255,255,255,.05) 0,rgba(255,255,255,.05) 1px, transparent 1px, transparent 40px);
    }
    .cal-col:first-child { border-left: none; }
    .cal-col.cal-today {
      background: repeating-linear-gradient(to bottom, rgba(214,53,88,.12) 0,rgba(214,53,88,.12) 1px, rgba(214,53,88,.03) 1px, rgba(214,53,88,.03) 40px);
    }
    .cal-event {
      position: absolute; left: 2px; right: 2px; border-radius: 5px;
      overflow: hidden; padding: 3px 5px; font-size: 10px; line-height: 1.3;
      color: #fff; background: var(--accent-grad); z-index: 1; transition: opacity .15s;
    }
    .cal-event:hover { opacity: .82; z-index: 2; }
    .cal-event-now { outline: 2px solid rgba(255,255,255,.45); }
    .cal-ev-name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .cal-ev-host { font-size: 9px; opacity: .8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: 1px; }
    .cal-ev-time { font-size: 9px; opacity: .65; margin-top: 1px; }
    .cal-now-line {
      position: absolute; left: -1px; right: 0; height: 2px;
      background: var(--accent); z-index: 3; pointer-events: none;
    }
    .cal-now-line::before {
      content: ''; position: absolute; left: -3px; top: -3px;
      width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    }

    /* ── Show modal ── */
    #show-modal {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,.65); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: center; padding: 20px;
      opacity: 0; pointer-events: none; transition: opacity .2s;
    }
    #show-modal.open { opacity: 1; pointer-events: all; }
    .modal-card {
      position: relative; background: var(--surface);
      border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
      padding: 32px 28px 28px; max-width: 460px; width: 100%;
      transform: translateY(20px); transition: transform .22s;
    }
    #show-modal.open .modal-card { transform: translateY(0); }
    .modal-close {
      position: absolute; top: 14px; right: 14px;
      width: 30px; height: 30px; border-radius: 8px;
      border: 1px solid var(--border); background: var(--surface2);
      color: var(--muted); cursor: pointer; font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      transition: color .15s, border-color .15s;
    }
    .modal-close:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
    .modal-now {
      display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
      font-size: 11px; font-weight: 600; color: var(--green);
      text-transform: uppercase; letter-spacing: .8px;
    }
    .modal-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 20px;
    }
    .modal-row { margin-bottom: 13px; }
    .modal-row-label {
      display: block; font-size: 10px; font-weight: 600; color: var(--muted);
      text-transform: uppercase; letter-spacing: .7px; margin-bottom: 3px;
    }
    .modal-row-val { font-size: 14px; }
    .modal-row-val.accent { color: var(--accent); font-weight: 500; }
    .modal-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
    .modal-listen { display: inline-flex; }
    .sp-sch-row { cursor: pointer; }
    .sch-row { cursor: pointer; }

    /* ── Player bar ── */
    #player {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
      height: var(--ph); display: flex; align-items: center;
      padding: 0 24px; gap: 16px;
      background: rgba(7,7,16,.96);
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      border-top: 1px solid var(--border);
    }
    #p-art { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--surface2); cursor: pointer; }
    #p-art:not([src]), #p-art[src=""] { visibility: hidden; width: 0; margin: 0; padding: 0; }
    .p-info { flex: 1; min-width: 0; cursor: pointer; }
    .p-station { font-size: 10px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1px; }
    .p-title  { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .p-artist { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .p-ctrl { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-grad); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; transition: transform .15s, opacity .15s; }
    .p-ctrl:hover { transform: scale(1.07); opacity: .88; }
    .vol-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .vol-icon { color: var(--muted); font-size: 18px; }
    input[type=range] { width: 88px; accent-color: var(--accent); cursor: pointer; }

    /* ── Contacts page ── */
    .contacts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 14px; margin-top: 32px; }
    .contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 26px; display: flex; flex-direction: column; gap: 8px; }
    .contact-card-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; }
    .contact-card-email { font-size: 17px; font-weight: 600; color: var(--text); text-decoration: none; word-break: break-all; }
    .contact-card-email:hover { color: var(--accent); }
    .contact-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

    .socials-wrap { margin-top: 48px; }
    .socials-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
    .social-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .15s, border-color .15s, background .15s; }
    .social-link:hover { color: var(--text); border-color: rgba(255,255,255,.15); background: var(--surface2); }
    .social-link svg { flex-shrink: 0; }

    .contact-live { margin-top: 48px; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 14px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
    .contact-live-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; flex-shrink: 0; animation: blink 2s ease-in-out infinite; }
    .contact-live-text { font-size: 14px; line-height: 1.6; }
    .contact-live-text strong { color: var(--text); }

    /* ── How To page ── */
    .howto-methods { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 16px; margin-top: 32px; }
    .howto-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 30px; display: flex; flex-direction: column; gap: 12px; }
    .howto-card-wide { grid-column: 1 / -1; }
    .howto-card-num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
    .howto-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; }
    .howto-card-text { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
    .howto-btn { display: inline-flex; align-items: center; justify-content: center; margin-top: 4px; align-self: flex-start; padding: 9px 20px; border-radius: 10px; background: var(--accent-grad); color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity .15s; }
    .howto-btn:hover { opacity: .85; }
    .streams-list { margin-top: 8px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .stream-row { display: grid; grid-template-columns: 140px 1fr 36px; align-items: center; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--border); transition: background .12s; }
    .stream-row:last-child { border-bottom: none; }
    .stream-row:hover { background: rgba(255,255,255,.02); }
    .stream-name { font-size: 13px; font-weight: 500; }
    .stream-url { font-size: 11px; color: var(--muted); font-family: monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .stream-copy { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border); background: var(--surface2); color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: color .15s, border-color .15s; justify-self: end; }
    .stream-copy:hover { color: var(--text); border-color: rgba(255,255,255,.15); }
    .stream-copy.copied { color: var(--green); border-color: var(--green); }

    /* ── Responsive ── */
    @media (max-width: 700px) {
      .grid { grid-template-columns: 1fr 1fr; }
      .vol-wrap { display: none; }
      .sch-row { grid-template-columns: 130px 1fr; }
      .sch-badge { display: none; }
      .sp-hero { height: 260px; }
      .sp-hero-name { font-size: 26px; }
    }
    @media (max-width: 440px) {
      .grid { grid-template-columns: 1fr; }
      header { padding: 0 16px; }
      #main { padding: 24px 16px 48px; }
      #main.sp { padding: 0 0 48px; }
      #player { padding: 0 16px; gap: 12px; }
      .sp-hero-bottom { padding: 0 16px 20px; }
      .sp-body { padding: 24px 16px 0; }
    }

/* ── Related stations (static station pages) ── */
.rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 16px; }
.rel-card { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px; text-decoration: none; color: inherit; transition: transform .18s, border-color .18s; }
.rel-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.rel-card-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--surface2); }
.rel-card-body { min-width: 0; }
.rel-card-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; }
.rel-card-genre { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
