:root {
  --bg: #0f1020;
  --panel: #17182d;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --content-text: #1f2937;
  --content-muted: #4b5563;
  --accent: #ff7a3d;
  --accent-dark: #e85f20;
  --line: rgba(255, 255, 255, 0.14);
  --content-bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

.game-section {
  min-height: 400px;
  padding: 0 18px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.game-header {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.game-frame-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  flex: 1;
  min-height: 560px;
  overflow: hidden;
}

.game-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  background: #000;
}

.content-section {
  background: var(--content-bg);
  color: var(--content-text);
  padding: 56px 18px 72px;
}

.content {
  width: min(880px, 100%);
  margin: 0 auto;
}

.content h2 {
  margin: 42px 0 14px;
  color: #111827;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  margin: 28px 0 8px;
  color: #111827;
  font-size: 22px;
}

.content p,
.content li {
  color: var(--content-muted);
  font-size: 17px;
  line-height: 1.8;
}

.content p {
  margin: 0 0 16px;
}

.content ol,
.content ul {
  padding-left: 24px;
}

.content li {
  margin: 10px 0;
}

.content strong {
  color: #111827;
}

@media (max-width: 720px) {
  .game-section {
    min-height: auto;
    padding-top: 22px;
  }

  .game-frame-wrap,
  .game-frame-wrap iframe {
    min-height: 420px;
  }

  .content-section {
    padding-top: 44px;
  }
}