.hero-slider-wrap {
  padding: 18px 0 12px;
}

.hero-slider {
  height: 745px;
  min-height: 745px;
  position: relative;
  padding: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}

.slider-viewport {
  position: relative;
  width: 100%;
  height: 745px;
  min-height: 745px;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
  background: #000;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide picture,
.slide img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.slide-overlay { display: none; }

.slide-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 760px;
}

.slide-content h2 {
  margin: 10px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.06em;
  color: #fff;
  text-shadow: 0 6px 26px rgba(0,0,0,.35);
}

.slide-content p {
  margin: 12px 0 0;
  max-width: 58ch;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: 1rem;
  text-shadow: 0 4px 18px rgba(0,0,0,.28);
}

.slide-content .slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
.slider-arrow-left { left: 18px; }
.slider-arrow-right { right: 18px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: .25s ease;
  padding: 0;
}

.slider-dots button.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--red-2), var(--red));
  box-shadow: 0 0 18px var(--accent-glow);
}

.hero {
  padding: 14px 0 24px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.hero-stage {
  min-height: 560px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,46,46,.08), transparent 22%),
    radial-gradient(circle at 15% 100%, rgba(255,46,46,.11), transparent 26%);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  max-width: 820px;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.08em;
  max-width: 11ch;
}

.hero-copy h1 .light {
  color: rgba(255,255,255,.68);
  font-weight: 500;
}

.hero-copy p {
  margin: 0;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.broadcast-card {
  min-height: 560px;
  padding: 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,46,46,.12), transparent 24%),
    linear-gradient(180deg, rgba(4,10,18,.98), rgba(3,9,18,.96));
  position: relative;
}

.broadcast-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,8,14,.10), rgba(3,8,14,.32));
  z-index: 0;
}
.broadcast-card > * { position: relative; z-index: 1; }

.solo-player-wrap {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.album-orb {
  width: 182px;
  height: 182px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.08);
  background: #09111d;
  transition: transform .35s ease;
  will-change: transform;
}

.album-orb.is-playing {
  animation: spinCover 14s linear infinite;
}

.album-orb::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,46,46,.12);
  pointer-events: none;
}

.album-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-visualizer-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4px 0 2px;
}

.track-visualizer {
  width: min(100%, 260px);
  height: 72px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}

.track-visualizer span {
  display: block;
  width: 7px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(47,109,255,.9));
  box-shadow: 0 0 12px rgba(47,109,255,.28);
  transform-origin: bottom;
  animation: vizIdle 1.4s ease-in-out infinite;
  animation-play-state: paused;
}

.track-visualizer span:nth-child(1)  { animation-delay: .00s; }
.track-visualizer span:nth-child(2)  { animation-delay: .08s; }
.track-visualizer span:nth-child(3)  { animation-delay: .16s; }
.track-visualizer span:nth-child(4)  { animation-delay: .24s; }
.track-visualizer span:nth-child(5)  { animation-delay: .32s; }
.track-visualizer span:nth-child(6)  { animation-delay: .40s; }
.track-visualizer span:nth-child(7)  { animation-delay: .48s; }
.track-visualizer span:nth-child(8)  { animation-delay: .56s; }
.track-visualizer span:nth-child(9)  { animation-delay: .64s; }
.track-visualizer span:nth-child(10) { animation-delay: .72s; }
.track-visualizer span:nth-child(11) { animation-delay: .80s; }
.track-visualizer span:nth-child(12) { animation-delay: .88s; }
.track-visualizer span:nth-child(13) { animation-delay: .96s; }
.track-visualizer span:nth-child(14) { animation-delay: 1.04s; }
.track-visualizer span:nth-child(15) { animation-delay: 1.12s; }
.track-visualizer span:nth-child(16) { animation-delay: 1.20s; }

.track-visualizer.is-playing span {
  animation-play-state: running;
}

.player-console {
  width: 100%;
  background: linear-gradient(180deg, #050505, #090909);
  border-radius: 14px;
  padding: 14px 14px 10px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  text-align: left;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.console-time {
  font-size: .88rem;
  font-weight: 800;
  color: #fff;
  min-width: 68px;
}

.console-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

.console-volume input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  outline: none;
}

.console-volume input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8b8b8b;
  cursor: pointer;
  border: 0;
}

.console-volume input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8b8b8b;
  cursor: pointer;
  border: 0;
}

.live-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
  margin-bottom: 8px;
}

.live-progress-bar span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-2), var(--red));
  animation: livePulse 2.2s ease-in-out infinite;
}

.console-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 10px 0 12px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .94;
}

.icon-btn-main {
  width: 62px;
  height: 62px;
  background: #2f6dff;
  font-size: 1.5rem;
  box-shadow: 0 12px 26px rgba(47,109,255,.35);
}

.console-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: .84rem;
  color: #fff;
  padding-top: 2px;
  flex-wrap: wrap;
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.88);
}

.console-stat .icon {
  opacity: .9;
}

.video-live-wrap {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.video-live-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.video-live-head h2 {
  margin: 8px 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.05em;
}

.video-live-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.video-player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.video-badge-live {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255,46,46,.28);
}

.live-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255,46,46,.08), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.38));
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 4;
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: #fff;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--red-2), var(--red-dark));
  box-shadow: 0 22px 50px rgba(255,46,46,.32);
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-play-btn:hover {
  transform: scale(1.06);
}

.video-loader {
  position: absolute;
  bottom: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.18);
  border-top-color: #fff;
  animation: spinVideo 1s linear infinite;
  display: none;
}

.video-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.video-stats-embed {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.video-stats-frame {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  transition: filter .25s ease, background .25s ease;
}

.chat-section-wrap {
  padding: 6px 0 14px;
}

.chat-panel {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.chat-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.chat-panel-head h2 {
  margin: 8px 0 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: -.05em;
}

.chat-panel-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 68ch;
}

.chat-embed-shell {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.025));
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}

.chat-embed-shell iframe {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  justify-content: center;
}

.sponsor-tile {
  position: relative;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 12px;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
}

.sponsor-link {
  display: block;
  text-decoration: none;
}

.sponsor-media {
  width: 100%;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}

.sponsor-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 14px;
}

.sponsor-link:hover .sponsor-media {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.lower-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 20px;
}

.quote-card {
  position: relative;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 18px;
  min-height: 100%;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,46,46,.12), transparent 24%),
    rgba(255,255,255,.04);
}

.quote-card blockquote {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.06em;
  max-width: 12ch;
}

.quote-card cite {
  display: block;
  margin-top: 20px;
  color: var(--red-2);
  font-style: normal;
  font-weight: 800;
}

.map-card {
  position: relative;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 18px;
}

.map-card iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 24px;
  background: #101010;
}
