:root{
  --bg1:#070A12;
  --bg2:#0B1230;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, #1a3cff22, transparent 60%),
              radial-gradient(1000px 700px at 80% 20%, #00e5ff20, transparent 60%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.bg{min-height:100vh; position:relative; overflow:hidden}
.glow{
  position:absolute; filter: blur(60px); opacity:.55; pointer-events:none;
  width:420px; height:420px; border-radius:50%;
}
.g1{left:-120px; top:-140px; background:#00e5ff;}
.g2{right:-140px; top:40px; background:#7c4dff;}
.g3{left:35%; bottom:-200px; background:#ff3d7f;}

.topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 18px;
  max-width:1100px; margin:0 auto;
}
.brand{display:flex; gap:12px; align-items:center}
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #00e5ff, #7c4dff);
  font-weight:900; box-shadow: var(--shadow);
}
.brand-title{font-weight:900; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted2)}

.pill{
  font-size:12px; padding:10px 12px; border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.wrap{max-width:1100px; margin:0 auto; padding:0 18px 30px}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
  padding:10px 0 18px;
}

.hero h1{
  margin:12px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height:1.08;
}
.grad{
  background: linear-gradient(90deg, #00e5ff, #7c4dff, #ff3d7f);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{color:var(--muted); max-width:62ch; margin:0 0 16px}

.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 16px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  font-weight:700;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, #00e5ff, #7c4dff);
  color:#061018;
}
.btn.ghost{background: rgba(255,255,255,.04)}

.trust{display:flex; gap:14px; flex-wrap:wrap; margin-top:8px}
.trust-item{font-size:12px; color:var(--muted)}
.dot{
  width:8px; height:8px; border-radius:50%;
  display:inline-block; margin-right:6px;
  background: #2cffb6;
  box-shadow: 0 0 0 4px rgba(44,255,182,.16);
}

.preview-card{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
  padding:14px;
}
.preview-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:12px}
.badge{
  font-size:12px; font-weight:800;
  padding:8px 10px; border-radius:999px;
  background: rgba(0,229,255,.14);
  border:1px solid rgba(0,229,255,.25);
}
.mini{font-size:12px; color:var(--muted2)}
.preview-game{display:flex; gap:12px; align-items:center; padding:10px; border-radius:14px; background: rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.10)}
.preview-game img{width:56px; height:56px; border-radius:14px; object-fit:cover}
.p-title{font-weight:900}
.p-sub{font-size:12px; color:var(--muted2); margin-top:2px}
.preview-bar{display:flex; gap:8px; margin:12px 0 10px}
.bar{
  height:8px; flex:1; border-radius:999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}
.bar::after{
  content:"";
  display:block; height:100%; width:65%;
  background: linear-gradient(90deg, #00e5ff, #7c4dff);
  opacity:.8;
}
.preview-note{font-size:12px; color:var(--muted2)}

.section{padding:18px 0}
.section-head{margin-bottom:12px}
.section-head h2{margin:0 0 6px; font-size:22px}
.section-head p{margin:0; color:var(--muted); font-size:13px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}

.card{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, var(--card), var(--card2));
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.card-media{position:relative}
.card-media img{width:100%; height:190px; object-fit:cover}
.tag{
  position:absolute; left:12px; top:12px;
  font-size:11px; font-weight:900;
  padding:8px 10px; border-radius:999px;
  background: rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.card-body{padding:14px}
.card-body h3{margin:0 0 6px; font-size:18px}
.card-body p{margin:0 0 10px; color:var(--muted); font-size:13px; line-height:1.45}
.meta{display:flex; gap:10px; flex-wrap:wrap; margin:8px 0 12px}
.meta span{
  font-size:12px; color:var(--muted2);
  padding:6px 8px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.card-actions{display:flex; gap:10px; flex-wrap:wrap}

.how .how-box{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding:14px;
}
.how-box h2{margin:0 0 10px}
.how-box ol{margin:0; padding-left:18px; color:var(--muted)}
.how-box li{margin:6px 0}
.tiny{color:var(--muted2); font-size:12px; margin-top:10px}

.footer{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid rgba(255,255,255,.10);
  padding:14px 0 8px;
  color:var(--muted2);
  font-size:12px;
}
.footer-links{display:flex; gap:12px}
.footer a{opacity:.9}
.footer a:hover{opacity:1}

@media (max-width: 920px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
}
@media (max-width: 560px){
  .grid{grid-template-columns:1fr}
  .card-media img{height:200px}
  .topbar{padding:14px 14px}
  .wrap{padding:0 14px 26px}
}
