:root{
  --bg:#0e1420;--panel:#121a2a;--card:#182033;
  --text:#e8eef6;--muted:#a7b3c7;
  --accent:#4da3ff;--accent-2:#6bc2ff;--ok:#2ad16f;
  --radius:14px;--shadow:0 8px 24px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;scroll-behavior:smooth}
img{display:block;max-width:100%}

.container{width:100%;max-width:1200px;margin:0 auto;padding:0 16px}
@media(min-width:768px){.container{padding:0 24px}}
@media(min-width:1200px){.container{padding:0 32px}}

header{position:sticky;top:0;z-index:40;background:rgba(8,12,20,.75);backdrop-filter:saturate(150%) blur(8px);border-bottom:1px solid rgba(255,255,255,.06)}
.header-row{height:64px;display:flex;align-items:center;justify-content:space-between}
.logo-wrap{display:flex;align-items:center;gap:10px}
.logo-wrap img{width:36px;height:36px;border-radius:10px;background:#0b111b;padding:4px;border:1px solid rgba(255,255,255,.06)}
.brand{font-weight:800;letter-spacing:.2px;font-size:18px}
@media(min-width:992px){.brand{font-size:20px}}

.btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:12px;text-decoration:none;font-weight:700;font-size:14px;border:1px solid rgba(255,255,255,.08);background:#142033;color:var(--text)}
.btn.primary{background:linear-gradient(180deg,#59a9ff 0%,#2f80ff 100%);border:none;color:#061220;box-shadow:0 6px 18px rgba(77,163,255,.35)}
.btn:active{transform:translateY(1px)}

main{padding:14px 0}
.hero{position:relative;border-radius:16px;overflow:hidden;margin:12px 0;border:1px solid rgba(255,255,255,.06);box-shadow:var(--shadow)}
.hero img{width:100%;height:200px;object-fit:cover}
@media(min-width:768px){.hero img{height:320px}}
@media(min-width:1200px){.hero img{height:380px}}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,15,25,.1),rgba(10,15,25,.8))}
.hero .caption{position:absolute;left:14px;bottom:12px;font-weight:800;font-size:18px}
@media(min-width:992px){.hero .caption{left:24px;bottom:18px;font-size:28px}}

.section-title{font-size:20px;font-weight:800;margin:8px 0 10px}
@media(min-width:992px){.section-title{font-size:24px;margin-top:16px}}

.games{display:grid;gap:10px;grid-template-columns:repeat(2,1fr)}
@media(min-width:600px){.games{grid-template-columns:repeat(3,1fr);gap:12px}}
@media(min-width:992px){.games{grid-template-columns:repeat(4,1fr);gap:14px}}
@media(min-width:1200px){.games{grid-template-columns:repeat(5,1fr);gap:16px}}

.card{background:var(--card);border:1px solid rgba(255,255,255,.06);border-radius:14px;overflow:hidden;box-shadow:var(--shadow)}
.card .thumb{aspect-ratio:1.2/1;background:#0d1320}
.card .thumb img{width:100%;height:100%;object-fit:cover}
.card .body{padding:10px}
.card .title{font-size:14px;font-weight:700;margin:0 0 8px}
.card .play{display:flex;align-items:center;justify-content:center;height:36px;border-radius:10px;background:linear-gradient(180deg,#59a9ff 0%,#2f80ff 100%);color:#061220;font-weight:800}
@media(min-width:992px){.card .title{font-size:15px}.card .play{height:38px}}

.prose{margin-top:16px}
.prose h1,.prose h2,.prose h3,.prose h4{margin:18px 0 8px;line-height:1.25}
.prose h1{font-size:24px}
.prose h2{font-size:20px}
.prose h3{font-size:18px}
.prose h4{font-size:16px}
@media(min-width:992px){
  .prose h1{font-size:34px}
  .prose h2{font-size:26px}
  .prose h3{font-size:20px}
  .prose h4{font-size:18px}
}
.prose p{margin:8px 0;color:var(--text);opacity:.95;font-size:15px;line-height:1.6}
@media(min-width:992px){.prose p{font-size:16px}}

ul{list-style:none;padding-left:0;margin:12px 0}
ul li{position:relative;padding-left:28px;margin:10px 0;color:var(--text);opacity:.94}
ul li::before{content:"✔";position:absolute;left:0;top:0;color:var(--ok);font-weight:800}

footer{padding:18px 0 26px;color:var(--muted);font-size:12px;border-top:1px solid rgba(255,255,255,.06);margin-top:16px}
