/* RUDVOR TV — Y2K webcore edition v2
 * Референс: ретро-окно браузера, фосфор, дизеринг.
 * Палитра: macmasta.ru — navy #0a0e27/#141b3d + cyan #00d4ff
 *          + pink #ff006e + violet #b24bff + green #00ff88.
 * Шрифты: Russo One (self-hosted) + системный mono (терминал).
 */

@font-face {
  font-family: "Russo One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/russo-one-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Russo One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/russo-one-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg0: #05060f;
  --bg: #0a0e27;
  --panel: #141b3d;
  --line: rgba(0, 212, 255, 0.30);
  --cyan: #00d4ff;
  --pink: #ff006e;
  --violet: #b24bff;
  --green: #00ff88;
  --text: #eaf6ff;
  --muted: #7f93c2;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Courier New", monospace;
  --grad-holo: linear-gradient(92deg, #00d4ff, #b24bff 50%, #ff006e);
  --hard-violet: 4px 4px 0 rgba(178, 75, 255, 0.30);
  --hard-pink: 4px 4px 0 rgba(255, 0, 110, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(178, 75, 255, 0.16) 0%, transparent 60%),
    radial-gradient(900px 650px at -10% 110%, rgba(0, 212, 255, 0.12) 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  font: 15px/1.55 Verdana, Geneva, Tahoma, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
::selection { background: var(--pink); color: #fff; }

/* ---------- фон: орбы, звёзды, сканлайны ---------- */
.y2k-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); mix-blend-mode: screen; opacity: .45;
  animation: float 16s ease-in-out infinite alternate;
}
.orb-1 { width: 480px; height: 480px; left: -140px; top: 8%;
  background: radial-gradient(circle, rgba(0,212,255,.45), transparent 70%); }
.orb-2 { width: 560px; height: 560px; right: -180px; top: 32%;
  background: radial-gradient(circle, rgba(255,0,110,.35), transparent 70%);
  animation-delay: -6s; }
.orb-3 { width: 420px; height: 420px; left: 34%; bottom: -180px;
  background: radial-gradient(circle, rgba(178,75,255,.4), transparent 70%);
  animation-delay: -11s; }
@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.12); }
}
.stars {
  position: absolute; inset: 0; opacity: .7;
  background-image:
    radial-gradient(1.5px 1.5px at 40px 60px, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 180px 140px, rgba(0,212,255,.9) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 300px 40px, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 420px 200px, rgba(0,255,136,.85) 50%, transparent 51%),
    radial-gradient(1px 1px at 90px 280px, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 520px 120px, rgba(255,0,110,.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 620px 260px, #fff 50%, transparent 51%);
  background-size: 700px 340px;
  animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .3; } to { opacity: .85; } }
.sparkle { position: absolute; color: #fff; text-shadow: 0 0 8px var(--cyan); animation: twinkle 3s infinite alternate; }
.s1 { left: 6%; top: 18%; font-size: 18px; }
.s2 { right: 9%; top: 12%; font-size: 13px; color: var(--green); text-shadow: 0 0 8px var(--green); animation-delay: -1.2s; }
.s3 { left: 46%; top: 7%; font-size: 11px; color: var(--pink); text-shadow: 0 0 8px var(--pink); animation-delay: -2s; }
.s4 { right: 22%; bottom: 14%; font-size: 15px; animation-delay: -.6s; }

/* CRT-сканлайны поверх всего (кликабельность не мешает) */
.scanlines {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  background: repeating-linear-gradient(0deg,
    rgba(0, 0, 0, 0.16) 0px, rgba(0, 0, 0, 0.16) 1px,
    transparent 1px, transparent 3px);
  opacity: .5;
}

/* ---------- ретро-окно браузера ---------- */
.browser {
  max-width: 1340px; width: calc(100% - 28px);
  margin: 20px auto 30px;
  border: 2px solid rgba(0, 212, 255, 0.45);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 44px rgba(0, 212, 255, 0.16),
    0 26px 90px rgba(0, 0, 12, 0.75),
    7px 7px 0 rgba(178, 75, 255, 0.30);
  display: flex; flex-direction: column;
  min-height: calc(100vh - 50px);
}

/* вкладки */
.chrome-tabs {
  display: flex; align-items: flex-end; gap: 6px;
  padding: 10px 14px 0;
  background: rgba(4, 6, 18, 0.92);
}
.chrome-tab {
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: var(--muted); text-decoration: none;
  padding: 9px 20px;
  border: 1.5px solid rgba(0, 212, 255, 0.25);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background: rgba(20, 27, 61, 0.55);
  transition: color .15s, background .15s;
}
.chrome-tab:hover { color: var(--cyan); }
.chrome-tab.active {
  color: #041018;
  background: linear-gradient(180deg, #35e1ff, #0096c8);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.4);
}
.chrome-dots { margin-left: auto; display: flex; gap: 8px; padding-bottom: 12px; }
.chrome-dots i { width: 12px; height: 12px; border-radius: 50%; }
.chrome-dots i:nth-child(1) { background: var(--pink);   box-shadow: 0 0 8px var(--pink); }
.chrome-dots i:nth-child(2) { background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.chrome-dots i:nth-child(3) { background: var(--green);  box-shadow: 0 0 8px var(--green); }

/* адресная строка */
.chrome-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(20, 27, 61, 0.85);
  border-top: 1.5px solid rgba(0, 212, 255, 0.25);
  border-bottom: 2px solid rgba(0, 212, 255, 0.35);
}
.chrome-btn {
  width: 30px; height: 30px;
  border: 1.5px solid var(--line); border-radius: 8px;
  background: rgba(10, 14, 39, 0.85);
  color: var(--cyan); font-size: 16px; line-height: 1;
  cursor: pointer;
  transition: box-shadow .15s, border-color .15s;
}
.chrome-btn:hover { border-color: var(--cyan); box-shadow: 0 0 12px rgba(0,212,255,.4); }
.urlbar {
  flex: 1; min-width: 0;
  display: flex; align-items: center;
  background: #04060f;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--mono);
  font-size: 12px; color: var(--cyan);
  letter-spacing: .5px;
  overflow: hidden; white-space: nowrap;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.6);
}
.urlbar .lock { color: var(--green); margin-right: 8px; text-shadow: 0 0 6px var(--green); }
.ucursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--cyan); margin-left: 6px;
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.win-btns { display: flex; gap: 8px; }
.win-btns i {
  width: 30px; height: 30px;
  border: 1.5px solid var(--line); border-radius: 8px;
  background: rgba(10, 14, 39, 0.85);
  color: var(--muted); font-style: normal;
  font-family: var(--mono); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.win-btns i:last-child { color: var(--pink); border-color: rgba(255,0,110,.4); }

/* ---------- header ---------- */
.site-header {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(20, 27, 61, 0.9), rgba(10, 14, 39, 0.85));
  border-bottom: 1px solid var(--line);
}
.logo { display: block; line-height: 0; }
.logo img {
  height: 46px; width: auto; display: block;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}
.brand-title {
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 22px; letter-spacing: 2px;
  background: var(--grad-holo);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
  margin-right: auto;
}
.brand-title span { color: var(--pink); -webkit-text-fill-color: var(--pink); }
.live-badge {
  display: flex; align-items: center; gap: 8px;
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 13px; letter-spacing: 2px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0) 48%),
    linear-gradient(180deg, #ff2d78, #c4004f);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 0 0 18px rgba(255, 0, 110, 0.55), var(--hard-pink);
}
.live-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .25 } }

/* ---------- бегущая строка ---------- */
.ticker {
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(90deg, rgba(0,212,255,.12), rgba(178,75,255,.10) 50%, rgba(255,0,110,.10));
  border-bottom: 1px solid var(--line);
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 11px; letter-spacing: 2.5px;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}
.ticker-track { display: inline-flex; padding: 7px 0; animation: ticker 26s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- layout ---------- */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  padding: 22px;
  flex: 1;
}

/* ---------- player ---------- */
.player-box {
  position: relative;
  background: #02040c;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.20), var(--hard-pink);
}
.player-box video { width: 100%; height: 100%; display: block; background: #000; }
#big-play {
  position: absolute; inset: 0; margin: auto;
  width: max-content; height: max-content;
  display: flex; align-items: center; gap: 10px;
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 16px; letter-spacing: 1px;
  color: #041018;
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.05) 50%),
    linear-gradient(180deg, #35e1ff, #0088c8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 14px 28px; cursor: pointer;
  box-shadow: 0 0 26px rgba(0, 212, 255, 0.55), var(--hard-pink);
  transition: transform .15s ease, box-shadow .15s ease;
}
#big-play:hover { transform: translate(-2px, -2px); box-shadow: 0 0 40px rgba(255, 0, 110, 0.6), 6px 6px 0 rgba(255, 0, 110, 0.45); }
#big-play[hidden] { display: none; }

/* ---------- статистика просмотров ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 14px;
}
.stat {
  background: linear-gradient(180deg, rgba(20, 27, 61, 0.9), rgba(10, 14, 39, 0.9));
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px 10px;
  text-align: center;
  box-shadow: var(--hard-violet);
}
.stat .num {
  font-family: var(--mono);
  font-size: 26px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.stat .lbl {
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.stat-now .num { color: var(--green); text-shadow: 0 0 14px rgba(0, 255, 136, 0.6); }
.stat-day .num { color: var(--pink); text-shadow: 0 0 14px rgba(255, 0, 110, 0.6); }
.stat-total .num { color: var(--cyan); text-shadow: 0 0 14px rgba(0, 212, 255, 0.6); }

/* ---------- вкладки под плеером ---------- */
.tabs { display: flex; gap: 8px; margin-top: 16px; }
.tab {
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: var(--muted);
  background: rgba(20, 27, 61, 0.55);
  border: 1.5px solid rgba(0, 212, 255, 0.25);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 9px 18px; cursor: pointer;
  transition: color .15s, background .15s;
}
.tab:hover { color: var(--cyan); }
.tab.active {
  color: #041018;
  background: linear-gradient(180deg, #35e1ff, #0096c8);
  border-color: rgba(0, 212, 255, 0.6);
}
.tab-panel {
  border: 1.5px solid var(--line);
  border-radius: 0 12px 12px 12px;
  background: rgba(20, 27, 61, 0.5);
  padding: 0;
}
.tab-panel[hidden] { display: none; }

.day-list { list-style: none; margin: 0; padding: 8px 16px; }
.day-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  font-size: 13px;
}
.day-list li:last-child { border-bottom: 0; }
.day-list .t {
  color: var(--cyan); font-weight: 700;
  font-family: var(--mono); font-size: 12px;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.45);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.day-list .onair { color: var(--green); }
.day-list .onair .t { color: var(--green); text-shadow: 0 0 8px rgba(0, 255, 136, 0.55); }
.day-list .past { opacity: .42; }

/* ---------- now-bar (вкладка «В эфире») ---------- */
.now-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px 18px;
}
.now-info .label {
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(0,212,255,.5);
}
.now-title { font-family: "Russo One", Verdana, sans-serif; font-weight: 400; font-size: 16px; letter-spacing: .5px; }
.now-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; min-width: 160px; }
.progress {
  width: 180px; height: 10px;
  background: rgba(0, 212, 255, 0.14);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 3px; overflow: hidden;
}
#now-progress {
  height: 100%; width: 0%;
  background: repeating-linear-gradient(90deg,
    var(--cyan) 0 8px, #00a8d6 8px 10px);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
  transition: width 1s linear;
}
.time { font-size: 12px; color: var(--muted); font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- ad slot ---------- */
.ad-slot {
  margin-top: 14px;
  min-height: 90px;
  border: 1.5px dashed rgba(178, 75, 255, 0.45);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px;
  background: rgba(178, 75, 255, 0.05);
}
.ad-slot a { color: var(--text); text-decoration: none; font-weight: 700; }

/* ---------- side cards ---------- */
.card {
  background: linear-gradient(180deg, rgba(20,27,61,.85), rgba(10,14,39,.85));
  border: 1.5px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--hard-violet);
  padding: 16px 18px; margin-bottom: 18px;
}
.card h2 {
  margin: 0 0 12px;
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 13px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 400;
  background: var(--grad-holo);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}
.next-list, .epg-list { list-style: none; margin: 0; padding: 0; }
.next-list li, .epg-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid rgba(0,212,255,.14);
  font-size: 13px;
}
.next-list li:last-child, .epg-list li:last-child { border-bottom: 0; }
.next-list .t, .epg-list .t {
  color: var(--green); font-weight: 700;
  font-family: var(--mono); font-size: 12px;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.45);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.week-link {
  display: inline-block; margin-top: 12px;
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: var(--cyan); text-decoration: none;
}
.week-link:hover { text-shadow: 0 0 10px var(--cyan); }

.support-card .muted { color: var(--muted); font-size: 12px; margin: 0 0 12px; }
.donate-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- share card ---------- */
.share-card .muted { color: var(--muted); font-size: 12px; margin: 0 0 12px; }
.share-row { display: flex; gap: 8px; }
.share-row input {
  flex: 1; min-width: 0;
  background: #04060f; color: var(--cyan);
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: 10px 12px; font-size: 12px;
  font-family: var(--mono);
}
.share-row input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 12px rgba(0,212,255,.35); }
.share-row button, #copy-embed {
  font-family: "Russo One", Verdana, sans-serif;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.04) 50%),
    linear-gradient(180deg, #ff2d78, #b00058);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 10px 16px; font-size: 12px; letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(255, 0, 110, 0.4), var(--hard-violet);
  transition: box-shadow .15s, filter .15s, transform .15s;
}
.share-row button:hover, #copy-embed:hover {
  filter: brightness(1.15); transform: translate(-1px, -1px);
  box-shadow: 0 0 22px rgba(255, 0, 110, 0.6), 5px 5px 0 rgba(178, 75, 255, 0.35);
}
.share-hint { margin-top: 12px; line-height: 1.7; }
.share-hint a { color: var(--cyan); text-decoration: none; }
.share-hint a:hover { text-shadow: 0 0 8px var(--cyan); }

/* ---------- buttons (донаты) ---------- */
.btn {
  flex: 1; min-width: 80px; text-align: center;
  font-size: 13px; font-weight: 700;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.02) 52%),
    rgba(178, 75, 255, 0.16);
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none; cursor: pointer;
  transition: border-color .15s, box-shadow .15s, color .15s, transform .15s;
}
.btn:hover {
  border-color: var(--cyan); color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.45), 3px 3px 0 rgba(255, 0, 110, 0.35);
}

/* ---------- footer ---------- */
.site-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: rgba(4, 6, 18, 0.9);
  color: var(--muted); font-size: 12px; flex-wrap: wrap;
}
#copy-embed { padding: 7px 14px; }
.muted { color: var(--muted); }

/* ---------- schedule page (неделя) ---------- */
.week-head {
  padding: 18px 22px 0;
}
.week-head h1 {
  margin: 0 0 4px;
  font-family: "Russo One", Verdana, sans-serif;
  font-weight: 400; font-size: 24px; letter-spacing: 1.5px;
  background: var(--grad-holo);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}
.week-head .muted { color: var(--muted); font-size: 13px; }
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 22px 22px;
}
.day-card {
  background: linear-gradient(180deg, rgba(20,27,61,.85), rgba(10,14,39,.85));
  border: 1.5px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--hard-violet);
  padding: 12px 12px 8px;
  min-width: 0;
}
.day-card.today {
  border-color: rgba(255, 0, 110, 0.65);
  box-shadow: 0 0 22px rgba(255, 0, 110, 0.25), var(--hard-pink);
}
.day-card h3 {
  margin: 0 0 4px;
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 13px; letter-spacing: 1.5px; font-weight: 400;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
  display: flex; align-items: center; justify-content: space-between;
}
.day-card.today h3 { color: var(--pink); text-shadow: 0 0 10px rgba(255, 0, 110, 0.6); }
.day-card .date { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0; }
.today-chip {
  font-family: "Russo One", Verdana, sans-serif;
  font-size: 8px; letter-spacing: 1px;
  color: #041018;
  background: var(--pink);
  border-radius: 6px; padding: 2px 6px;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
}
.day-card ul { list-style: none; margin: 0; padding: 0; }
.day-card li {
  display: flex; gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.10);
  font-size: 12px; line-height: 1.4;
}
.day-card li:last-child { border-bottom: 0; }
.day-card li .t {
  color: var(--cyan); font-family: var(--mono); font-size: 11px;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  padding-top: 1px;
}
.day-card li.onair { color: var(--green); }
.day-card li.onair .t { color: var(--green); text-shadow: 0 0 6px rgba(0,255,136,.5); }
.day-card li.past { opacity: .4; }
.day-card .empty { color: var(--muted); font-size: 11px; padding: 6px 0; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .week-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; padding: 14px; gap: 14px; }
  .now-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .now-right { align-items: flex-start; min-width: 0; width: 100%; }
  .progress { width: 100%; }
  .ticker { letter-spacing: 1.5px; }
  .brand-title { display: none; }
  .chrome-tab { padding: 8px 12px; font-size: 11px; }
}
@media (max-width: 640px) {
  .week-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { gap: 8px; }
  .stat .num { font-size: 20px; }
  .stat .lbl { font-size: 8px; }
  .urlbar { font-size: 10px; }
  .win-btns, .chrome-btn[aria-label="Назад"] { display: none; }
}

/* ---------- fullscreen (v5) ---------- */
#fs-btn {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(4, 6, 18, 0.55);
  border: 1.5px solid rgba(0, 212, 255, 0.55);
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
#fs-btn:hover {
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.55);
  transform: translate(-1px, -1px);
}
#fs-btn svg { width: 22px; height: 22px; fill: currentColor; }
#fs-btn .ic-compress { display: none; }
.player-box.is-fs #fs-btn .ic-expand { display: none; }
.player-box.is-fs #fs-btn .ic-compress { display: block; }

.player-box:fullscreen {
  border: 0; border-radius: 0; aspect-ratio: auto;
  width: 100vw; height: 100vh;
}
.player-box:-webkit-full-screen {
  border: 0; border-radius: 0;
  width: 100vw; height: 100vh;
}
.player-box:fullscreen video { object-fit: contain; }
