/* Twixos.com — licensed-operator site. Brand: competitive real-money gaming.
   Arena navy + royal blue + trophy gold. "Compete. Verify. Win." */
:root {
  --navy: #050F2E;
  --navy-2: #081A44;
  --surface: #0B2458;
  --surface-2: #0A163A;
  --blue: #1C6CFF;
  --blue-soft: #7DB5FF;
  --gold: #F5C84C;
  --green: #23D18B;
  --red: #FF3B4D;
  --text: #FFFFFF;
  --muted: #B9C7F2;
  --line: rgba(255,255,255,.08);
  --maxw: 1120px;
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
a { color: var(--blue-soft); text-decoration: none; }
a:hover { color: var(--gold); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.muted { color: var(--muted); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5,15,46,.72);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px; letter-spacing: -.03em; color: #fff; }
.brand .dot { width: 12px; height: 12px; border-radius: 3px; background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.age-chip {
  border: 1px solid var(--red); color: var(--red); border-radius: 999px;
  font-size: 12px; font-weight: 800; padding: 3px 9px;
}
@media (max-width: 720px){ .nav-links a:not(.age-chip){ display:none; } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 90px 0 80px; overflow: hidden; }
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(28,108,255,.28), transparent 60%),
    radial-gradient(700px 500px at 12% 20%, rgba(245,200,76,.10), transparent 55%);
  pointer-events:none;
}
.hero-grid { position:absolute; inset:0; opacity:.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 0%, #000 0%, transparent 62%);
}
.hero .wrap { position: relative; }
.hero h1 { font-size: clamp(42px, 8vw, 88px); }
.hero h1 .g { color: var(--gold); }
.hero p.lead { font-size: clamp(17px,2.4vw,21px); color: var(--muted); max-width: 560px; margin: 20px 0 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.trust {
  display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:#fff;
  background: rgba(255,255,255,.05); border:1px solid var(--line); padding:8px 13px; border-radius:999px;
}
.trust svg { width:15px; height:15px; }
.trust.gold { border-color: rgba(245,200,76,.4); }
.cta-row { display:flex; flex-wrap:wrap; gap:14px; }
.store-btn {
  display:flex; align-items:center; gap:11px; background:#fff; color:#08122e;
  padding:12px 20px; border-radius:14px; font-weight:700; transition:transform .15s ease;
}
.store-btn:hover { transform: translateY(-2px); color:#08122e; }
.store-btn small { display:block; font-size:10px; font-weight:600; opacity:.7; letter-spacing:.02em; }
.store-btn b { font-size:16px; font-family:'Space Grotesk'; }
.store-btn svg { width:24px; height:24px; }

/* ---------- steps ---------- */
section { padding: 68px 0; }
.section-head { text-align:center; max-width:640px; margin:0 auto 44px; }
.section-head h2 { font-size: clamp(28px,4.5vw,42px); margin-top:10px; }
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.step {
  background: linear-gradient(180deg, var(--surface), var(--navy-2));
  border:1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.step .n { font-family:'Space Grotesk'; font-size:14px; font-weight:700; color:var(--gold); letter-spacing:.1em; }
.step h3 { font-size:22px; margin:14px 0 8px; }
.step p { color:var(--muted); font-size:15px; }
@media (max-width:780px){ .steps{ grid-template-columns:1fr; } }

/* ---------- feature band ---------- */
.band { background: var(--surface-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.feature { text-align:center; }
.feature .k { font-family:'Space Grotesk'; font-size:34px; font-weight:700; color:#fff; }
.feature .l { color:var(--muted); font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
@media (max-width:780px){ .feature-grid{ grid-template-columns:repeat(2,1fr); gap:28px 18px; } }

/* ---------- responsible gaming callout ---------- */
.rg-card {
  background: linear-gradient(120deg, rgba(255,59,77,.10), rgba(11,36,88,.5));
  border:1px solid rgba(255,59,77,.28); border-radius: var(--radius); padding: 34px;
  display:flex; gap:26px; align-items:center; flex-wrap:wrap;
}
.rg-card .icon { font-size:40px; }
.rg-card h3 { font-size:24px; margin-bottom:8px; }
.rg-card p { color:var(--muted); max-width:640px; }

/* ---------- policy page ---------- */
.doc { padding: 56px 0 40px; }
.doc .wrap { max-width: 820px; }
.doc h1 { font-size: clamp(30px,5vw,46px); margin-bottom: 8px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 34px; }
.doc h2 { font-size: 22px; margin: 34px 0 12px; color:#fff; }
.doc p, .doc li { color: #d7e0f7; margin-bottom: 12px; }
.doc ul { padding-left: 22px; margin-bottom: 12px; }
.doc a { text-decoration: underline; }
.back { display:inline-block; margin-bottom:26px; color:var(--muted); font-size:14px; }

/* ---------- footer (mandatory compliance block) ---------- */
.footer { background: #030A20; border-top: 1px solid var(--line); padding: 54px 0 34px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 38px; }
.footer .brand { margin-bottom: 14px; }
.footer-col h4 { font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.footer-col a { display:block; color:var(--muted); font-size:14px; margin-bottom:10px; }
.footer-col a:hover { color:#fff; }
.seal-wrap { display:flex; align-items:flex-start; }
.legal {
  border-top:1px solid var(--line); padding-top:26px;
  display:flex; gap:26px; align-items:flex-start; flex-wrap:wrap; justify-content:space-between;
}
.legal .text { font-size:12.5px; color:#8ea0cf; max-width:760px; line-height:1.7; }
.legal .text b { color:#b9c7f2; }
.age-badge {
  flex:0 0 auto; width:52px; height:52px; border-radius:50%;
  border:2px solid var(--red); color:var(--red); display:flex; align-items:center; justify-content:center;
  font-family:'Space Grotesk'; font-weight:800; font-size:17px;
}
@media (max-width:780px){ .footer-top{ grid-template-columns:1fr; gap:26px; } }
