:root {
  --bg: #0a0f1a;
  --bg-soft: #11192a;
  --card: rgba(15, 22, 36, 0.92);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #f3f6fb;
  --muted: #9ba8bd;
  --accent: #7dd3fc;
  --live: #ff5f7a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(125, 211, 252, 0.08), transparent 30%),
    linear-gradient(180deg, #0c1220 0%, var(--bg) 52%, #09101b 100%);
}

.page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-live {
  gap: 8px;
  border-color: rgba(255, 95, 122, 0.28);
  background: rgba(255, 95, 122, 0.12);
}

.badge-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 5px rgba(255, 95, 122, 0.14);
}

.stream-card {
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%), var(--card);
  box-shadow: var(--shadow);
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.card-head h2 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.card-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.stream-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}

.stream-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 18px, 1040px);
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .header,
  .card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .status {
    width: 100%;
  }

  .badge {
    width: 100%;
  }
}
