:root {
  --bg: #0a0a0c;
  --panel: #131419;
  --panel-2: #1b1d24;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f4f6;
  --muted: #b9bec9;
  --accent: #c31924;
  --accent-soft: rgba(195, 25, 36, 0.18);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(195, 25, 36, 0.18), transparent 24%),
    linear-gradient(180deg, #060607 0%, #111217 100%);
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  padding: 14px 28px;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.club-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  flex: 0 0 auto;  
}

.brand-text {
  min-width: 0;
}

.brand-title {
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
}

.subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)), var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
}

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

h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
}

.status-pill {
  white-space: nowrap;
  background: var(--accent-soft);
  border: 1px solid rgba(195, 25, 36, 0.35);
  color: #ff8d95;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.stream-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(195, 25, 36, 0.55);
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.stream-frame > div {
  width: 100%;
  height: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.info-box {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.info-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.info-box strong {
  font-size: 1rem;
}

@media (max-width: 820px) {
  .topbar,
  .hero-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-wrap,
  .hero-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .club-logo {
    width: 56px;
    height: 56px;
  }

  .content {
    width: min(100% - 20px, 1180px);
    margin: 20px auto;
  }

  .hero-card {
    padding: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
