:root {
  color-scheme: light;
  --ink: #17251c;
  --muted: #647066;
  --paper: #fbfbf3;
  --panel: #ffffff;
  --line: #d9dece;
  --forest: #163426;
  --forest-2: #27553b;
  --accent: #8c5e24;
  --accent-2: #d79b47;
  --moss: #dfe8cf;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(22, 52, 38, 0.14);
  font-family: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.5; }
a { color: inherit; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(222,216,206,.9); background: rgba(251,250,247,.94); backdrop-filter: blur(12px); }
.nav { width: min(1120px, calc(100% - 32px)); min-height: 68px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; letter-spacing: 0; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: var(--accent-2); font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border: 1px solid var(--forest); border-radius: var(--radius); background: var(--forest); color: #fff; text-decoration: none; font-weight: 750; }
.button.secondary { background: transparent; color: var(--forest); }
.hero { min-height: calc(100vh - 68px); display: grid; align-items: end; background: linear-gradient(90deg, rgba(9,31,21,.86), rgba(9,31,21,.32) 58%, rgba(9,31,21,.72)), url("assets/hero.jpg") center / cover; color: #fff; }
.hero-inner, .section-inner { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero-inner { padding: 72px 0 92px; }
.eyebrow { margin: 0 0 14px; color: var(--accent-2); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(42px, 8vw, 92px); line-height: .95; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1; margin-bottom: 16px; }
.lead { max-width: 620px; color: rgba(255,255,255,.84); font-size: 19px; }
.section-lead { max-width: 760px; color: var(--muted); font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.compliance-strip { background: var(--forest); color: #fff; border-top: 1px solid rgba(255,255,255,.14); }
.compliance-strip .section-inner { min-height: 84px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 20px; font-weight: 750; }
main section { padding: 72px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile { min-height: 210px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 24px; box-shadow: 0 10px 24px rgba(22,52,38,.05); }
.tile strong { display: block; margin-bottom: 10px; font-size: 18px; }
.tile p, .page-copy p, .page-copy li { color: var(--muted); }
.game-band { background: var(--moss); }
.game-preview { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.preview-frame { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #000; box-shadow: var(--shadow); }
.preview-frame img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.page-hero { padding: 76px 0 52px; background: radial-gradient(circle at 80% 20%, rgba(215,155,71,.32), transparent 32%), var(--forest); color: #fff; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.78); }
.game-shell { padding: 28px 0 72px; background: #0d2017; }
.game-shell .section-inner { width: min(1180px, calc(100% - 20px)); }
.game-frame { width: 100%; height: min(72vh, 760px); min-height: 520px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: #000; }
.launch-panel { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 28px; }
.launch-copy { color: #fff; }
.launch-copy p { color: rgba(255,255,255,.76); }
.launch-copy .button { background: var(--accent-2); border-color: var(--accent-2); color: #17251c; }
.page-copy { width: min(860px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0; }
.page-copy h2 { margin-top: 36px; font-size: 28px; }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); font-size: 14px; }
.footer-grid { width: min(1120px, calc(100% - 32px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-grid nav { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero { min-height: 680px; }
  .compliance-strip .section-inner, .grid, .game-preview, .launch-panel { grid-template-columns: 1fr; }
  .game-frame { min-height: 460px; }
}
