
:root {
  --bg: #07080c;
  --bg-2: #10131a;
  --card: #151922;
  --red: #e10600;
  --red-2: #ff2a1f;
  --gold: #d4af37;
  --text: #f4f5f7;
  --muted: #9aa3b2;
  --line: rgba(255,255,255,.08);
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(225,6,0,.22), transparent 55%),
    linear-gradient(180deg, transparent, var(--bg)),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(255,255,255,.015) 48px 49px);
}
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; position: relative; z-index: 1; }
.header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px); background: rgba(7,8,12,.78); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: Oswald, sans-serif; letter-spacing: .04em; }
.logo-mark { background: var(--red); color: #fff; font-weight: 700; font-size: 1.15rem; padding: .15em .4em; border-radius: 4px; }
.logo-text { font-weight: 600; font-size: 1.2rem; }
.logo-text .pl { color: var(--gold); margin-left: 4px; }
.nav { display: flex; gap: 22px; margin-left: auto; color: var(--muted); font-weight: 500; }
.nav a:hover { color: #fff; }
.header-cta { display: flex; gap: 10px; }
.burger { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 10px 18px; font-weight: 600; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: linear-gradient(180deg, var(--red-2), var(--red)); color: #fff; box-shadow: 0 8px 24px rgba(225,6,0,.35); }
.btn-ghost { border-color: var(--line); color: #fff; background: rgba(255,255,255,.04); }
.hero { padding: 48px 0 32px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
h1,h2,h3 { font-family: Oswald, sans-serif; line-height: 1.15; letter-spacing: .02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); text-transform: uppercase; margin-bottom: 16px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); text-transform: uppercase; margin-bottom: 14px; }
h3 { font-size: 1.2rem; color: var(--gold); margin: 20px 0 10px; }
.lead, p { color: var(--muted); margin-bottom: 14px; }
.hero-card { background: linear-gradient(180deg, #1b2030, var(--card)); border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.mini-games { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.game-art { height: 86px; border-radius: 10px; }
.g1 { background: linear-gradient(135deg, #3a0a0a, #e10600 60%, #111); }
.g2 { background: linear-gradient(135deg, #1a1030, #7b3cff 60%, #111); }
.g3 { background: linear-gradient(135deg, #2a2208, #d4af37 60%, #111); }
.g4 { background: linear-gradient(135deg, #062018, #1ec98a 60%, #111); }
.section { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.02), transparent); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.table-wrap { overflow-x: auto; margin: 16px 0; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #0c0f16; color: #fff; }
td:first-child { color: #fff; font-weight: 600; }
ol, ul { margin: 8px 0 16px 22px; color: var(--muted); }
li { margin: 8px 0; }
strong { color: #fff; }
.footer { border-top: 1px solid var(--line); padding: 40px 0 28px; color: var(--muted); }
.footer .logo { margin-bottom: 14px; }
.footer p { margin-bottom: 8px; }
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav.open, .header-cta.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #0c0f16; padding: 16px; border-bottom: 1px solid var(--line); }
  .header-cta.open { position: static; padding: 0 16px 16px; }
  .burger { display: flex; margin-left: auto; }
  .hero-grid, .split { grid-template-columns: 1fr; }
}
