
:root{
  --bg:#f6f4ef;
  --card:#ffffff;
  --text:#111111;
  --muted:#66645f;
  --line:#dedbd3;
  --accent:#e02b2b;
  --max:980px;
}
*{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);
  background:var(--bg);
  line-height:1.65;
}
a{color:inherit}
.wrap{width:min(var(--max),calc(100% - 36px));margin:auto}
header{
  position:sticky;top:0;z-index:20;
  background:rgba(246,244,239,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(17,17,17,.08)
}
.nav{height:72px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;text-decoration:none}
.brand img{height:40px;width:auto;display:block}
.links{display:flex;gap:22px;align-items:center;font-size:14px}
.links a{text-decoration:none;color:#34332f}
.links a:hover{color:#000}
.hero{
  padding:92px 0 64px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:52px;
  align-items:center
}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:700;letter-spacing:.14em;text-transform:uppercase
}
.dot{width:9px;height:9px;background:var(--accent);border-radius:50%}
h1{font-size:clamp(44px,7vw,82px);line-height:.98;margin:18px 0 24px;letter-spacing:-.055em}
h2{font-size:clamp(30px,4vw,48px);line-height:1.08;letter-spacing:-.035em;margin:0 0 20px}
h3{font-size:20px;margin:34px 0 10px}
.lead{font-size:20px;color:var(--muted);max-width:680px}
.actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 20px;border-radius:999px;
  text-decoration:none;font-weight:700;border:1px solid #171717
}
.btn.primary{background:#171717;color:#fff}
.btn.secondary{background:transparent}
.game-card{
  background:#151515;color:white;border-radius:32px;padding:34px;
  min-height:380px;display:flex;flex-direction:column;justify-content:space-between;
  box-shadow:0 24px 70px rgba(0,0,0,.14)
}
.game-card .orb{
  width:120px;height:120px;border-radius:50%;border:2px solid #fff;
  display:grid;place-items:center;font-weight:800;font-size:20px;margin-left:auto
}
.game-card .orb span{width:18px;height:18px;background:var(--accent);border-radius:50%}
.game-card strong{font-size:32px;letter-spacing:-.04em}
.section{padding:72px 0}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--card);border:1px solid var(--line);border-radius:22px;padding:26px}
.card p{color:var(--muted);margin-bottom:0}
.pagehead{padding:72px 0 28px}
.prose{
  background:var(--card);border:1px solid var(--line);
  border-radius:24px;padding:clamp(24px,5vw,52px);margin-bottom:72px
}
.prose h2{font-size:28px;margin-top:42px}
.prose h3{font-size:19px}
.prose p,.prose li{color:#3f3e3a}
.prose ul{padding-left:22px}
.notice{
  border-left:4px solid var(--accent);
  background:#fbfaf7;padding:16px 18px;border-radius:8px;margin:24px 0
}
footer{border-top:1px solid var(--line);padding:30px 0 42px;color:var(--muted);font-size:14px}
.foot{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footnav{display:flex;gap:16px;flex-wrap:wrap}
@media(max-width:760px){
  .hero{grid-template-columns:1fr;padding-top:58px}
  .grid3{grid-template-columns:1fr}
  .links{gap:12px;font-size:13px}
  .brand img{height:32px}
}
