:root {
  --bg: #020A14;
  --bg-2: #061426;
  --gold: #F5C51B;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,.84);
  --line: rgba(245,197,27,.22);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245,197,27,.08), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}
.site-header {
  background: #061426;
  border-bottom: 1px solid var(--line);
  padding: 22px 16px;
}
.brand-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.brand-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  font-size: clamp(2rem, 5vw, 3rem);
}
.brand-arena, .brand-bet { color: #FFFFFF; }
.brand-four { color: var(--gold); }
.page-main {
  padding: 34px 16px 56px;
}
.content-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.content-card h1 {
  margin: 0 0 24px;
  color: var(--white);
  text-align: center;
  font-size: clamp(1.45rem, 3.5vw, 2.2rem);
  line-height: 1.2;
}
.copy {
  white-space: pre-wrap;
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .site-header { padding: 18px 12px; }
  .brand-wrap { gap: 10px; }
  .brand-icon { width: 48px; height: 48px; }
  .content-card { padding: 22px 16px; }
  .copy { font-size: .96rem; line-height: 1.68; }
}
