:root{
  --bg:#0B0D12;
  --panel:#12161F;
  --card:#171C26;
  --line:rgba(255,255,255,.09);
  --text:#E9EBF2;
  --muted:#A3AABC;
  --dim:#7C8497;

  --blue:#4A6CF7;
  --blue-soft:#7B93FF;
  --purple:#A855F7;
  --purple-soft:#D07BFF;
  --amber:#F0A030;

  --display:"Archivo","Helvetica Neue",Arial,sans-serif;
  --serif:"Lora",Georgia,"Times New Roman",serif;
  --body:"Inter","Helvetica Neue",Arial,sans-serif;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important}}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--body);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

a{color:var(--blue-soft)}
a:focus-visible{outline:2px solid var(--blue-soft);outline-offset:3px;border-radius:3px}

.wrap{width:100%;max-width:1060px;margin:0 auto;padding:0 28px}
.narrow{max-width:820px}

/* ---------- hero ---------- */

.hero{
  position:relative;
  min-height:520px;
  display:flex;
  flex-direction:column;
  /* SWAP: replace hero.jpg to change the banner. Gradient below is the fallback. */
  background:
    url('hero.jpg') center/cover no-repeat,
    linear-gradient(160deg,#141A2B 0%,#0C0F17 58%,#12101C 100%);
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(to bottom, rgba(11,13,18,.62) 0%, rgba(11,13,18,.30) 34%, rgba(11,13,18,.42) 62%, rgba(11,13,18,.88) 100%);
  pointer-events:none;
}
.hero > *{position:relative;z-index:1}

.hero.short{min-height:0}
.hero.short .hero-body{padding:46px 0 56px}
.hero.short .hero-body h1{font-size:clamp(30px,4.4vw,46px)}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px 0 0;
}

.wordmark{
  font-family:var(--display);
  font-weight:700;
  font-size:19px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
  text-decoration:none;
  line-height:1.2;
}

.topnav a{
  font-family:var(--display);
  font-size:13px;
  font-weight:600;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:rgba(255,255,255,.86);
  text-decoration:none;
  margin-left:26px;
}
.topnav a:hover{color:#fff}

.hero-body{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:70px 0 90px;
}
.hero-body h1{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(34px,6vw,62px);
  line-height:1.12;
  margin:0;
  color:#fff;
  text-shadow:0 2px 24px rgba(0,0,0,.5);
}

/* ---------- panel ---------- */

.panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:10px;
  padding:56px 52px 60px;
  margin:64px auto 80px;
}

.eyebrow{
  font-family:var(--display);
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--dim);
  margin:0 0 12px;
}

h2{
  font-family:var(--display);
  font-weight:700;
  font-size:31px;
  line-height:1.2;
  margin:0 0 16px;
  color:#fff;
}

h3{
  font-family:var(--display);
  font-weight:700;
  font-size:22px;
  margin:0 0 12px;
  color:#fff;
}

p{margin:0 0 16px;color:var(--muted)}
.panel > p{max-width:56ch}

/* ---------- game cards ---------- */

.games{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin:34px 0 28px;
}

.game{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:10px;
  padding:26px 26px 28px;
  position:relative;
  overflow:hidden;
}
.game::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:3px;
}
.game.blue::before{background:linear-gradient(90deg,var(--blue),#57C7E8)}
.game.purple::before{background:linear-gradient(90deg,var(--purple),#F062C0)}

.game .eyebrow{margin-bottom:10px}
.game.blue .eyebrow{color:var(--blue-soft)}
.game.purple .eyebrow{color:var(--purple-soft)}

.tags{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0 22px;padding:0;list-style:none}
.tags li{
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px 13px;
}

.btn{
  display:inline-block;
  font-family:var(--display);
  font-weight:600;
  font-size:15px;
  color:#fff;
  text-decoration:none;
  padding:12px 22px;
  border-radius:7px;
}
.btn.blue{background:var(--blue)}
.btn.blue:hover{background:#3D5CE0}
.btn.purple{background:var(--purple)}
.btn.purple:hover{background:#9440E0}

/* ---------- callout ---------- */

.callout{
  background:var(--card);
  border:1px solid var(--line);
  border-left:3px solid var(--amber);
  border-radius:8px;
  padding:20px 24px;
}
.callout p{margin:0;max-width:70ch}
.callout strong{color:var(--text)}

/* ---------- two-column bottom ---------- */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  margin-top:56px;
  padding-top:52px;
  border-top:1px solid var(--line);
}
.split h3{font-size:20px}

/* ---------- privacy body ---------- */

.doc h2{
  font-size:14px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--blue-soft);
  margin:40px 0 12px;
  padding-bottom:9px;
  border-bottom:1px solid var(--line);
}
.doc > h2:first-child{margin-top:0}
.doc ul{margin:0 0 18px;padding-left:22px;color:var(--muted)}
.doc li{margin-bottom:9px}
.doc strong{color:var(--text)}
.lede{font-size:19px;color:var(--text)}
.dateline{
  font-family:var(--display);
  font-size:12px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--dim);
  margin-bottom:30px;
}

/* ---------- footer ---------- */

.foot{
  border-top:1px solid var(--line);
  background:#090B0F;
  padding:30px 0 40px;
  font-size:14px;
  color:var(--dim);
}
.foot nav{margin-bottom:10px}
.foot nav a{color:var(--muted);text-decoration:none;margin-right:22px}
.foot nav a:hover{color:#fff}

/* ---------- responsive ---------- */

@media (max-width:820px){
  .games,.split{grid-template-columns:1fr}
  .panel{padding:36px 24px 40px;margin:36px auto 52px}
  .hero{min-height:400px}
  .hero-body{padding:48px 0 60px}
  .topbar{align-items:flex-start;gap:12px}
  .wordmark{font-size:13px;letter-spacing:.09em;max-width:60%}
  .topnav{display:flex;flex-shrink:0}
  .topnav a{margin-left:14px;font-size:11px}
  .wrap{padding:0 18px}
  h2{font-size:26px}
}
