/* 99 Pulstar · style.css
   Dark cosmic theme. Deep purple to near black, hot pink accent, pale pink text accent.
   Rainbow gradient is reserved for the "99" alone. */

:root {
  --bg-0: #07030f;
  --bg-1: #12061f;
  --bg-2: #1c0a33;
  --bg-3: #2a1049;
  --ink: #f6eefc;
  --ink-2: #c9b3dc;
  --ink-3: #8d76a6;
  --pink: #ff3d81;
  --pink-deep: #c9145f;
  --pale: #f4c6ff;
  --line: rgba(244, 198, 255, 0.14);
  --card: rgba(255, 255, 255, 0.04);
  --card-hi: rgba(255, 255, 255, 0.07);
  --rainbow: linear-gradient(100deg, #ff3d81 0%, #ff9a3d 22%, #ffe83d 40%, #4dff8a 58%, #3dc6ff 76%, #b26bff 100%);
  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --bar-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-1);
  background-image:
    radial-gradient(1200px 700px at 15% -10%, #3a1460 0%, transparent 60%),
    radial-gradient(900px 600px at 100% 30%, rgba(255, 61, 129, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--pale); text-underline-offset: 3px; }
a:hover { color: #fff; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-weight: 900; font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-weight: 800; }
p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--pale);
  outline-offset: 3px;
  border-radius: 6px;
}

.vis-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--pink); color: #fff; padding: 10px 14px; border-radius: 10px;
  font-weight: 800; text-decoration: none;
}
.skip:focus { top: 12px; }

.nine {
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 0 rgba(255, 61, 129, 0.7);
  animation: blink 1.8s ease-out infinite;
}
@keyframes blink {
  0%   { box-shadow: 0 0 0 0 rgba(255, 61, 129, 0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 61, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 61, 129, 0); }
}

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 18px;
  padding: 10px clamp(16px, 4vw, 40px);
  background: rgba(10, 4, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink); font-weight: 900; font-size: 1.15rem;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.nav { display: none; gap: 4px; margin-left: auto; }
.nav a {
  color: var(--ink-2); text-decoration: none; font-weight: 800; font-size: 0.9rem;
  padding: 8px 12px; border-radius: 999px;
}
.nav a:hover { color: #fff; background: var(--card-hi); }
.nav-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: #fff; font-weight: 800; font-size: 0.85rem;
  padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255, 61, 129, 0.5);
  background: rgba(255, 61, 129, 0.12);
}
.nav-sister {
  display: none; color: var(--ink-2); text-decoration: none; font-weight: 800; font-size: 0.85rem;
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
}
.nav-sister:hover { color: #fff; background: var(--card-hi); }
@media (min-width: 760px) {
  .nav { display: flex; }
  .nav-live { margin-left: 0; }
}
@media (min-width: 1040px) { .nav-sister { display: inline-block; } }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 40px) clamp(48px, 8vw, 96px);
  min-height: calc(100vh - 65px);
  display: grid; align-items: center;
}
.stars {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; gap: clamp(24px, 5vw, 64px);
  grid-template-columns: 1fr;
  justify-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 420px 1fr; align-items: center; justify-items: stretch; }
}

/* the pulsar */
.pulsar {
  position: relative; width: min(72vw, 360px); aspect-ratio: 1; flex: none;
  display: grid; place-items: center;
}
.beams {
  position: absolute; inset: -40%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(244, 198, 255, 0.0) 6deg,
    rgba(255, 220, 250, 0.55) 14deg,
    rgba(244, 198, 255, 0.0) 22deg,
    transparent 180deg,
    rgba(244, 198, 255, 0.0) 186deg,
    rgba(255, 220, 250, 0.55) 194deg,
    rgba(244, 198, 255, 0.0) 202deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(circle, rgba(0,0,0,1) 8%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0) 62%);
  mask: radial-gradient(circle, rgba(0,0,0,1) 8%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0) 62%);
  animation: sweep 6s linear infinite;
  filter: blur(1.5px);
}
@keyframes sweep { to { transform: rotate(360deg); } }

.ring {
  position: absolute; inset: 22%;
  border-radius: 50%;
  border: 2px solid rgba(255, 61, 129, 0.75);
  opacity: 0;
  animation: ripple 3.6s ease-out infinite;
}
.ring.r2 { animation-delay: 1.2s; }
.ring.r3 { animation-delay: 2.4s; }
@keyframes ripple {
  0%   { transform: scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}

.star {
  position: relative; width: 46%;
  filter: drop-shadow(0 0 18px rgba(255, 61, 129, 0.9)) drop-shadow(0 0 60px rgba(255, 61, 129, 0.45));
  animation: heartbeat 1.8s ease-in-out infinite;
  transform-origin: 50% 52%;
}
/* double beat: lub, dub, rest */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  12%  { transform: scale(1.14); }
  24%  { transform: scale(1); }
  36%  { transform: scale(1.09); }
  50%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.hero-copy { max-width: 620px; text-align: center; }
@media (min-width: 900px) { .hero-copy { text-align: left; max-width: none; } }

.eyebrow {
  margin: 0 0 12px; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pale);
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 0.95;
}
.tagline {
  margin: 12px 0 14px; font-weight: 800; font-size: clamp(1.25rem, 3vw, 1.7rem); color: #fff;
}
.subline { margin: 0 0 16px; color: var(--pale); font-weight: 800; font-size: 1rem; }
.subline a { color: #fff; }
.lede { color: var(--ink-2); max-width: 56ch; margin: 0 auto 26px; }
@media (min-width: 900px) { .lede { margin-left: 0; } }

/* ---------- player ---------- */
.player {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px;
  padding: 16px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  text-align: left;
}
@media (min-width: 560px) { .player { grid-template-columns: auto 1fr auto; } }

.play {
  position: relative; width: 74px; height: 74px; border-radius: 50%; border: 0; flex: none;
  background: linear-gradient(145deg, #ff6a9f, var(--pink) 55%, var(--pink-deep));
  box-shadow: 0 10px 30px rgba(255, 61, 129, 0.45), 0 0 0 6px rgba(255, 61, 129, 0.12);
  display: grid; place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.play:hover { transform: scale(1.04); }
.play:active { transform: scale(0.97); }
.play svg { width: 36px; height: 36px; fill: #fff; grid-area: 1 / 1; }
.play .ic-pause { display: none; }
.play[aria-pressed="true"] .ic-play { display: none; }
.play[aria-pressed="true"] .ic-pause { display: block; }
.play.small { width: 52px; height: 52px; }
.play.small svg { width: 26px; height: 26px; }

.spinner {
  grid-area: 1 / 1; width: 100%; height: 100%; border-radius: 50%;
  border: 3px solid transparent; border-top-color: #fff; opacity: 0;
  animation: spin 0.9s linear infinite;
}
.play.loading .spinner { opacity: 1; }
.play.loading .ic-play, .play.loading .ic-pause { opacity: 0.35; }
@keyframes spin { to { transform: rotate(360deg); } }

.player-meta { min-width: 0; }
.live-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 900; font-size: 0.72rem; letter-spacing: 0.14em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255, 61, 129, 0.16); color: #fff; border: 1px solid rgba(255, 61, 129, 0.45);
}
.live-pill.off { background: rgba(255,255,255,0.06); border-color: var(--line); color: var(--ink-2); }
.live-pill.off .dot { animation: none; background: var(--ink-3); box-shadow: none; }
.onair-mini { font-size: 0.8rem; color: var(--ink-2); font-weight: 800; }
.now-playing {
  margin: 0; font-weight: 800; font-size: 1.05rem; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.vol { display: flex; align-items: center; gap: 8px; grid-column: 1 / -1; }
@media (min-width: 560px) { .vol { grid-column: auto; } }
.mute {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--card); display: grid; place-items: center; flex: none;
}
.mute svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.mute svg .spk { fill: #fff; }
.mute[aria-pressed="true"] svg .wave, .mute[aria-pressed="true"] svg .wave2 { opacity: 0.25; }
.slider {
  -webkit-appearance: none; appearance: none; width: 100%; min-width: 110px; max-width: 160px;
  height: 6px; border-radius: 999px; background: rgba(255,255,255,0.18); outline-offset: 6px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--pale); border: 2px solid var(--bg-1); box-shadow: 0 0 0 2px var(--pale);
}
.slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--pale); border: 2px solid var(--bg-1);
  box-shadow: 0 0 0 2px var(--pale);
}
.player-note { margin: 12px 0 0; font-size: 0.85rem; color: var(--ink-3); }

/* ---------- sections ---------- */
.section { padding: clamp(56px, 9vw, 112px) clamp(16px, 4vw, 40px); }
.section.alt { background: rgba(0, 0, 0, 0.22); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wrap { max-width: 1160px; margin: 0 auto; }
.wrap.narrow { max-width: 760px; }
.section-head { margin-bottom: 28px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 20px; }
.section-head p { margin: 0; }
.muted { color: var(--ink-2); font-weight: 400; }
.fine { font-size: 0.85rem; color: var(--ink-3); }
.sub { font-size: 1.1rem; margin: 36px 0 12px; }
.clock { font-weight: 800; color: var(--pale); font-variant-numeric: tabular-nums; margin-left: auto; }

/* on air card */
.onair-card {
  position: relative; overflow: hidden;
  padding: 26px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 61, 129, 0.22), rgba(178, 107, 255, 0.10));
  border: 1px solid rgba(255, 61, 129, 0.4);
  box-shadow: var(--shadow);
}
.onair-card::after {
  content: ""; position: absolute; right: -40px; top: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 129, 0.35), transparent 65%); pointer-events: none;
}
.onair-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pale); }
.onair-show { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 8px 0 6px; }
.onair-when { color: var(--ink-2); margin: 0; }
.onair-next { color: var(--ink-3); margin: 6px 0 0; font-size: 0.9rem; }

/* programme board */
.board { margin-top: 32px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.daystrip {
  display: flex; gap: 4px; padding: 8px; overflow-x: auto; scrollbar-width: none;
  background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--line);
}
.daystrip::-webkit-scrollbar { display: none; }
.daystrip button {
  flex: 1 1 0; min-width: 0; padding: 10px 4px; border-radius: 12px; border: 1px solid transparent;
  background: transparent; color: var(--ink-2); font-weight: 800; font-size: 0.9rem; position: relative;
}
@media (max-width: 420px) { .daystrip button { font-size: 0.8rem; padding: 10px 2px; } }
.daystrip button:hover { color: #fff; background: var(--card-hi); }
.daystrip button.today::after {
  content: ""; position: absolute; left: 50%; bottom: 5px; width: 5px; height: 5px; margin-left: -2px;
  border-radius: 50%; background: var(--pink);
}
.daystrip button[aria-selected="true"] { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 6px 20px rgba(255, 61, 129, 0.35); }
.daystrip button[aria-selected="true"].today::after { background: #fff; }
.board-panel { padding: 8px 16px 16px; }
.board-panel .sub { margin: 12px 0 10px; }
.sched { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sched li {
  display: grid; grid-template-columns: 1fr; gap: 4px 18px; align-items: start;
  padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: rgba(0,0,0,0.18);
}
@media (min-width: 640px) { .sched li { grid-template-columns: 130px 1fr; } }
.sched .t { font-weight: 800; color: var(--pale); font-variant-numeric: tabular-nums; font-size: 0.9rem; padding-top: 2px; white-space: nowrap; }
.sched .n { font-weight: 800; font-size: 1.05rem; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; }
.sched .h { font-size: 0.85rem; color: var(--ink-2); font-weight: 800; }
.sched .d { margin: 2px 0 0; font-size: 0.92rem; color: var(--ink-2); }
.sched .l { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 6px; }
.sched .l .card-link { margin: 0; padding: 0; }
.sched .s { font-size: 0.72rem; color: #fff; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 999px; background: rgba(255, 61, 129, 0.35); }
.sched li.now { background: rgba(255, 61, 129, 0.16); border-color: rgba(255, 61, 129, 0.6); box-shadow: 0 0 0 1px rgba(255, 61, 129, 0.4); }
.sched li.past { opacity: 0.55; }
.sched li.mixslot .n { color: var(--ink-2); }
.sched li.mixslot .d { color: var(--ink-3); }

/* show cards */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(255, 61, 129, 0.5); background: var(--card-hi); }
.card h3 { font-size: 1.25rem; }
.card p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }
.card-time { font-weight: 800 !important; font-size: 0.78rem !important; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pale) !important; }
.card-link { margin-top: auto; padding-top: 10px; font-weight: 800; font-size: 0.9rem; text-decoration: none; }
.card-link:hover { text-decoration: underline; }
.card-link.off { color: var(--ink-3); }
.card-host { color: var(--pale) !important; font-weight: 800; font-size: 0.85rem !important; }
.card-links { margin-top: auto; padding-top: 10px; display: flex; flex-wrap: wrap; gap: 4px 16px; }
.card-links .card-link { margin: 0; padding: 0; }
.card.mix { border-style: dashed; }
.card.now { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink), 0 10px 30px rgba(255, 61, 129, 0.18); }
.card.now .card-time::after { content: " · On air"; color: #fff; }

/* play and explore */
.group-title { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pale); margin: 28px 0 12px; }
.group-title:first-of-type { margin-top: 0; }
.cards.apps { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card.app h3 { font-size: 1.15rem; }
.card.app .install { font-size: 0.8rem; color: var(--ink-3); }
.card.app .open { margin-top: auto; align-self: stretch; margin-top: 14px; padding: 14px 20px; font-size: 1rem; }

/* listen everywhere */
.stream-box { padding: 22px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); margin-bottom: 24px; }
.stream-label { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pale); margin-bottom: 10px; }
.stream-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.stream-url {
  flex: 1 1 260px; min-width: 0; overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.95rem;
  padding: 12px 14px; border-radius: 12px; background: rgba(0,0,0,0.35); border: 1px solid var(--line); color: #fff;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--card-hi); color: #fff; font-weight: 800; text-decoration: none; transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: rgba(255,255,255,0.12); }
.btn:active { transform: scale(0.98); }
.btn.primary { background: var(--pink); border-color: var(--pink); box-shadow: 0 10px 30px rgba(255, 61, 129, 0.35); }
.btn.primary:hover { background: #ff5b95; }
.btn.copy.done { background: rgba(77, 255, 138, 0.18); border-color: rgba(77, 255, 138, 0.5); }

.platforms { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.platforms li { padding: 16px 18px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.plat-name { font-weight: 800; color: #fff; }
.plat-state { font-size: 0.85rem; color: var(--ink-3); }

/* prose */
.prose p { color: var(--ink-2); font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.cta-row { margin-top: 24px; }

/* ---------- footer ---------- */
.foot { padding: 40px clamp(16px, 4vw, 40px) calc(40px + var(--bar-h)); border-top: 1px solid var(--line); background: rgba(0,0,0,0.3); }
.foot-grid { display: grid; gap: 18px; align-items: center; }
@media (min-width: 760px) {
  .foot { padding-bottom: 40px; }
  .foot-grid { grid-template-columns: auto 1fr auto; }
  .foot-links { justify-content: center; }
}
.foot-brand { font-weight: 900; font-size: 1.3rem; margin: 0; }
.foot p { margin: 0; }
.foot-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.foot-links a { text-decoration: none; font-weight: 800; font-size: 0.9rem; color: var(--ink-2); }
.foot-links a:hover { color: #fff; }

/* ---------- sticky mobile bar ---------- */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(12, 5, 24, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 61, 129, 0.35);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}
.bar.show { transform: translateY(0); }
.bar-meta { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.bar-live { display: inline-flex; align-items: center; gap: 6px; font-weight: 900; font-size: 0.68rem; letter-spacing: 0.14em; color: var(--pale); }
.bar-title { font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
@media (min-width: 760px) { .bar { display: none; } }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .beams, .ring, .star, .dot, .spinner { animation: none !important; }
  .ring { opacity: 0.35; transform: scale(1.2); }
  .ring.r2 { transform: scale(1.6); opacity: 0.2; }
  .ring.r3 { display: none; }
  .beams { opacity: 0.7; }
  .card, .play, .btn, .bar { transition: none; }
  .sched .dot { animation: none; }
  .stars { display: none; }
}
