/* newsid — base + inner pages (append only, do not remove base) */

:root {
  --bg: #f0f2f5;
  --paper: #ffffff;
  --paper-2: #f7f8fa;
  --ink: #1a2332;
  --muted: #5a6578;
  --faint: #8892a0;
  --line: #d8dee6;
  --brand: #0b6e4f;
  --brand-2: #095c42;
  --accent: #e85d04;
  --accent-2: #dc2f02;
  --header-h: 58px;
  --max: 1080px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.25em; }
ul.plain { list-style: none; padding: 0; }

.wrap {
  width: min(100% - 28px, var(--max));
  margin-inline: auto;
}

/* ── Header ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover { text-decoration: none; }

.logo-banner {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(42vw, 168px);
  object-fit: contain;
}

.logo-foot .logo-banner { height: 36px; max-width: 140px; }

.nav-desktop { display: none; gap: 2px; }

.nav-desktop a {
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-desktop a:hover { color: var(--brand); background: var(--paper-2); text-decoration: none; }

.nav-desktop a.is-active,
.nav-mobile a.is-active {
  color: var(--brand);
  background: var(--paper-2);
}

.topbar-btns { display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
}

.btn:hover { text-decoration: none; opacity: 0.92; }

.btn-fill { background: var(--brand); color: #fff; }
.btn-hot { background: var(--accent); color: #fff; }
.btn-line { background: var(--paper); color: var(--brand); border: 1px solid var(--brand); }
.btn-block { display: block; width: 100%; }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 8px 14px 14px;
  z-index: 99;
}

.nav-mobile.show { display: block; }

.nav-mobile a {
  display: block;
  padding: 11px 10px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--paper-2);
  text-decoration: none;
  white-space: nowrap;
}

.nav-mobile a:last-child { border: 0; }

/* ── Hero (index) ── */
.hero-band {
  background: var(--brand);
  color: #fff;
  padding: 36px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-band h1 {
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.hero-band .lead {
  font-size: 16px;
  opacity: 0.92;
  max-width: 640px;
  margin-bottom: 22px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }

.hero-actions .btn-fill { background: #fff; color: var(--brand); }
.hero-actions .btn-line { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 560px;
}

.stat-row div {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 14px;
}

.stat-row strong { display: block; font-size: 18px; }
.stat-row span { font-size: 12px; opacity: 0.8; }

.hero-visual { text-align: center; }

.hero-logo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

/* ── Info strip ── */
.info-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}

.info-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}

.info-strip strong { color: var(--ink); }

/* ── Layout ── */
.page-body { padding: 32px 0 48px; }

.layout-2col {
  display: grid;
  gap: 24px;
  align-items: start;
}

.content-main { min-width: 0; }

.sidebar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}

.sidebar h3 {
  font-size: 15px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.side-dl-box {
  text-align: center;
  padding: 16px;
  background: var(--paper-2);
  border-radius: 8px;
  margin-bottom: 16px;
}

.side-dl-box .ver {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.side-dl-box .meta { font-size: 12px; color: var(--muted); margin: 6px 0 14px; }

.spec-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--paper-2); }
.spec-table td { padding: 8px 0; vertical-align: top; }
.spec-table td:first-child { color: var(--muted); width: 42%; }

.side-shots {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.side-shots-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.side-shots figure { margin: 0 0 12px; text-align: center; }
.side-shots figure:last-child { margin-bottom: 0; }

.side-shots img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.side-shots figcaption {
  font-size: 11px;
  color: var(--faint);
  margin-top: 6px;
  line-height: 1.3;
}

.side-links { margin-top: 16px; font-size: 13px; }
.side-links li { margin-bottom: 6px; }
.side-links a { text-decoration: none; }
.side-links a:hover { text-decoration: underline; }

/* ── Blocks ── */
.block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.block h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.block h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 8px;
}

.block p { color: var(--muted); margin-bottom: 12px; }
.block p:last-child { margin-bottom: 0; }

.block-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.block-head h2 { margin: 0; }
.block-head a { font-size: 13px; font-weight: 700; }

.defer-section { content-visibility: auto; contain-intrinsic-size: auto 400px; }

/* App table */
.app-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.app-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--faint);
  padding: 0 8px 10px 0;
  border-bottom: 2px solid var(--line);
}

.app-table td {
  padding: 12px 8px 12px 0;
  border-bottom: 1px solid var(--paper-2);
  vertical-align: middle;
}

.app-table tr:last-child td { border: 0; }

.app-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.app-cell:hover { text-decoration: none; color: var(--brand); }

.app-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

img.app-thumb {
  display: block;
  object-fit: cover;
}

span.app-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--brand);
}

.app-name b { display: block; font-size: 14px; }
.app-name small { font-size: 12px; color: var(--faint); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: #e8f5f0;
  color: var(--brand);
}

.tag.new { background: #fff0e6; color: var(--accent); }

.rating { font-size: 13px; color: var(--accent); font-weight: 700; }

/* ── Shared inner page head ── */
.page-head-band {
  background: var(--brand);
  color: #fff;
  padding: 28px 0 32px;
}

.page-head-band h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
}

.page-head-band p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 640px;
  margin: 0;
}

.page-crumb {
  font-size: 13px;
  margin-bottom: 14px;
  opacity: 0.85;
}

.page-crumb a { color: #fff; text-decoration: none; }
.page-crumb a:hover { text-decoration: underline; }

/* ── Pembaruan page (layout unik — timeline changelog) ── */
.pembaruan-page { background: #f4f3f0; }

.pembaruan-main {
  padding: 20px 0 48px;
}

.pembaruan-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pembaruan-crumb a { color: var(--brand); text-decoration: none; }
.pembaruan-crumb a:hover { text-decoration: underline; }

.pembaruan-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--accent);
}

.pembaruan-head h1 {
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}

.pembaruan-head p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

.pembaruan-latest {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  border-bottom: 4px solid var(--accent);
}

.pembaruan-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.pembaruan-ver {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.pembaruan-latest > div > p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
}

.pembaruan-btn-dl {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  border-radius: 8px;
  text-decoration: none;
}

.pembaruan-btn-dl:hover { text-decoration: none; opacity: 0.92; }

.pembaruan-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 18px;
}

.pembaruan-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--paper-2);
}

.pembaruan-card > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 12px;
}

.pembaruan-card > p:last-child { margin-bottom: 0; }

.pembaruan-intro p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.pembaruan-intro p:last-child { margin-bottom: 0; }

/* Timeline changelog */
.pembaruan-timeline {
  position: relative;
  padding-left: 28px;
}

.pembaruan-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--line));
}

.pembaruan-entry {
  position: relative;
  padding-bottom: 22px;
}

.pembaruan-entry:last-child { padding-bottom: 0; }

.pembaruan-entry-marker {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--paper);
  border: 3px solid var(--accent);
  border-radius: 50%;
  z-index: 1;
}

.pembaruan-entry.is-latest .pembaruan-entry-marker {
  background: var(--accent);
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.2);
}

.pembaruan-entry.is-legacy .pembaruan-entry-marker {
  border-color: var(--faint);
  background: var(--paper-2);
}

.pembaruan-entry.is-legacy .pembaruan-entry-body {
  opacity: 0.75;
}

.pembaruan-entry-body {
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.pembaruan-entry header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 8px;
}

.pembaruan-entry-ver {
  font-weight: 800;
  font-size: 15px;
  color: var(--brand);
}

.pembaruan-entry time {
  font-size: 12px;
  color: var(--faint);
}

.pembaruan-entry-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.pembaruan-entry-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 8px;
}

.pembaruan-entry-body ul {
  margin: 6px 0 0;
  padding-left: 1.2em;
  font-size: 13px;
  color: var(--muted);
}

.pembaruan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pembaruan-table th,
.pembaruan-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

.pembaruan-table th {
  background: var(--paper-2);
  font-size: 12px;
  font-weight: 700;
}

.pembaruan-table td { color: var(--muted); }
.pembaruan-table td strong { color: var(--ink); }

.pembaruan-compare td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 38%;
}

.pembaruan-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.pembaruan-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pembaruan-checklist li {
  padding: 12px 0 12px 20px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--paper-2);
  position: relative;
}

.pembaruan-checklist li:last-child { border: 0; }

.pembaruan-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.pembaruan-checklist li strong { color: var(--ink); }

.pembaruan-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: pembaruanstep;
}

.pembaruan-steps li {
  position: relative;
  padding: 12px 0 12px 36px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--paper-2);
  counter-increment: pembaruanstep;
}

.pembaruan-steps li:last-child { border: 0; }

.pembaruan-steps li::before {
  content: counter(pembaruanstep);
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pembaruan-steps li b { color: var(--ink); }

.pembaruan-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.pembaruan-faq summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--paper-2);
}

.pembaruan-faq summary::-webkit-details-marker { display: none; }

.pembaruan-faq details[open] summary {
  border-bottom: 1px solid var(--line);
}

.pembaruan-faq details p {
  padding: 12px 16px 14px;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.pembaruan-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.pembaruan-more a { text-decoration: none; }
.pembaruan-more a:hover { text-decoration: underline; }

/* ── Aplikasi catalog page ── */
.app-catalog-page { background: #f0f2f5; }

.app-catalog-head {
  background: var(--brand);
  color: #fff;
  padding: 28px 0 32px;
}

.app-catalog-head h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
}

.app-catalog-head p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 640px;
  margin: 0;
}

.app-crumb {
  font-size: 13px;
  margin-bottom: 14px;
  opacity: 0.85;
}

.app-crumb a { color: #fff; text-decoration: none; }
.app-crumb a:hover { text-decoration: underline; }

.app-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.app-catalog-toolbar p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.app-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-2);
}

.app-pager a,
.app-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.app-pager a:hover {
  border-color: var(--brand);
  color: var(--brand);
  text-decoration: none;
}

.app-pager-current {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
}

.app-pager-prev,
.app-pager-next {
  font-size: 12px !important;
  min-width: auto !important;
}

.app-cat-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: 8px;
  line-height: 1.55;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  color: var(--muted);
  list-style: none;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li b { color: var(--ink); }

/* Features */
.feat-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }

.feat-item {
  padding: 14px;
  background: var(--paper-2);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
}

.feat-item h4 { font-size: 14px; margin-bottom: 4px; }
.feat-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* Network table */
.net-table { width: 100%; border-collapse: collapse; font-size: 13px; }

.net-table th, .net-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

.net-table th { background: var(--paper-2); font-size: 12px; }
.status-ok { color: var(--brand); font-weight: 700; }

/* Changelog */
.log-list { font-size: 14px; }

.log-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-2);
}

.log-item:last-child { border: 0; padding-bottom: 0; }

.log-item header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 6px;
}

.log-item .ver { font-weight: 800; color: var(--brand); font-size: 15px; }
.log-item time { font-size: 12px; color: var(--faint); }
.log-item h4 { font-size: 14px; margin-bottom: 4px; }
.log-item p { font-size: 13px; color: var(--muted); margin: 0; }
.log-item ul { margin-top: 6px; font-size: 13px; color: var(--muted); }

/* Reviews */
.review-grid { display: grid; gap: 12px; }

.review {
  padding: 16px;
  background: var(--paper-2);
  border-radius: 8px;
  border: 1px solid var(--line);
}

.review header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.review header b { color: var(--ink); }
.review .stars { color: var(--accent); font-weight: 700; }
.review p { font-size: 13px; color: var(--muted); margin: 0; }

/* Access box */
.access-box {
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.access-box h2 { font-size: 18px; margin-bottom: 8px; }
.access-box p { font-size: 14px; opacity: 0.85; margin-bottom: 16px; }
.access-box .btn-hot { background: var(--accent); }

/* FAQ */
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--paper-2);
}

.faq summary {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { padding: 12px 16px 14px; font-size: 14px; color: var(--muted); }

/* Footer */
.site-foot {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 40px 0 24px;
  font-size: 13px;
}

.foot-grid { display: grid; gap: 28px; margin-bottom: 28px; }

.foot-grid h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.foot-grid ul.plain li { margin-bottom: 7px; }
.foot-grid a { color: rgba(255,255,255,0.6); text-decoration: none; }
.foot-grid a:hover { color: #fff; text-decoration: underline; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 12px;
}

.foot-age { margin-top: 10px; opacity: 0.55; line-height: 1.5; }

/* ══════════════════════════════════════
   unduh.html — layout & styles khusus
   ══════════════════════════════════════ */

.unduh-page { background: #f5f3ef; }

.unduh-main { padding: 24px 0 48px; }

.unduh-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.unduh-crumb a { color: var(--brand); text-decoration: none; }
.unduh-crumb a:hover { text-decoration: underline; }

/* ── Download zone (hero khusus unduh) ── */
.unduh-zone {
  background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 24px;
  color: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 8px 32px rgba(232, 93, 4, 0.15);
}

.unduh-zone-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.unduh-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.unduh-brand img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.unduh-brand h1 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.unduh-brand .unduh-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
}

.unduh-brand p {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 6px;
}

.unduh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.unduh-pills span {
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 8px;
}

.unduh-action {
  text-align: center;
}

.unduh-btn-dl {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
}

.unduh-btn-dl:hover { text-decoration: none; opacity: 0.93; }

.unduh-action small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  opacity: 0.6;
}

.unduh-action .unduh-mirror {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: #93c5fd;
  text-decoration: underline;
}

/* ── Two-column unduh layout ── */
.unduh-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.unduh-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.unduh-card h2 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.unduh-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.unduh-card p:last-child { margin-bottom: 0; }

.unduh-card-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.unduh-card-note a { color: var(--brand); }

/* File manifest — dl list */
.unduh-manifest {
  display: grid;
  gap: 0;
  font-size: 14px;
}

.unduh-manifest div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--paper-2);
}

.unduh-manifest div:last-child { border: 0; }

.unduh-manifest dt {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
}

.unduh-manifest dd {
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

.unduh-hash {
  margin-top: 16px;
  background: #1a2332;
  color: #a5f3c4;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
  line-height: 1.6;
  word-break: break-all;
}

.unduh-hash label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  font-family: var(--font);
}

/* 3-step pipeline */
.unduh-pipe {
  display: grid;
  gap: 12px;
}

.unduh-pipe-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--paper-2);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}

.unduh-pipe-num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.unduh-pipe-step b {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.unduh-pipe-step span {
  font-size: 13px;
  color: var(--muted);
}

/* Troubleshooting — compact */
.unduh-fix {
  display: grid;
  gap: 10px;
}

.unduh-fix-item {
  padding: 12px 14px;
  background: #fff8f0;
  border: 1px solid #f0dcc8;
  border-radius: 8px;
  font-size: 13px;
}

.unduh-fix-item b {
  display: block;
  color: var(--accent-2);
  margin-bottom: 4px;
  font-size: 13px;
}

.unduh-fix-item p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

/* FAQ minimal */
.unduh-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--paper-2);
}

.unduh-faq summary {
  padding: 12px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}

.unduh-faq summary::-webkit-details-marker { display: none; }

.unduh-faq details p {
  padding: 0 14px 12px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* More links row */
.unduh-more {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 0 0;
}

.unduh-more a { text-decoration: none; }
.unduh-more a:hover { text-decoration: underline; }

/* Sticky aside */
.unduh-aside {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.unduh-aside-card {
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.unduh-aside-card .unduh-ver {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.unduh-aside-card .unduh-meta {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 16px;
}

.unduh-aside-list {
  text-align: left;
  font-size: 13px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.unduh-aside-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--paper-2);
  color: var(--muted);
}

.unduh-aside-list li:last-child { border: 0; }
.unduh-aside-list li span:last-child { color: var(--ink); font-weight: 600; }

.unduh-aside-tip {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  background: var(--paper-2);
  padding: 10px;
  border-radius: 8px;
  text-align: left;
}

/* Checklist */
.unduh-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unduh-checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--paper-2);
}

.unduh-checklist li:last-child { border: 0; }

.unduh-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: #e8f5f0;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unduh-checklist-warn li::before {
  content: "!";
  background: #fff0e6;
  color: var(--accent);
}

/* Table */
.unduh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.unduh-table th,
.unduh-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

.unduh-table th {
  background: var(--paper-2);
  font-size: 12px;
  font-weight: 700;
}

.unduh-table td { color: var(--muted); }
.unduh-table td strong { color: var(--ink); }

/* Browser grid */
.unduh-browser-grid {
  display: grid;
  gap: 10px;
}

.unduh-browser-item {
  padding: 14px;
  background: var(--paper-2);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
}

.unduh-browser-item b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink);
}

.unduh-browser-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Storage breakdown */
.unduh-storage {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.unduh-storage-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--paper-2);
  color: var(--muted);
}

.unduh-storage-row span:last-child {
  font-weight: 700;
  color: var(--ink);
}

.unduh-storage-total {
  background: #fff8f0;
  font-weight: 700;
  color: var(--accent-2);
}

.unduh-storage-total span:last-child { color: var(--accent-2); }

/* Numbered install steps */
.unduh-steps {
  padding-left: 0;
  list-style: none;
  counter-reset: unduhstep;
}

.unduh-steps li {
  position: relative;
  padding: 12px 0 12px 36px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--paper-2);
  counter-increment: unduhstep;
}

.unduh-steps li:last-child { border: 0; }

.unduh-steps li::before {
  content: counter(unduhstep);
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unduh-steps li b { color: var(--ink); }

/* Intro & editorial blocks */
.unduh-intro {
  background: linear-gradient(135deg, #fff 0%, #f0f7f4 100%);
  border-left: 4px solid var(--brand);
}

.unduh-intro-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 14px;
}

.unduh-intro p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}

.unduh-intro p:last-child { margin-bottom: 0; }

.unduh-highlight {
  background: #fff8f0;
  border: 1px solid #f0dcc8;
  border-radius: var(--radius, 10px);
  padding: 18px 20px;
}

.unduh-highlight h2 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--accent-2, #c44d00);
}

.unduh-highlight p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.unduh-prose-grid {
  display: grid;
  gap: 14px;
}

.unduh-prose-item {
  padding: 16px;
  background: var(--paper-2, #f7f7f5);
  border-radius: 8px;
  border-top: 3px solid var(--brand);
}

.unduh-prose-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.unduh-prose-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ── Dokumentasi page (layout unik — sidebar TOC + panduan) ── */
.dok-page { background: #eef2f7; }

.dok-main { padding: 20px 0 48px; }

.dok-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.dok-crumb a { color: var(--brand); text-decoration: none; }
.dok-crumb a:hover { text-decoration: underline; }

.dok-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  margin-bottom: 20px;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(26, 35, 50, 0.04);
}

.dok-hero-text { flex: 1; min-width: 220px; }

.dok-hero h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.dok-hero p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}

.dok-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.dok-hero-meta span {
  padding: 6px 10px;
  background: var(--paper-2);
  border-radius: 6px;
  font-weight: 600;
}

.dok-hero-link {
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.dok-hero-link:hover { text-decoration: underline; }

.dok-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.dok-sidebar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}

.dok-sidebar-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin: 0 0 10px;
}

.dok-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dok-nav a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  border-left: 3px solid transparent;
}

.dok-nav a:hover {
  background: var(--paper-2);
  color: var(--brand);
  text-decoration: none;
}

.dok-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 16px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.dok-section:last-child { margin-bottom: 0; }

.dok-section h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e3eaf3;
  color: var(--ink);
}

.dok-section > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 14px;
}

.dok-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.dok-checklist li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--paper-2);
}

.dok-checklist li:last-child { border: 0; }

.dok-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
  font-size: 12px;
}

.dok-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dok-lines li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--paper-2);
}

.dok-lines li:last-child { border-bottom: 0; }

.dok-callout {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.dok-callout b { color: var(--ink); }

.dok-callout-tip {
  background: #e8f5f0;
  border-left: 3px solid var(--brand);
}

.dok-callout-warn {
  background: #fff8f0;
  border-left: 3px solid var(--accent);
}

.dok-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.dok-steps li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-2);
}

.dok-steps li:last-child { border: 0; }

.dok-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dok-steps li b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.dok-steps li p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.dok-perm-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.dok-perm-item {
  padding: 14px;
  background: var(--paper-2);
  border-radius: 8px;
  border-top: 3px solid #5b8def;
}

.dok-perm-item b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink);
}

.dok-perm-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.dok-issue-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.dok-issue {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--paper-2) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  border-left: 4px solid #5b8def;
}

.dok-issue-wide { border-left-color: #8b6fd4; }

.dok-issue h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.35;
}

.dok-issue-fix {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.dok-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.dok-faq summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--paper-2);
}

.dok-faq summary::-webkit-details-marker { display: none; }

.dok-faq details[open] summary { border-bottom: 1px solid var(--line); }

.dok-faq details p {
  padding: 12px 16px 14px;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.dok-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.dok-more a { text-decoration: none; }
.dok-more a:hover { text-decoration: underline; }

/* ── Masuk / Daftar page (split panel + tab form) ── */
.masuk-page { background: #eceef2; }

.masuk-main { padding: 20px 0 48px; }

.masuk-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.masuk-crumb a { color: var(--brand); text-decoration: none; }
.masuk-crumb a:hover { text-decoration: underline; }

.masuk-split {
  display: grid;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(26, 35, 50, 0.06);
}

.masuk-aside {
  background: linear-gradient(160deg, var(--brand) 0%, #084a36 100%);
  color: #fff;
  padding: 28px 24px;
}

.masuk-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.masuk-aside h1 {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.3;
}

.masuk-aside > p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0 0 18px;
}

.masuk-aside a { color: #fff; font-weight: 700; }

.masuk-aside-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.masuk-aside-lines li {
  position: relative;
  padding: 8px 0 8px 16px;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.masuk-aside-lines li:last-child { border-bottom: 0; }

.masuk-aside-lines li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 800;
}

.masuk-aside-foot {
  font-size: 12px;
  opacity: 0.7;
  margin: 0;
}

.masuk-panel {
  background: var(--paper);
  padding: 24px;
}

.masuk-panel > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.masuk-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
}

.masuk-tabs label {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  border-right: 1px solid var(--line);
  margin: 0;
}

.masuk-tabs label:last-of-type { border-right: 0; }

#masuk-tab-login:checked ~ .masuk-tabs label[for="masuk-tab-login"],
#masuk-tab-daftar:checked ~ .masuk-tabs label[for="masuk-tab-daftar"] {
  background: var(--paper);
  color: var(--brand);
}

.masuk-pane { display: none; }

#masuk-tab-login:checked ~ .masuk-pane-login,
#masuk-tab-daftar:checked ~ .masuk-pane-daftar {
  display: block;
}

.masuk-pane h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.masuk-form {
  display: grid;
  gap: 14px;
}

.masuk-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.masuk-form input[type="text"],
.masuk-form input[type="password"] {
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.masuk-form input:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}

.masuk-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: var(--muted) !important;
}

.masuk-check input {
  margin-top: 3px;
  flex-shrink: 0;
}

.masuk-btn {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
}

.masuk-btn:hover { background: var(--brand-2); }

.masuk-btn-alt { background: var(--accent); }
.masuk-btn-alt:hover { background: var(--accent-2); }

.masuk-form-note {
  font-size: 12px;
  color: var(--faint);
  margin: 14px 0 0;
  line-height: 1.5;
}

.masuk-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.masuk-links a { text-decoration: none; }
.masuk-links a:hover { text-decoration: underline; }

.masuk-extra {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.masuk-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
}

.masuk-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--paper-2);
  color: var(--ink);
}

.masuk-card > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 12px;
}

.masuk-card > p:last-child { margin-bottom: 0; }

.masuk-intro > p:last-child { margin-bottom: 0; }

.masuk-flow {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.masuk-flow-step {
  padding: 16px;
  background: var(--paper-2);
  border-radius: 8px;
  border-top: 4px solid var(--brand);
}

.masuk-flow-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 6px;
  margin-bottom: 8px;
}

.masuk-flow-step b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.masuk-flow-step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.masuk-perks {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.masuk-perk {
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
}

.masuk-perk b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.masuk-perk p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.masuk-rules {
  list-style: none;
  padding: 0;
  margin: 0;
}

.masuk-rules li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--paper-2);
}

.masuk-rules li:last-child { border-bottom: 0; }

.masuk-duo {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.masuk-duo-col {
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.masuk-duo-col:first-child {
  background: #eef8f4;
  border-top: 4px solid var(--brand);
}

.masuk-duo-col:last-child {
  background: #eef2f8;
  border-top: 4px solid #5b8def;
}

.masuk-duo-col h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.masuk-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.masuk-lines li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.masuk-lines li:last-child { border-bottom: 0; }

.masuk-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.masuk-faq summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--paper-2);
}

.masuk-faq summary::-webkit-details-marker { display: none; }

.masuk-faq details[open] summary { border-bottom: 1px solid var(--line); }

.masuk-faq details p {
  padding: 12px 16px 14px;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.masuk-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.masuk-more a { text-decoration: none; }
.masuk-more a:hover { text-decoration: underline; }

/* ── Keamanan page (audit seal + hash hero + aside) ── */
.keaman-page { background: #e8ecf1; }

.keaman-main { padding: 20px 0 48px; }

.keaman-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.keaman-crumb a { color: var(--brand); text-decoration: none; }
.keaman-crumb a:hover { text-decoration: underline; }

.keaman-seal {
  background: var(--paper);
  border: 2px solid var(--brand);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(11, 110, 79, 0.08);
}

.keaman-seal-head { margin-bottom: 18px; }

.keaman-seal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: #e8f5f0;
  color: var(--brand);
  border-radius: 4px;
  margin-bottom: 10px;
}

.keaman-seal h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.keaman-seal-head > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  max-width: 640px;
}

.keaman-hashbox {
  padding: 18px 20px;
  background: #1a2332;
  border-radius: 10px;
  border-left: 4px solid var(--brand);
}

.keaman-hash-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8892a0;
  margin-bottom: 10px;
}

.keaman-hash {
  display: block;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: clamp(11px, 2.5vw, 14px);
  line-height: 1.6;
  word-break: break-all;
  color: #7dcea0;
  margin-bottom: 10px;
}

.keaman-hash-meta {
  font-size: 12px;
  color: #8892a0;
}

.keaman-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.keaman-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.keaman-block:last-child { margin-bottom: 0; }

.keaman-block-warn {
  border-left: 4px solid var(--accent);
  background: #fffbf8;
}

.keaman-block h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--paper-2);
  color: var(--ink);
}

.keaman-block > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 12px;
}

.keaman-block > p:last-of-type { margin-bottom: 0; }

.keaman-steps {
  display: grid;
  gap: 10px;
}

.keaman-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 8px;
}

.keaman-step span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.keaman-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.keaman-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.keaman-lines li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--paper-2);
}

.keaman-lines li:last-child { border-bottom: 0; }

.keaman-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.keaman-grid-item {
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
}

.keaman-grid-item b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.keaman-grid-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.keaman-duo {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.keaman-duo-col {
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.keaman-duo-ok {
  background: #eef8f4;
  border-top: 4px solid var(--brand);
}

.keaman-duo-bad {
  background: #fff5f5;
  border-top: 4px solid #e05252;
}

.keaman-duo-col h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.keaman-duo-col .keaman-lines li {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.keaman-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.keaman-faq summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--paper-2);
}

.keaman-faq summary::-webkit-details-marker { display: none; }

.keaman-faq details[open] summary { border-bottom: 1px solid var(--line); }

.keaman-faq details p {
  padding: 12px 16px 14px;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.keaman-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.keaman-more a { text-decoration: none; }
.keaman-more a:hover { text-decoration: underline; }

.keaman-aside-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.keaman-aside-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--faint);
}

.keaman-aside-ver {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  margin: 4px 0 14px;
}

.keaman-aside-list {
  font-size: 13px;
  margin-bottom: 16px;
}

.keaman-aside-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--paper-2);
  color: var(--muted);
}

.keaman-aside-list li span:last-child {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.keaman-aside-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  text-decoration: none;
}

.keaman-aside-btn:hover {
  background: var(--brand-2);
  text-decoration: none;
}

.keaman-aside-tip {
  font-size: 12px;
  color: var(--faint);
  margin: 12px 0 0;
  line-height: 1.5;
}

/* ── Akses page (mirror node grid) ── */
.akses-page { background: #eef0f4; }

.akses-main { padding: 20px 0 48px; }

.akses-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.akses-crumb a { color: var(--brand); text-decoration: none; }
.akses-crumb a:hover { text-decoration: underline; }

.akses-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.akses-hero h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.akses-hero > div > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  max-width: 520px;
}

.akses-live {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.akses-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.akses-live time {
  font-weight: 400;
  color: var(--faint);
  font-size: 12px;
}

.akses-nodes {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}

.akses-node {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  border-top: 4px solid #5b8def;
}

.akses-node-primary {
  border-top-color: var(--brand);
  background: linear-gradient(180deg, #f0faf6 0%, var(--paper) 100%);
}

.akses-node-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  background: var(--paper-2);
  color: var(--muted);
  border-radius: 4px;
  margin-bottom: 8px;
}

.akses-node-primary .akses-node-tag {
  background: #e8f5f0;
  color: var(--brand);
}

.akses-node h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink);
  font-family: ui-monospace, "Consolas", monospace;
}

.akses-node > p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

.akses-node-meta {
  font-size: 13px;
  margin-bottom: 14px;
}

.akses-node-meta li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--paper-2);
  color: var(--muted);
}

.akses-node-meta li span:last-child {
  font-weight: 600;
  color: var(--ink);
}

.akses-node-btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  text-decoration: none;
}

.akses-node-btn:hover {
  background: var(--brand-2);
  text-decoration: none;
}

.akses-node-btn-line {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.akses-node-btn-line:hover {
  background: var(--brand);
  color: #fff;
}

.akses-body {
  display: grid;
  gap: 16px;
}

.akses-value {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.akses-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
}

.akses-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--paper-2);
  color: var(--ink);
}

.akses-card .akses-value-col h2 {
  font-size: 16px;
  padding-bottom: 8px;
}

.akses-card .akses-value-col:first-child h2 { border-bottom-color: #cce8dc; }
.akses-card .akses-value-col:last-child h2 { border-bottom-color: #d4e0f5; }

.akses-card .akses-value-col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.akses-card > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 12px;
}

.akses-card > p:last-child { margin-bottom: 0; }

.akses-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.akses-lines li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--paper-2);
}

.akses-lines li:last-child { border-bottom: 0; }

.akses-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.akses-table th,
.akses-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.akses-table th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--faint);
  background: var(--paper-2);
}

.akses-table td:first-child { font-weight: 600; color: var(--ink); }

.akses-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.akses-faq summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--paper-2);
}

.akses-faq summary::-webkit-details-marker { display: none; }

.akses-faq details[open] summary { border-bottom: 1px solid var(--line); }

.akses-faq details p {
  padding: 12px 16px 14px;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.akses-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.akses-more a { text-decoration: none; }
.akses-more a:hover { text-decoration: underline; }

.btn-line.is-active {
  background: #e8f5f0;
  border-color: var(--brand);
  color: var(--brand);
}

/* ── Kebijakan Privasi page (sidebar doc) ── */
.priv-page { background: #f4f3f0; }

.priv-main { padding: 20px 0 48px; }

.priv-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.priv-crumb a { color: var(--brand); text-decoration: none; }
.priv-crumb a:hover { text-decoration: underline; }

.priv-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #ddd9d2;
}

.priv-head h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink);
}

.priv-head p {
  font-size: 13px;
  color: var(--faint);
  margin: 0;
}

.priv-doc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
  max-width: 760px;
}

.priv-doc h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 28px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--paper-2);
  color: #4a3d6b;
}

.priv-doc h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.priv-doc p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}

.priv-list {
  margin: 0 0 12px;
  padding-left: 1.25em;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.priv-list li { margin-bottom: 6px; }

.priv-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.priv-related a { text-decoration: none; }
.priv-related a:hover { text-decoration: underline; }

/* ── Syarat & Ketentuan page (numbered pasal) ── */
.syarat-page { background: #eceef2; }

.syarat-main { padding: 20px 0 48px; }

.syarat-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.syarat-crumb a { color: var(--brand); text-decoration: none; }
.syarat-crumb a:hover { text-decoration: underline; }

.syarat-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d8dee6;
}

.syarat-head h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink);
}

.syarat-head p {
  font-size: 13px;
  color: var(--faint);
  margin: 0;
}

.syarat-doc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
  max-width: 760px;
}

.syarat-doc > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}

.syarat-doc h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 28px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--paper-2);
  color: var(--ink);
}

.syarat-doc h2:first-of-type {
  margin-top: 16px;
}

.syarat-doc p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}

.syarat-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  font-weight: 700;
}

.syarat-related a { text-decoration: none; }
.syarat-related a:hover { text-decoration: underline; }

/* ── Game detail page (app hero + spec aside) ── */
.game-page { background: #eef1f5; }

.game-main { padding: 20px 0 48px; }

.game-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.game-crumb a { color: var(--brand); text-decoration: none; }
.game-crumb a:hover { text-decoration: underline; }

.game-hero {
  display: grid;
  gap: 20px;
  padding: 24px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1a2332 0%, #2a3f5f 100%);
  border-radius: 14px;
  color: #fff;
  border-left: 5px solid var(--accent);
}

.game-hero-main {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.game-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--paper-2);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.game-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  margin-bottom: 8px;
}

.game-hero h1 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.2;
}

.game-hero-main > div > p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 0 12px;
  max-width: 520px;
}

.game-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-pills span {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.game-hero-action {
  text-align: center;
}

.game-btn-dl {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
}

.game-btn-dl:hover {
  background: var(--accent-2);
  text-decoration: none;
}

.game-hero-action small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.75;
}

.game-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.game-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 14px;
}

.game-block:last-child { margin-bottom: 0; }

.game-block h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--paper-2);
  color: var(--ink);
}

.game-block > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 12px;
}

.game-block > p:last-child { margin-bottom: 0; }

.game-shot {
  margin: 14px 0 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  aspect-ratio: 2 / 1;
}

.game-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.game-duo {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.game-duo-col {
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.game-duo-pro {
  background: #eef8f4;
  border-top: 4px solid var(--brand);
}

.game-duo-con {
  background: #fff8f5;
  border-top: 4px solid #e05252;
}

.game-duo-col h3 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
}

.game-duo-col .game-lines li {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.game-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.game-lines li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--paper-2);
}

.game-lines li:last-child { border-bottom: 0; }

.game-steps {
  margin: 0 0 12px;
  padding-left: 1.25em;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.game-steps li { margin-bottom: 8px; }

.game-note {
  font-size: 13px;
  color: var(--faint);
  margin: 0;
}

.game-reviews {
  display: grid;
  gap: 12px;
}

.game-review {
  margin: 0;
  padding: 16px 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  border-left: 4px solid var(--brand);
}

.game-review header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}

.game-review header b {
  font-size: 14px;
  color: var(--ink);
}

.game-review-stars {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.game-review p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.game-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--paper-2);
}

.game-faq details:last-child { margin-bottom: 0; }

.game-faq summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.game-faq summary::-webkit-details-marker { display: none; }

.game-faq details[open] summary { border-bottom: 1px solid var(--line); }

.game-faq details p {
  padding: 12px 16px 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.game-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  align-self: start;
}

.game-spec {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}

.game-more {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}

.game-more h2 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}

.game-more-list {
  margin: 0;
}

.game-more-list li {
  border-bottom: 1px solid var(--paper-2);
}

.game-more-list li:last-child { border-bottom: 0; }

.game-more-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--ink);
  text-decoration: none;
}

.game-more-item:hover {
  text-decoration: none;
}

.game-more-item:hover .game-more-info b {
  color: var(--brand);
}

.game-more-img {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: var(--paper-2);
}

.game-more-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.game-more-info b {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.game-more-info small {
  font-size: 12px;
  color: var(--faint);
  font-weight: 600;
}

.game-spec h2 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--ink);
}

.game-spec-list {
  margin: 0 0 16px;
}

.game-spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--paper-2);
  font-size: 13px;
}

.game-spec-list dt {
  color: var(--faint);
  font-weight: 600;
}

.game-spec-list dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.game-spec-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  text-decoration: none;
}

.game-spec-btn:hover {
  background: var(--brand-2);
  text-decoration: none;
}

.game-spec-tip {
  font-size: 12px;
  color: var(--faint);
  margin: 12px 0 0;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: 1fr 280px; gap: 32px; }
  .hero-logo { max-width: 260px; }
  .stat-row { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .layout-2col { grid-template-columns: 1fr 280px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .unduh-zone-grid { grid-template-columns: 1fr auto auto; }
  .unduh-layout { grid-template-columns: 1fr 260px; }
  .unduh-pipe { grid-template-columns: repeat(3, 1fr); }
  .unduh-pipe-step { flex-direction: column; text-align: center; border-left: 0; border-top: 4px solid var(--accent); }
  .unduh-pipe-num { margin: 0 auto; }
  .unduh-browser-grid { grid-template-columns: repeat(3, 1fr); }
  .unduh-prose-grid { grid-template-columns: repeat(2, 1fr); }
  .dok-layout { grid-template-columns: 200px 1fr; }
  .dok-perm-grid { grid-template-columns: repeat(2, 1fr); }
  .dok-issue-grid { grid-template-columns: repeat(2, 1fr); }
  .dok-issue-wide { grid-column: 1 / -1; }
  .masuk-split { grid-template-columns: 1fr 1.1fr; }
  .masuk-flow { grid-template-columns: repeat(3, 1fr); }
  .masuk-perks { grid-template-columns: repeat(2, 1fr); }
  .masuk-duo { grid-template-columns: repeat(2, 1fr); }
  .keaman-layout { grid-template-columns: 1fr 240px; }
  .keaman-steps { grid-template-columns: repeat(2, 1fr); }
  .keaman-grid { grid-template-columns: repeat(2, 1fr); }
  .keaman-duo { grid-template-columns: repeat(2, 1fr); }
  .akses-nodes { grid-template-columns: repeat(2, 1fr); }
  .akses-value { grid-template-columns: repeat(2, 1fr); }
  .game-layout { grid-template-columns: 1fr 260px; }
  .game-hero { grid-template-columns: 1fr auto; align-items: center; }
  .game-hero-action { text-align: right; }
  .game-duo { grid-template-columns: repeat(2, 1fr); }
  .game-reviews { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .topbar-inner { gap: 8px; }

  .logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 36%;
  }

  .logo-banner {
    height: 28px;
    max-width: 100%;
  }

  .topbar-btns {
    flex-shrink: 0;
    gap: 5px;
  }

  .topbar-btns .btn {
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .menu-btn {
    flex-shrink: 0;
    padding: 7px;
  }

  .dok-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .dok-nav a {
    border-left: 0;
    border: 1px solid var(--line);
    font-size: 12px;
  }

  .hero-visual { order: -1; }
  .hero-logo { max-width: 160px; }
  .app-table th:nth-child(3),
  .app-table td:nth-child(3) { display: none; }
  .unduh-manifest div { grid-template-columns: 1fr; gap: 2px; }
  .game-aside { position: static; }
}

@media (max-width: 420px) {
  .logo { max-width: 52%; }
  .logo-banner { height: 26px; }
  .topbar-btns .btn {
    padding: 5px 7px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-btn span { transition: none; }
}
