:root {
  --bg: #120e08;
  --bg-soft: #1a140d;
  --panel: rgba(34, 25, 16, 0.88);
  --panel-strong: rgba(24, 18, 11, 0.96);
  --text: #fff7df;
  --muted: #e8d7a5;
  --gold: #f4b400;
  --gold-soft: #ffd76a;
  --border: rgba(255, 214, 106, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 215, 106, 0.10), transparent 24%),
    linear-gradient(180deg, #100c07 0%, #171009 52%, #110d08 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  z-index: 0;
}

.bg-glow-1 {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: -80px;
  left: -50px;
}

.bg-glow-2 {
  width: 320px;
  height: 320px;
  background: #ffedb0;
  right: -90px;
  bottom: 10%;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 72px 0 36px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero p,
.info-card p,
.message,
.footer p {
  color: var(--muted);
}

.hero p {
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 106, 0.35);
}

.btn--primary {
  background: linear-gradient(135deg, #f4b400, #ffcc57);
  color: #221708;
  border: none;
}

.btn--ghost,
.btn--small {
  backdrop-filter: blur(8px);
}

.btn--small {
  padding: 10px 14px;
}

.hero__card,
.player-shell,
.info-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__card {
  border-radius: 28px;
  padding: 24px;
}

.status-row,
.player-topbar,
.player-footer,
.section-head,
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.live-pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 199, 74, 0.1);
  border: 1px solid rgba(255, 214, 106, 0.18);
  color: #fff0be;
  font-size: 0.88rem;
  font-weight: 700;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 6px rgba(255, 77, 77, 0.12);
  animation: pulse 1.6s infinite;
}

.stream-state {
  font-size: 0.95rem;
  color: var(--muted);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.mini-stat {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 214, 106, 0.1);
  border-radius: 18px;
  padding: 16px;
}

.mini-stat strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 24px 0 34px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.player-shell {
  border-radius: 28px;
  overflow: hidden;
}

.player-topbar,
.player-footer {
  padding: 16px 18px;
  background: var(--panel-strong);
}

.player-title {
  font-weight: 700;
}

.player-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.video-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}

video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.video-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.viewer-note,
.stream-link {
  color: var(--muted);
}

.stream-link {
  text-decoration: none;
  white-space: nowrap;
}

.stream-link:hover {
  color: var(--gold-soft);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  border-radius: 24px;
  padding: 22px;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.footer {
  padding: 28px 0 36px;
}

.footer__inner {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.82; }
}

@media (max-width: 900px) {
  .hero__inner,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .player-topbar,
  .player-footer,
  .section-head,
  .footer__inner,
  .video-overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .stream-link {
    white-space: normal;
    word-break: break-all;
  }
}
