:root{
  --bg:#121316;
  --panel:#1a1c20;
  --panel2:#16181c;
  --line:#2a2e36;
  --text:#e9edf3;
  --muted:#a7afbb;
  --accent:#b8ff1a;
  --accent2:#9ad90c;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 14px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body.page{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 450px at 40% -10%, rgba(184,255,26,.10), transparent 55%),
    radial-gradient(800px 400px at 80% 10%, rgba(255,201,0,.08), transparent 50%),
    var(--bg);
  color:var(--text);
}

/* helpers */
.wrap{ max-width: 1180px; margin:0 auto; padding: 0 18px; }
.section{ padding: 26px 0; }
.section--tight{ padding: 12px 0 10px; }
.section--panel{ background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); }
.center{ text-align:center; }
a{ color:inherit; text-decoration:none; }
.link{ color: var(--text); opacity:.9; }
.link:hover{ opacity:1; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 700;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.26); }
.btn--primary{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color:#0b0d10;
  border-color: rgba(0,0,0,.25);
}
.btn--ghost{
  background: rgba(255,255,255,.03);
}
.btn--lg{ padding: 12px 18px; }

.kicker{
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.headline{
  margin: 10px 0 0;
  font-size: 28px;
  letter-spacing: .2px;
}

/* TOPBAR */
.topbar{
  position: sticky;
  top:0;
  z-index: 20;
  background: rgba(14,15,18,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
}

.brand__img{
  height: 34px;
  width: auto;
  display:block;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 4px;
}

.brand__name{
  letter-spacing:.2px;
}


.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.nav__link{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover{ color: var(--text); }
.nav__link.is-active{
  color:#0b0d10;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}

.topbar__right{
  display:flex; align-items:center; gap: 10px;
}
.lang{
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
  gap: 4px;
  cursor:pointer;
}
.dot{ width:10px; height:10px; border-radius: 999px; background: #ef4444; }
.dot--alt{ background:#3b82f6; }

/* HERO */
.hero{ padding: 10px 0 0; }
.hero__slides{
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__slide{
  display:none;
  background:
    radial-gradient(900px 450px at 20% 50%, rgba(0,0,0,.85), rgba(0,0,0,.55)),
    linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.25));
}
.hero__slide.is-active{ display:block; }

.hero__inner{
  min-height: 320px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 18px;
  padding: 24px 18px;
}
.hero__copy h1{
  margin: 0 0 10px;
  font-size: 40px;
  letter-spacing: .2px;
}
.hero__copy p{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}
.hero__cta{ display:flex; gap: 12px; flex-wrap:wrap; }

.hero__art{ display:flex; justify-content:flex-end; }

.hero__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: var(--text);
  display:grid; place-items:center;
  cursor:pointer;
  z-index: 3;
}
.hero__nav:hover{ border-color: rgba(255,255,255,.26); }
.hero__nav--prev{ left: 12px; }
.hero__nav--next{ right: 12px; }

.hero__dots{
  position:absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display:flex;
  gap: 8px;
  z-index: 3;
}
.dotbtn{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.dotbtn.is-active{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-color: rgba(0,0,0,.25);
}

.heroImg{
  width: 420px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: black;
}

.heroImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px){
  .heroImg{ width: 100%; height: 180px; }
}


/* PLACEHOLDERS */
.ph{
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.ph__label{
  position:absolute;
  inset: auto 12px 10px 12px;
  font-weight: 800;
  letter-spacing:.7px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.ph__shine{
  position:absolute;
  inset:-50% -20% auto auto;
  width: 240px;
  height: 240px;
  transform: rotate(25deg);
  background: radial-gradient(circle at 40% 40%, rgba(184,255,26,.28), transparent 55%);
  filter: blur(2px);
}
.ph--hero{ width: 420px; height: 220px; }
.ph--promo{ width: 100%; height: 64px; border-radius: 12px; }
.ph--game{ width: 140px; height: 160px; border-radius: 16px; }
.ph--tile{ width: 100%; height: 98px; border-radius: 16px; }

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__art{ justify-content:flex-start; }
  .ph--hero{ width: 100%; height: 180px; }
  .nav{ display:none; }
}

/* PROMO STRIP */
.promoStrip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items:stretch;
  position: relative;
}
.promoCard{
  display:flex;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .15s ease, border-color .15s ease;
}
.promoCard:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.14); }
.promoCard__meta{ display:flex; flex-direction:column; justify-content:center; }
.promoCard__title{ font-weight:800; font-size: 13px; }
.promoCard__sub{ color: var(--muted); font-size: 12px; margin-top: 3px; }
.promoStrip__more{
  position:absolute;
  right: 0;
  top: -26px;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 900px){
  .promoStrip{ grid-template-columns: repeat(2, 1fr); }
}

/* SECTION HEAD */
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.sectionHead h2{
  margin:0;
  font-size: 16px;
  color: rgba(255,255,255,.92);
  letter-spacing:.2px;
}
.sectionHead__link{ color: var(--muted); font-size: 12px; }
.sectionHead__link:hover{ color: var(--text); }

/* HORIZONTAL ROW */
.rowScroll{
  display:flex;
  gap: 12px;
  overflow:auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.rowScroll::-webkit-scrollbar{ height: 8px; }
.rowScroll::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius:999px; }

.gameCard{
  min-width: 150px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .15s ease, border-color .15s ease;
}
.gameCard:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.14); }
.gameCard__name{ margin-top: 8px; font-weight: 800; font-size: 12px; }
.gameCard__sub{ margin-top: 3px; color: var(--muted); font-size: 11px; }

/* TABS + GRID */
.tabs{
  display:flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  justify-content:flex-start;
  overflow:auto;
}
.tab{
  appearance:none;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 800;
  font-size: 12px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tab:hover{ color: var(--text); border-color: rgba(255,255,255,.18); }
.tab.is-active{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color:#0b0d10;
  border-color: rgba(0,0,0,.25);
}
.grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.tile{
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.tile:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.14); }
@media (max-width: 1100px){ .grid{ grid-template-columns: repeat(4, 1fr);} }
@media (max-width: 650px){ .grid{ grid-template-columns: repeat(2, 1fr);} }

/* STEPS */
.steps{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.step__icon{ font-size: 22px; }
.step__title{ margin-top: 10px; font-weight: 900; }
.step__desc{ margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.35; }
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps{ grid-template-columns: 1fr; } }

/* DEVICES */
.devices{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}
.device{
  width: 220px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  text-align:center;
  transition: transform .15s ease, border-color .15s ease;
}
.device:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.14); }
.device--active{
  border-color: rgba(184,255,26,.35);
  box-shadow: 0 14px 40px rgba(184,255,26,.08);
}
.device__icon{ font-size: 24px; }
.device__label{ margin-top: 10px; font-weight: 900; }
.badge{
  margin-top: 10px;
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(184,255,26,.15);
  border: 1px solid rgba(184,255,26,.22);
  color: var(--accent);
  font-weight: 900;
  font-size: 11px;
}

/* FOOTER */
.footer{
  margin-top: 22px;
  background: rgba(0,0,0,.28);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 26px 0;
  position: relative;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}
.footer__title{ font-weight: 900; margin-bottom: 10px; }
.footer__text{ color: var(--muted); font-size: 12px; line-height: 1.45; }
.footer__link{
  display:block;
  color: var(--muted);
  margin: 6px 0;
  font-size: 12px;
}
.footer__link:hover{ color: var(--text); }
.footer__chips{ margin-top: 10px; display:flex; gap: 8px; flex-wrap:wrap; }
.chip{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-weight: 900;
  font-size: 11px;
}
.pay{ display:flex; gap: 10px; }
.pay__icon{
  width: 36px; height: 36px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.toTop{
  width: 38px; height: 38px;
  border-radius: 999px;
  display:grid; place-items:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.chatFloat{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 52px; height: 52px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color:#0b0d10;
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: var(--shadow);
}
