:root{
  --bg0:#0a0f15;
  --bg1:#0b121a;
  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --text:#e9eef7;
  --muted: rgba(233,238,247,.68);
  --muted2: rgba(233,238,247,.48);
  --blue:#43a2ff;
  --blue2:#2f86ff;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 16px;
}

*{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 700px at 50% 20%, rgba(67,162,255,.20), transparent 60%),
    radial-gradient(900px 600px at 20% 70%, rgba(110,80,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit; text-decoration:none}
.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}

/* topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(8,12,18,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:64px;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand__logo{
  width:34px; height:34px; border-radius:10px;
  display:grid; place-items:center;
  background: radial-gradient(circle at 30% 30%, rgba(67,162,255,.45), rgba(67,162,255,.10));
  border: 1px solid rgba(67,162,255,.35);
  box-shadow: 0 12px 40px rgba(67,162,255,.18);
}
.brand__name{letter-spacing:.2px}
.brand--small .brand__logo{width:30px;height:30px;border-radius:9px}
.brand--small .brand__name{font-size:14px}

/* nav */
.nav__list{
  margin:0; padding:0; list-style:none;
  display:flex; align-items:center; gap:10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 10px;
}
.nav__link{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(233,238,247,.82);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.nav__link:hover{background: rgba(255,255,255,.06); transform: translateY(-1px)}
.nav__link.is-active{
  background: rgba(67,162,255,.18);
  border: 1px solid rgba(67,162,255,.32);
  color: #eaf3ff;
}
.nav__sep{
  width:1px; height:24px;
  background: rgba(255,255,255,.10);
  margin:0 6px;
}

/* burger (mobile) */
.burger{
  display:none;
  width:44px; height:44px; border-radius:12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.burger span{
  display:block; width:18px; height:2px; background: rgba(233,238,247,.82);
  margin:4px auto; border-radius:2px;
}

/* hero */
.hero{
  padding: 64px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:start;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.08;
  letter-spacing:-.6px;
}
.hero__subtitle{
  margin:0 0 20px;
  color: var(--muted);
  max-width: 58ch;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}
.hero__stats{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(233,238,247,.86);
}
.dot{width:10px;height:10px;border-radius:999px; display:inline-block}
.dot--green{background: #3cff85; box-shadow: 0 0 0 6px rgba(60,255,133,.10)}
.dot--blue{background: var(--blue); box-shadow: 0 0 0 6px rgba(67,162,255,.10)}

/* cards */
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card--glow{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-color: rgba(67,162,255,.22);
}
.card--glass{background: rgba(255,255,255,.03)}
.card__head{
  display:flex; gap:12px; align-items:center;
  padding: 16px 16px 10px;
}
.card__icon{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.card__title{font-weight:700}
.card__muted{color: var(--muted2); font-size:13px; margin-top:2px}
.card__body{padding: 0 16px 16px}

.mini-list{display:grid; gap:10px; margin: 10px 0 14px}
.mini-list__item{display:flex; gap:10px; align-items:center; color: rgba(233,238,247,.86)}
.mini-ico{
  width:18px; height:18px; border-radius:6px;
  display:grid; place-items:center;
  background: rgba(67,162,255,.18);
  border: 1px solid rgba(67,162,255,.25);
  color: #dff0ff;
  font-size:12px;
}
.hint{margin:10px 0 0; font-size:12px; color: var(--muted2)}

.mt16{margin-top:16px}
.w-full{width:100%}

/* buttons */
.btn{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(233,238,247,.92);
  padding: 12px 14px;
  border-radius: 12px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  font-weight:600;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}
.btn:active{transform: translateY(0px)}
.btn--primary{
  background: linear-gradient(180deg, rgba(67,162,255,.95), rgba(47,134,255,.85));
  border-color: rgba(67,162,255,.38);
  color: #08111b;
  box-shadow: 0 18px 50px rgba(67,162,255,.22);
}
.btn--primary:hover{box-shadow: 0 24px 70px rgba(67,162,255,.28)}
.btn--ghost{
  background: rgba(255,255,255,.03);
}

/* buys list */
.buys{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.buy{
  display:flex; justify-content:space-between; gap:10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.buy__left{display:flex; flex-direction:column; gap:2px}
.buy__who{font-weight:700; font-size:13px}
.buy__what{color: var(--muted2); font-size:12px}
.buy__tag{
  font-size:12px; font-weight:700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(67,162,255,.18);
  border: 1px solid rgba(67,162,255,.25);
  color: #dff0ff;
}

/* section */
.section{padding: 40px 0}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap}
.section__title{margin:0; font-size: 26px; letter-spacing:-.3px}
.section__muted{margin:0; color: var(--muted); font-size:13px}

.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.product:hover{
  transform: translateY(-2px);
  border-color: rgba(67,162,255,.22);
  background: rgba(255,255,255,.04);
}
.product__top{display:flex; justify-content:space-between; align-items:baseline}
.product__name{font-weight:900; font-size:18px}
.product__price{font-weight:900; font-size:20px; color: rgba(233,238,247,.92)}
.product__desc{margin-top:10px; color: var(--muted); font-size:13px}
.product__list{margin:10px 0 0; padding-left:18px; color: rgba(233,238,247,.86); font-size:13px}
.product__actions{display:flex; gap:10px; margin-top:14px}
.product__actions .btn{flex:1}

/* paper blocks */
.paper{
  margin-top: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  padding: 18px;
}
.rules{margin:0; padding-left:18px; color: rgba(233,238,247,.86)}
.link{display:inline-flex; margin-top:12px; color: rgba(67,162,255,.92); font-weight:700}
.link:hover{text-decoration:underline}

/* steps */
.steps{margin-top:18px; display:grid; gap:12px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.step__num{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(67,162,255,.18);
  border: 1px solid rgba(67,162,255,.25);
  font-weight:900;
}
.step__title{font-weight:900}
.step__text{color: var(--muted); margin-top:4px; font-size:13px}

/* anti-cheat */
.ac-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.ac-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px;
}
.ac-title{font-weight:900; margin-bottom:10px}
.ac-list{margin:0; padding-left:18px; color: rgba(233,238,247,.86)}
.ac-text{color: var(--muted); margin: 0 0 12px; font-size:13px}

/* footer */
.footer{
  padding: 26px 0 38px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer__muted{color: var(--muted2); font-size:12px; margin-top:6px}
.footer__right{display:flex; gap:12px; flex-wrap:wrap}
.footer__link{color: rgba(233,238,247,.75); font-weight:700; font-size:13px}
.footer__link:hover{color: #fff}

/* toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(10,15,21,.75);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(233,238,247,.92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  .grid{grid-template-columns: 1fr; }
  .ac-grid{grid-template-columns: 1fr; }
  .nav__list{gap:6px}
}
@media (max-width: 760px){
  .burger{display:block}
  .nav{
    position: absolute;
    left: 16px; right: 16px; top: 72px;
    display:none;
  }
  .nav.is-open{display:block}
  .nav__list{
    border-radius: 16px;
    padding: 10px;
    flex-direction:column;
    align-items:stretch;
  }
  .nav__sep{display:none}
  .nav__link{justify-content:flex-start}
}
/* Anti-cheat download button emphasis */
#ac-download .btn--primary,
#anticheat .btn--primary{
  font-weight: 800;
}
