/* ============================================================
   Arena Game — stylesheet dasar (ganti nama & warna per situs
   agar 5 situs TIDAK punya footprint yang sama)
   ============================================================ */
:root{
  --bg:#0f1115;
  --surface:#171a21;
  --text:#e7e9ee;
  --muted:#9aa3b2;
  --accent:#4f7cff;
  --border:#252a34;
  --maxw:760px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:var(--font);line-height:1.7;font-size:18px;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* Header */
.site-header{border-bottom:1px solid var(--border);background:var(--surface)}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{font-weight:800;font-size:1.25rem;color:var(--text);letter-spacing:-.02em}
.brand span{color:var(--accent)}
.nav a{color:var(--muted);margin-left:22px;font-size:.95rem}
.nav a:hover{color:var(--text);text-decoration:none}

/* Hero */
.hero{padding:56px 0 24px}
.hero h1{font-size:2rem;line-height:1.2;margin:0 0 12px;letter-spacing:-.02em}
.hero p{color:var(--muted);margin:0;font-size:1.05rem}

/* Article list */
.post-list{list-style:none;padding:0;margin:24px 0 64px}
.post-list li{border-top:1px solid var(--border);padding:22px 0}
.post-list h2{margin:0 0 6px;font-size:1.25rem}
.post-list h2 a{color:var(--text)}
.post-meta{color:var(--muted);font-size:.85rem;margin:0 0 8px}
.post-list p.excerpt{margin:0;color:var(--muted)}

/* Article page */
.article{padding:40px 0 64px}
.breadcrumb{font-size:.85rem;color:var(--muted);margin-bottom:20px}
.breadcrumb a{color:var(--muted)}
.article h1{font-size:2rem;line-height:1.22;margin:0 0 12px;letter-spacing:-.02em}
.article .post-meta{margin-bottom:28px}
.article h2{font-size:1.4rem;margin:36px 0 12px;letter-spacing:-.01em}
.article h3{font-size:1.15rem;margin:28px 0 10px}
.article p{margin:0 0 18px}
.article ul,.article ol{margin:0 0 18px;padding-left:22px}
.article li{margin:6px 0}
.article figure{margin:24px 0}
.article figcaption{color:var(--muted);font-size:.85rem;text-align:center;margin-top:8px}
.article blockquote{border-left:3px solid var(--accent);margin:24px 0;padding:4px 18px;color:var(--muted)}

/* Footer */
.site-footer{border-top:1px solid var(--border);background:var(--surface);color:var(--muted);font-size:.9rem}
.site-footer .wrap{padding:28px 20px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px}

@media(max-width:600px){
  body{font-size:17px}
  .hero h1,.article h1{font-size:1.6rem}
}

/* Editorial cards: fast, image-led, and distinct to Arena Game. */
.hero{padding-top:72px}.section-h{letter-spacing:-.02em}.post-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.post-list li{border:1px solid var(--border);border-radius:16px;padding:0;overflow:hidden;background:var(--surface);transition:transform .18s ease,border-color .18s ease}.post-list li:hover{transform:translateY(-3px);border-color:var(--accent)}.post-list li>*:not(.article-cover){margin-left:18px;margin-right:18px}.post-list .post-meta{margin-top:18px}.post-list .excerpt{margin-bottom:20px}.article-cover{margin:0;overflow:hidden;background:#101827}.article-cover img{width:100%;aspect-ratio:16/9;object-fit:cover}.article .article-cover{margin:0 0 30px;border:1px solid var(--border);border-radius:16px}.article .article-cover img{aspect-ratio:16/8}.cat-grid a{background:linear-gradient(135deg,var(--surface),#121a2e);transition:transform .18s ease,border-color .18s ease}.cat-grid a:hover{transform:translateY(-2px)}@media(max-width:640px){.post-list{grid-template-columns:1fr}.hero{padding-top:48px}}
