:root {
  color-scheme: dark;
  --bg: #0b111a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f8fafc;
  --muted: #a7b0c0;
  --yellow: #facc15;
  --blue: #3b82f6;
  --red: #fb7185;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(250, 204, 21, 0.14), transparent 30rem),
    radial-gradient(circle at 80% 18%, rgba(59, 130, 246, 0.15), transparent 32rem),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 17, 26, 0.86);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; font-size: 1.25rem; letter-spacing: 0; }
.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  color: #020617;
  font-weight: 900;
}
.logo svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 10px 12px; color: var(--muted); font-weight: 700; font-size: 0.92rem; }
.nav-links a:hover { color: var(--text); }
.listen-link { border-radius: 999px; background: var(--yellow); color: #020617 !important; padding: 10px 18px !important; }

.hero { padding: 62px 0 48px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.1);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 20px var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(2.8rem, 8vw, 6.8rem); line-height: 0.96; margin: 24px 0 18px; letter-spacing: 0; font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: 0; }
h3 { font-size: 1.25rem; letter-spacing: 0; }
.gradient {
  background: linear-gradient(90deg, var(--yellow), #fde68a, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { max-width: 720px; margin: 0 auto 28px; color: var(--muted); font-size: 1.14rem; line-height: 1.65; }

.player {
  margin: 76px auto 0;
  max-width: 1040px;
  min-height: 376px;
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.26);
}
.player-bg {
  position: absolute;
  inset: -18%;
  z-index: 0;
  background-image: var(--cover-bg, url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=600&h=600&fit=crop"));
  background-position: center;
  background-size: cover;
  filter: blur(64px) saturate(160%) brightness(1.05);
  opacity: 0.5;
  transform: scale(1.12);
  transition: background-image 0.6s ease, opacity 0.5s ease;
}
.player-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(12, 17, 25, 0.48), rgba(11, 17, 26, 0.76) 48%, rgba(11, 17, 26, 0.96));
}
.cover-wrap,
.player-content {
  position: relative;
  z-index: 2;
}
.cover-wrap {
  width: min(252px, 92%);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  overflow: visible;
  position: relative;
}
.cover-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 82%;
  aspect-ratio: 1;
  margin: auto;
  box-sizing: border-box;
  border-radius: 24px;
  opacity: 0;
  background: rgba(35, 42, 52, 0.72);
  border: 0;
  box-shadow:
    0 0 22px rgba(250, 204, 21, 0.18),
    0 0 46px rgba(250, 204, 21, 0.12);
  z-index: 2;
}
.cover-base {
  position: relative;
  grid-area: 1 / 1;
  z-index: 2;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 20, 30, 0.18);
  border: 0;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}
.cover-base img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: none;
  transform: none;
  transition: opacity 0.25s ease;
  opacity: 1;
}
.is-playing .cover-base {
  opacity: 0;
}
.is-playing .cover-base img {
  opacity: 0;
}
.cover-spinner {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 82%;
  height: 82%;
  margin: auto;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 26px 60px rgba(0,0,0,0.28);
  transform-origin: 50% 50%;
}
.is-playing .cover-wrap::before {
  opacity: 0.9;
  animation: glow-pulse 2.4s ease-in-out infinite;
}
.is-playing .cover-spinner {
  opacity: 0.82;
  animation: disc-spin 8s linear infinite;
}
@keyframes disc-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.78;
    box-shadow:
      0 0 18px rgba(250, 204, 21, 0.2),
      0 0 38px rgba(250, 204, 21, 0.12);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 24px rgba(250, 204, 21, 0.3),
      0 0 52px rgba(250, 204, 21, 0.18);
  }
}
.cover-badge {
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: 4;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #020617;
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}
.cover-badge svg,
.store svg,
.media-chip svg,
.icon-btn svg,
.mini-icon svg,
.ghost-icon svg,
.text-icon svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
}
.store:first-child svg {
  width: 32px;
  height: 32px;
  overflow: visible;
}
.cover-badge svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.live-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.live-chip {
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.22);
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.stream-label {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.9rem;
}
.track-title { font-size: clamp(1.85rem, 3.7vw, 3.25rem); font-weight: 900; line-height: 1.02; margin-bottom: 8px; }
.track-artist { color: var(--muted); font-size: clamp(1rem, 1.55vw, 1.3rem); margin-bottom: 22px; font-weight: 700; }
.search-links { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 22px; }
.search-links > span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0;
  font-weight: 900;
  margin-right: 4px;
}
.media-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.76rem;
  border: 1px solid currentColor;
  background: rgba(255,255,255,0.08);
}
.media-chip.spotify { color: #22c55e; background: rgba(34, 197, 94, 0.12); }
.media-chip.apple { color: #ff3b55; background: rgba(255, 59, 85, 0.12); }
.media-chip.youtube { color: #ff2b2b; background: rgba(255, 43, 43, 0.12); }
.media-chip.apple svg {
  width: 13px;
  height: 13px;
  overflow: visible;
}
.media-chip.spotify:hover { background: #22c55e; color: #06101b; }
.media-chip.apple:hover { background: #ff3b55; color: #fff; }
.media-chip.youtube:hover { background: #ff2b2b; color: #fff; }
.notice {
  display: none;
  color: #ff8585;
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 800;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(248, 113, 113, 0.42);
  border-radius: 8px;
  background: rgba(127, 29, 29, 0.24);
}
.notice:not(:empty) { display: block; }
.controls { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 26px; }
.icon-btn,
.mini-icon,
.ghost-icon,
.text-icon {
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.icon-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  border: 0;
  color: #020617;
  box-shadow: 0 18px 42px rgba(0,0,0,0.25), 0 0 28px rgba(250, 204, 21, 0.18);
}
.icon-btn.primary.playing {
  background: var(--yellow);
  color: #020617;
  box-shadow: 0 16px 44px rgba(250, 204, 21, 0.25);
}
.icon-btn svg { width: 34px; height: 34px; }
.icon-pause { display: none; }
.playing .icon-play { display: none; }
.playing .icon-pause { display: block; }
.icon-btn:hover,
.ghost-icon:hover,
.text-icon:hover { transform: translateY(-1px); }
.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 46px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
}
.mini-icon {
  width: 34px;
  height: 34px;
  background: transparent;
  color: #e2e8f0;
}
.mini-icon .icon-volume {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-muted { display: none; }
.mini-icon .icon-muted {
  width: 32px;
  height: 32px;
  min-width: 32px;
  fill: currentColor;
}
.muted-audio .icon-volume { display: none; }
.muted-audio .icon-muted { display: block; }
.volume {
  width: 110px;
  height: 5px;
  accent-color: var(--yellow);
}
.ghost-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  color: #a8b5c8;
}
.ghost-icon svg,
.text-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.text-icon {
  min-height: 46px;
  padding: 0 16px;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07);
  color: #cbd5e1;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.stream-state { display: flex; align-items: center; gap: 16px; color: var(--muted); text-transform: uppercase; font-weight: 900; letter-spacing: 0; }
.sound-bars { display: flex; align-items: end; gap: 5px; height: 34px; }
.sound-bars span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow), var(--blue));
}
.is-playing .sound-bars span { animation: sound-bar 0.8s ease-in-out infinite; }
.is-playing .sound-bars span:nth-child(2) { animation-delay: 0.1s; }
.is-playing .sound-bars span:nth-child(3) { animation-delay: 0.2s; }
.is-playing .sound-bars span:nth-child(4) { animation-delay: 0.3s; }
.is-playing .sound-bars span:nth-child(5) { animation-delay: 0.4s; }
.is-playing .sound-bars span:nth-child(6) { animation-delay: 0.5s; }
.is-playing .sound-bars span:nth-child(7) { animation-delay: 0.6s; }
.is-playing .sound-bars span:nth-child(8) { animation-delay: 0.7s; }
@keyframes sound-bar {
  0%, 100% { height: 5px; }
  50% { height: 28px; }
}

.app-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.desktop-apps { margin: 28px 0 0; }
.mobile-apps { display: none; }
.store {
  min-width: 250px;
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 20px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.1);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}
.store:hover {
  transform: scale(1.045);
  background: rgba(255,255,255,0.17);
  border-color: rgba(255,255,255,0.38);
  box-shadow: 0 0 30px rgba(255,255,255,0.12), 0 18px 46px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.16);
}
.store[data-store="ios"]:hover { box-shadow: 0 0 32px rgba(255,255,255,0.16), 0 18px 46px rgba(0,0,0,0.26); }
.store[data-store="android"]:hover { box-shadow: 0 0 34px rgba(76, 175, 80, 0.22), 0 18px 46px rgba(0,0,0,0.26); }
.store svg { width: 38px; height: 38px; }
.store span { display: grid; text-align: left; font-size: 1.45rem; line-height: 1.05; }
.store small { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; margin-bottom: 4px; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--panel-strong);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover { filter: brightness(1.08); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 44px 0 66px; }
.stat, .card, .section {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  backdrop-filter: blur(14px);
}
.stat { padding: 34px 16px 32px; text-align: center; min-height: 150px; }
.stat-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat strong { display: block; font-size: 2rem; line-height: 1; }
.stat span { color: var(--muted); font-size: 0.95rem; font-weight: 700; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 32px 0; }
.card { padding: 36px; }
.card h2 { font-size: 1.36rem; margin: 0; font-weight: 650; line-height: 1.12; }
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.section-heading em {
  margin-left: auto;
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
  font-size: 0.86rem;
  line-height: 1.35;
}
.heading-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
}
.heading-icon.blue { background: rgba(59, 130, 246, 0.18); color: #60a5fa; }
.heading-icon.yellow { background: rgba(250, 204, 21, 0.18); color: var(--yellow); }
.heading-icon svg,
.time svg,
.ytm-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.track-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.track-row:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.08);
}
.thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; background: #111827; box-shadow: 0 12px 26px rgba(0,0,0,0.24); }
.track-meta { min-width: 0; }
.track-meta strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  transition: color 0.18s ease;
}
.track-row:hover .track-meta strong { color: var(--yellow); }
.track-meta .small { font-size: 0.9rem; font-weight: 650; margin-top: 5px; }
.track-side {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: #7d8ba3;
  white-space: nowrap;
}
.ytm-link {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #ff3030;
  opacity: 0;
  transition: opacity 0.18s ease, color 0.18s ease;
}
.track-row:hover .ytm-link { opacity: 1; }
.ytm-link:hover { color: #fff; }
.ytm-link svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

.schedule-heading {
  align-items: center;
  display: grid;
  grid-template-columns: 46px minmax(0, max-content) 1fr;
  column-gap: 16px;
}
.schedule-heading h2 {
  white-space: nowrap;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}
.schedule-heading em {
  justify-self: end;
  white-space: nowrap;
}
.schedule-list { gap: 18px; }
.schedule-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  transition: background 0.18s ease;
}
.schedule-list li:hover { background: rgba(255,255,255,0.085); }
.time {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--yellow);
  font-weight: 900;
}
.time svg { width: 18px; height: 18px; }
.schedule-list b {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  transition: color 0.18s ease;
}
.schedule-list li:hover b { color: var(--yellow); }
.schedule-list small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  margin-top: 5px;
}

.vote-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vote-option { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.05); padding: 16px; }
.vote-option { width: 100%; color: inherit; cursor: pointer; text-align: left; }
.vote-option[disabled] { cursor: default; opacity: 0.85; }
.vote-percent { color: var(--yellow); font-weight: 850; float: right; }

.about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: center; margin: 52px 0; padding: 36px; }
.about p { color: var(--muted); line-height: 1.72; font-size: 1.04rem; }
.about .about-lead { color: #cbd5e1; font-size: 1.12rem; font-weight: 650; margin-bottom: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.08); color: #dbe4f0; font-weight: 750; }
.about-image { position: relative; border-radius: 24px; overflow: visible; aspect-ratio: 1; }
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; border: 1px solid var(--line); }
.days-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  min-width: 122px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.28);
}
.days-badge strong {
  display: block;
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
}
.days-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 5px;
}

.top-page {
  background:
    radial-gradient(circle at 50% 12%, rgba(250, 204, 21, 0.08), transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(96, 165, 250, 0.07), transparent 36%),
    #0b111a;
}
.top-nav {
  background: rgba(11, 17, 26, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-nav .nav-inner { max-width: 1120px; }
.top-nav .brand { font-size: 1.05rem; }
.top-nav .logo { width: 40px; height: 40px; border-radius: 12px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
  color: #e5edf7;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.back-link:hover { transform: translateY(-1px); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.back-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.top-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 50px;
  text-align: center;
}
.top-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -90px;
  width: 430px;
  height: 430px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.1);
  filter: blur(110px);
  pointer-events: none;
}
.top-hero .container { position: relative; z-index: 1; }
.top-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.55rem, 7vw, 4.9rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}
.top-hero .lead {
  max-width: 680px;
  margin-bottom: 0;
  color: #9aa7bc;
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.65;
}
.top-main { max-width: 1040px; padding-bottom: 40px; }
.podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
  margin: 4px 0 56px;
}
.podium-card,
.top-row,
.top-loading,
.top-empty {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}
.podium-card {
  position: relative;
  min-height: 214px;
  padding: 34px 24px 24px;
  border-radius: 24px;
  text-align: center;
}
.podium-gold {
  z-index: 2;
  min-height: 260px;
  padding-top: 42px;
  border-top: 4px solid var(--yellow);
  box-shadow: 0 0 50px rgba(250, 204, 21, 0.14);
}
.podium-silver { transform: translateY(32px); border-top: 4px solid #cbd5e1; }
.podium-bronze { transform: translateY(46px); border-top: 4px solid #cd7f32; }
.podium-rank {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid #0b111a;
  color: #07101b;
  font-weight: 950;
  background: #cbd5e1;
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}
.podium-gold .podium-rank { width: 50px; height: 50px; background: var(--yellow); font-size: 1.2rem; }
.podium-bronze .podium-rank { background: #cd7f32; color: #fff; }
.podium-crown { width: 34px; height: 34px; margin: 0 auto 14px; color: var(--yellow); }
.podium-card svg,
.top-links svg,
.row-likes svg,
.like-pill svg,
.top-loading svg,
.top-empty svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.podium-crown svg { width: 34px; height: 34px; }
.podium-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.18;
  font-weight: 850;
}
.podium-gold h2 { font-size: 1.45rem; font-weight: 950; }
.podium-card p {
  margin: 0 0 18px;
  color: #a7b0c0;
  font-size: 0.92rem;
  font-weight: 650;
}
.podium-gold p { color: #cbd5e1; font-size: 1rem; }
.like-pill,
.row-likes {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border-radius: 999px;
  font-weight: 850;
}
.like-pill { padding: 7px 13px; font-size: 0.86rem; }
.podium-gold .like-pill { color: var(--yellow); background: rgba(250, 204, 21, 0.11); font-size: 0.95rem; }
.podium-silver .like-pill { color: #cbd5e1; background: rgba(203, 213, 225, 0.11); }
.podium-bronze .like-pill { color: #cd7f32; background: rgba(205, 127, 50, 0.12); }
.like-pill svg,
.row-likes svg { fill: currentColor; stroke: none; }
.top-list { display: grid; gap: 12px; }
.top-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 18px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.top-row:hover { transform: translateY(-1px); background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.16); }
.top-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.055);
  color: #97a5ba;
  font-size: 0.86rem;
  font-weight: 850;
}
.top-track { min-width: 0; }
.top-track h2 {
  margin: 0 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 850;
  transition: color 0.18s ease;
}
.top-row:hover .top-track h2 { color: var(--yellow); }
.top-track p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #9aa7bc;
  font-size: 0.9rem;
  font-weight: 600;
}
.top-actions { display: inline-flex; align-items: center; gap: 24px; }
.top-links { display: inline-flex; gap: 14px; }
.top-links a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #728096;
  transition: color 0.18s ease, transform 0.18s ease;
}
.top-links a:hover { transform: translateY(-1px); }
.top-links .apple-link:hover { color: #fa243c; }
.top-links .youtube-link:hover { color: #ff2020; }
.top-links .youtube-link svg { fill: currentColor; stroke: none; }
.row-likes { padding: 6px 11px; font-size: 0.78rem; white-space: nowrap; }
.top-loading,
.top-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 36px;
  border-radius: 26px;
  text-align: center;
  color: #98a5b8;
  font-weight: 700;
}
.top-loading svg { width: 48px; height: 48px; color: var(--yellow); animation: spin 1s linear infinite; }
.top-empty svg { width: 48px; height: 48px; color: #64748b; }
.top-empty p,
.top-loading p { margin: 0; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

.footer { border-top: 1px solid var(--line); margin-top: 72px; padding: 64px 0 28px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; }
.footer h2 { font-size: 1.55rem; margin: 0; }
.footer h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer p { margin: 0 0 12px; line-height: 1.65; }
.footer a { color: var(--muted); transition: color 0.18s ease; }
.footer a:hover,
.footer .accent-link { color: var(--yellow); }
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand > p { max-width: 420px; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.86rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { text-align: center; }
.social-links { display: flex; justify-content: flex-end; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}
.social-links a:hover { background: var(--yellow); color: #020617; }
.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero { padding: 48px 0 28px; text-align: center; }
.rank { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.09); font-weight: 900; }
.legal { max-width: 860px; padding: 36px; line-height: 1.72; }
.legal h2 { font-size: 1.3rem; margin-top: 28px; }
.legal-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(250, 204, 21, 0.08), transparent 32%),
    radial-gradient(circle at 14% 82%, rgba(96, 165, 250, 0.06), transparent 34%),
    #0b111a;
}
.legal-nav {
  background: rgba(11, 17, 26, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.legal-main {
  max-width: 920px;
  padding-top: 92px;
}
.legal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  line-height: 1.74;
}
.legal-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.06);
  filter: blur(70px);
  pointer-events: none;
}
.legal-card h1 {
  position: relative;
  margin: 0 0 36px;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 1.05;
  font-weight: 900;
}
.legal-card section {
  position: relative;
  margin-top: 30px;
}
.legal-card section:first-of-type { margin-top: 0; }
.legal-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 850;
}
.legal-card p {
  margin: 0 0 12px;
  color: #c5cfdf;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a {
  color: var(--yellow);
  font-weight: 750;
}
.legal-card a:hover { text-decoration: underline; }
.legal-card ul {
  margin: 12px 0 14px 20px;
  padding: 0;
  color: #c5cfdf;
}
.legal-card li { margin: 5px 0; }

.apps-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(250, 204, 21, 0.13), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(96, 165, 250, 0.16), transparent 34rem),
    radial-gradient(circle at 50% 78%, rgba(20, 184, 166, 0.08), transparent 34rem),
    #0b111a;
}
.apps-hero { padding: 72px 0 54px; overflow: hidden; }
.apps-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 54px;
  align-items: center;
}
.apps-hero-copy { min-width: 0; }
.apps-hero h1 {
  max-width: 780px;
  margin: 22px 0 20px;
  font-size: clamp(2.65rem, 6.8vw, 5.9rem);
}
.apps-hero .lead {
  max-width: 760px;
  margin-left: 0;
  font-size: 1.08rem;
}
.apps-hero-buttons { justify-content: flex-start; }
.apps-device {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}
.apps-device::before {
  content: "";
  position: absolute;
  width: min(78%, 360px);
  aspect-ratio: 9 / 18.5;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
    #101826;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 42px 120px rgba(0,0,0,0.35);
  transform: rotate(4deg) translate(22px, 10px);
}
.apps-device::after {
  content: "";
  position: absolute;
  width: min(66%, 310px);
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.28), rgba(59, 130, 246, 0.2));
  filter: blur(40px);
  opacity: 0.38;
}
.apps-device-screen {
  position: relative;
  z-index: 1;
  width: min(72%, 330px);
  aspect-ratio: 9 / 18.5;
  object-fit: cover;
  object-position: center top;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #08111f;
  box-shadow:
    0 28px 80px rgba(0,0,0,0.44),
    0 0 0 10px rgba(2, 6, 23, 0.34);
}
.apps-main { display: grid; gap: 52px; }
.apps-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.app-platform {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(14px);
}
.platform-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.platform-head img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}
.platform-label {
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.platform-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.08;
}
.platform-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}
.platform-facts span {
  min-height: 74px;
  padding: 13px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.platform-facts strong {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.1;
}
.feature-list {
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #c5cfdf;
  line-height: 1.55;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #60a5fa);
}
.platform-cta { width: 100%; justify-content: center; background: var(--yellow); color: #020617; }
.apps-benefits {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
}
.apps-benefits .section-heading { align-items: flex-start; }
.apps-benefits .section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
}
.apps-benefits .section-heading p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.benefit-grid div {
  min-height: 126px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}
.benefit-grid strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.02rem;
}
.benefit-grid span { color: var(--muted); line-height: 1.5; }
.apps-shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.apps-shots img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 72px rgba(0,0,0,0.28);
}

.modal { position: fixed; inset: 0; z-index: 40; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,0.72); }
.modal.open { display: grid; }
.modal-panel { width: min(680px, 100%); max-height: 82vh; overflow: auto; padding: 24px; border-radius: 24px; border: 1px solid var(--line); background: #101826; }
.modal-close { float: right; }

@media (max-width: 820px) {
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { flex-wrap: wrap; }
  .player, .about, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .apps-hero-grid,
  .apps-platforms,
  .benefit-grid,
  .apps-shots { grid-template-columns: 1fr; }
  .apps-hero { padding-top: 52px; }
  .apps-hero-buttons { justify-content: center; }
  .apps-device { min-height: 560px; }
  .player { text-align: center; padding: 28px; margin-top: 44px; }
  .cover-wrap { max-width: 230px; }
  .live-row, .search-links, .controls, .stream-state, .section-heading { justify-content: center; }
  .desktop-apps { display: none; }
  .mobile-apps { display: flex; }
  .schedule-heading { flex-wrap: wrap; }
  .schedule-heading {
    display: flex;
    flex-wrap: wrap;
  }
  .schedule-heading em {
    width: 100%;
    margin-left: 0;
    text-align: center;
    white-space: normal;
  }
  .stats, .vote-options { grid-template-columns: 1fr 1fr; }
  .top-nav .nav-inner { flex-direction: row; align-items: center; }
  .top-hero { padding: 58px 0 42px; }
  .podium {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
  .podium-card,
  .podium-gold {
    min-height: 0;
  }
  .podium-silver,
  .podium-bronze {
    transform: none;
  }
  .podium-gold { order: 1; }
  .podium-silver { order: 2; }
  .podium-bronze { order: 3; }
  .footer { text-align: center; }
  .footer-logo-row { justify-content: center; }
  .footer-brand > p { margin-left: auto; margin-right: auto; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p:first-child { order: 1; }
  .footer-bottom p:nth-child(2) { order: 2; }
  .social-links { order: 3; justify-content: center; }
}

@media (max-width: 560px) {
  .stats, .vote-options { grid-template-columns: 1fr; }
  .top-nav .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-nav .nav-links { width: 100%; }
  .back-link { width: 100%; justify-content: center; }
  .top-row {
    grid-template-columns: 34px 1fr;
    align-items: start;
  }
  .top-actions {
    grid-column: 2;
    width: 100%;
    justify-content: space-between;
  }
  .track-row > :last-child { grid-column: 2; justify-self: start; }
  .track-row { grid-template-columns: 52px 1fr; }
  .track-side { grid-column: 2; grid-template-columns: auto auto; justify-content: space-between; justify-items: start; }
  .player { width: min(100%, calc(100vw - 24px)); padding: 22px; }
  .apps-hero h1 { font-size: 2.55rem; }
  .apps-device { min-height: 510px; }
  .apps-device::before { width: min(82%, 320px); }
  .apps-device-screen { width: min(76%, 300px); }
  .platform-facts { grid-template-columns: 1fr; }
  .app-platform,
  .apps-benefits { padding: 22px; }
  .track-title { font-size: 1.8rem; }
  .volume-control { padding: 0 14px; }
  .volume { width: 104px; }
  .store { width: 100%; min-width: 0; }
}
