/* Minimal, fast, SEO-friendly layout. No external deps. */
:root{
  --bg:#0b0d10;
  --bg2:#0f1217;
  --card:#141922;
  --card2:#12161f;
  --text:#e9eef7;
  --muted:#aab4c4;
  --accent:#0a84ff;
  --green:#22c55e;
  --orange:#f59e0b;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --radius:14px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1000px 600px at 60% -10%, rgba(10,132,255,.18), transparent 60%),
              radial-gradient(900px 520px at 20% 0%, rgba(34,197,94,.12), transparent 60%),
              var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 16px}
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border:1px solid rgba(255,255,255,.2); border-radius:10px; z-index:9999}
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,13,16,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header__bar{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0}
.brand{display:flex; align-items:center; gap:10px; min-width:140px}
.brand__logo{height:28px; width:auto}
.nav{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  color: var(--text);
  font-size: 13px;
}
.nav a:hover{background:rgba(255,255,255,.06)}
.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  user-select:none;
}
.btn--green{background:rgba(34,197,94,.92); color:#06150b; border-color: rgba(34,197,94,.25)}
.btn--dark{background:rgba(255,255,255,.06)}
.btn--blue{background:rgba(10,132,255,.92); color:#06101b; border-color: rgba(10,132,255,.3)}
.btn--wide{width:100%}
.badgebar{
  margin:12px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding:10px 12px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.badgebar__left{display:flex; align-items:center; gap:10px; min-width:0}
.badgebar__avatar{
  width:34px; height:34px; border-radius:10px; overflow:hidden;
  box-shadow: var(--shadow);
  flex:0 0 auto;
}
.badgebar__email{white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-weight:700}
.badgebar__right{font-weight:800; opacity:.95}
.main{padding:18px 0 70px}
.h1{font-size: 22px; margin:12px 0 2px}
.sub{color:var(--muted); font-size:13px; margin:0 0 14px}
.hero{
  border-radius: var(--radius);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.hero__img{width:100%; aspect-ratio: 16/7; object-fit:cover}
.cta{
  margin:12px 0 18px;
}
.toc{
  margin:16px 0;
  padding:14px 14px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
}
.toc h2{margin:0 0 8px; font-size:18px}
.toc ul{margin:0; padding-left:18px; columns: 2; column-gap:24px}
.toc li{margin:6px 0; color: var(--muted)}
.toc a{color:var(--text)}
.toc a:hover{text-decoration:underline}
.scroller{
  display:flex; gap:12px;
  overflow:auto;
  padding:10px 2px 14px;
  scroll-snap-type:x mandatory;
}
.scroller::-webkit-scrollbar{height:10px}
.scroller::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12); border-radius:999px}
.mini-card{
  flex:0 0 200px;
  scroll-snap-align:start;
  border-radius: 14px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  padding:10px;
}
.mini-card img{border-radius:12px; background:#000}
.mini-card__t{margin:8px 0 0; font-size:13px; color: var(--muted)}
.promo{
  margin: 12px 0 18px;
  border-radius: 18px;
  padding:14px;
  background: linear-gradient(90deg, rgba(245,158,11,.95), rgba(245,158,11,.65));
  color:#1b1100;
  border:1px solid rgba(0,0,0,.12);
  display:flex; gap:14px; align-items:stretch; justify-content:space-between;
}
.promo__left{display:flex; flex-direction:column; gap:8px}
.promo__h{font-weight:900; font-size:18px}
.promo__steps{display:grid; gap:10px; margin-top:4px}
.step{display:flex; gap:10px; align-items:flex-start}
.step__n{width:26px; height:26px; border-radius:999px; background:rgba(255,255,255,.55); display:flex; align-items:center; justify-content:center; font-weight:900}
.step__t{font-weight:700}
.promo__right{display:flex; align-items:center}
.promo__btn{
  background:#fff;
  border:0;
  padding:12px 14px;
  border-radius: 14px;
  font-weight:900;
}
.section{margin: 18px 0}
.section__title{display:flex; align-items:center; gap:10px; margin: 0 0 10px; font-size:18px}
.grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}
.game{
  border-radius: 14px;
  overflow:hidden;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
}
.game img{aspect-ratio: 1/1; object-fit:cover}
.game__cap{padding:10px}
.game__name{margin:0; font-weight:800; font-size:13px}
.game__meta{margin:4px 0 0; color:var(--muted); font-size:12px}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.table th, .table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.06);
  vertical-align:top;
}
.table th{color:var(--muted); font-weight:700; width:44%}
.table tr:last-child th, .table tr:last-child td{border-bottom:0}
.article-card{
  margin:14px 0 22px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.article-card__img{width:100%; aspect-ratio: 16/6; object-fit:cover; background:#000}
.article-card__body{padding:14px 14px 6px}
.article-card h2{margin:0 0 8px; font-size:18px}
.article-card p{margin:0 0 10px; color: rgba(233,238,247,.92)}
.article-card__cta{padding:0 14px 14px}
.bluebar{
  margin:12px 0 0;
  background: rgba(10,132,255,.92);
  border-radius: 14px;
  padding:12px 14px;
  font-weight:900;
  text-align:center;
  color:#06101b;
}
.footer{
  padding:26px 0 90px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.footer small{color:var(--muted)}
.bottomnav{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  background: rgba(11,13,16,.88);
  backdrop-filter: blur(12px);
  border-top:1px solid rgba(255,255,255,.08);
  display:none;
}
.bottomnav__bar{
  display:flex; justify-content:space-around; gap:8px;
  padding:10px 8px;
}
.bottomnav a{
  display:flex; flex-direction:column; align-items:center; gap:4px;
  font-size:11px; color: var(--muted);
}
.bottomnav a span{font-size:18px; line-height:1}
.bottomnav a.is-active{color: var(--text)}
/* responsive */
@media (max-width: 1020px){
  .grid{grid-template-columns: repeat(4, 1fr)}
}
@media (max-width: 720px){
  .nav{display:none}
  .badgebar{border-radius:18px}
  .toc ul{columns:1}
  .grid{grid-template-columns: repeat(3, 1fr)}
  .promo{flex-direction:column}
  .promo__right{justify-content:stretch}
  .promo__btn{width:100%}
  .footer__grid{grid-template-columns:1fr}
  .bottomnav{display:block}
  .main{padding-bottom:120px}
}
@media (max-width: 420px){
  .grid{grid-template-columns: repeat(2, 1fr)}
}
