/* ============================================================
   Bejo88 — bejo88.games
   Tema "Malam Emas Bejo": dasar hitam hangat, emas kuning
   dominan, merah/hijau/biru sebagai aksen, motif kawung tipis.
   WordPress-style class names.
   ============================================================ */

:root {
  --bg: #0b0906;
  --bg2: #120e08;
  --card: #191309;
  --card2: #1f180c;
  --line: rgba(255, 203, 46, 0.14);
  --putih: #f7f2e6;
  --muted: #b3a888;
  --emas: #ffcb2e;
  --emas2: #ffe08a;
  --emas-tua: #d9a406;
  --merah: #e5484d;
  --merah2: #ff7075;
  --hijau: #2fbe7f;
  --biru: #3f8cff;
  --biru2: #8ab5ff;
  --radius: 14px;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--putih);
  line-height: 1.65;
  font-size: 16px;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--biru2); text-decoration: none; }
a:hover { color: var(--emas); }

ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; }

.container { width: min(1160px, 92%); margin: 0 auto; }

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

/* ---------- aksesibilitas ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--emas); color: #1b1300; padding: 10px 18px;
  border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- topbar ---------- */
.topbar {
  background: linear-gradient(90deg, #20160a, #0e0a05);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 38px; flex-wrap: wrap; padding: 4px 0;
}
.topbar__left { display: flex; align-items: center; gap: 8px; color: var(--muted); min-width: 0; }
.topbar__left .dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--hijau); box-shadow: 0 0 8px var(--hijau);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.topbar__right { display: flex; align-items: center; gap: 10px; flex: none; }
.topbar__right .motto { color: var(--emas2); }
.badge--18 {
  background: var(--merah); color: #fff; font-weight: 800;
  border-radius: 6px; padding: 1px 7px; font-size: 0.72rem; flex: none;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 9, 6, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55); }
.site-header .container {
  display: flex; align-items: center; gap: 18px; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand svg { width: 44px; height: 44px; flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name > span { font-size: 1.3rem; font-weight: 800; color: var(--putih); }
.brand__name .hl {
  background: linear-gradient(90deg, var(--emas), var(--merah2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand__name small { font-size: 0.62rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* navigasi desktop */
.main-navigation { margin-left: auto; }
.menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.menu-item a {
  display: block; padding: 9px 12px; border-radius: 9px;
  color: var(--putih); font-weight: 600; font-size: 0.9rem; white-space: nowrap;
}
.menu-item a:hover { background: rgba(255, 203, 46, 0.09); color: var(--emas); }
.current-menu-item > a { color: var(--emas); }
.menu-item-has-children { position: relative; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0; z-index: 110;
  background: #1c1509; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); min-width: 250px; list-style: none; padding: 8px;
  flex-direction: column; gap: 2px;
}
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu { display: flex; }
.menu-item-has-children:last-child .sub-menu { left: auto; right: 0; }
.sub-menu a { font-size: 0.86rem; padding: 8px 12px; }

/* tombol */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  font-weight: 800; font-size: 0.88rem; letter-spacing: 0.04em;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn--emas {
  background: linear-gradient(135deg, var(--emas), var(--emas-tua)); color: #221700;
  box-shadow: 0 8px 22px rgba(255, 203, 46, 0.32);
}
.btn--merah {
  background: linear-gradient(135deg, var(--merah), #a8232c); color: #fff;
  box-shadow: 0 8px 22px rgba(229, 72, 77, 0.36);
}
.btn--biru {
  background: linear-gradient(135deg, var(--biru), #2456c4); color: #fff;
  box-shadow: 0 8px 22px rgba(63, 140, 255, 0.35);
}
.btn--hijau {
  background: linear-gradient(135deg, var(--hijau), #15804f); color: #fff;
  box-shadow: 0 8px 22px rgba(47, 190, 127, 0.32);
}
.btn--ghost {
  background: transparent; color: var(--putih); border-color: rgba(247, 242, 230, 0.38);
}
.btn--ghost:hover { border-color: var(--emas); color: var(--emas); }
.btn--sm { padding: 8px 16px; font-size: 0.78rem; }
.btn--block { display: block; width: 100%; }

.hdr-actions { display: flex; align-items: center; gap: 8px; flex: none; position: relative; z-index: 150; }
.hdr-search {
  display: flex; align-items: center; gap: 4px;
  background: #1c1509; border: 1px solid var(--line); border-radius: 999px;
  padding: 2px 4px 2px 12px;
}
.hdr-search input {
  background: transparent; border: 0; outline: 0; color: var(--putih);
  font-size: 0.82rem; width: 150px; font-family: inherit;
}
.hdr-search input::placeholder { color: #857a5e; }
.hdr-search button {
  background: var(--emas); border: 0; border-radius: 999px;
  width: 28px; height: 28px; cursor: pointer; color: #221700; font-size: 0.85rem;
}
.hdr-search button:hover { background: var(--merah); color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 10px; background: #1c1509;
  border: 1px solid var(--line); cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--emas); border-radius: 2px; }

/* ---------- breadcrumb ---------- */
.breadcrumb {
  background: var(--bg2); border-bottom: 1px solid var(--line);
  font-size: 0.78rem; color: var(--muted);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 9px 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: #7d7357; }
.breadcrumb a { color: var(--biru2); }
.breadcrumb a:hover { color: var(--emas); }
.breadcrumb span[aria-current] { color: var(--putih); font-weight: 600; }

/* ---------- hero beranda (motif kawung tipis) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(115deg, rgba(64, 42, 4, 0.92) 0%, rgba(15, 11, 6, 0.9) 48%, rgba(8, 26, 20, 0.9) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.16;
  background-image: radial-gradient(circle at 25% 25%, var(--emas) 2px, transparent 2.6px),
                    radial-gradient(circle at 75% 75%, var(--emas) 2px, transparent 2.6px);
  background-size: 46px 46px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 70% at 80% 26%, rgba(255, 203, 46, 0.22), transparent 62%),
              radial-gradient(42% 60% at 10% 82%, rgba(229, 72, 77, 0.2), transparent 60%),
              radial-gradient(40% 55% at 55% 95%, rgba(47, 190, 127, 0.14), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 34px; align-items: center; padding: 64px 0 68px;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 203, 46, 0.12); border: 1px solid rgba(255, 203, 46, 0.38);
  border-radius: 999px; padding: 5px 14px; font-size: 0.76rem; font-weight: 700;
  color: var(--emas2); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 3.05rem); color: #fff; }
.hero h1 .grad {
  background: linear-gradient(90deg, #ffe08a, #ff7075, #8ab5ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { color: #efe8d6; max-width: 56ch; margin: 16px 0 24px; font-size: 1.02rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__note { font-size: 0.78rem; color: #cfc4a4; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stat-chip {
  background: rgba(11, 9, 6, 0.6); border: 1px solid rgba(255, 203, 46, 0.24);
  border-radius: 12px; padding: 8px 14px; min-width: 0;
}
.stat-chip b { display: block; font-size: 1.05rem; color: var(--emas); }
.stat-chip span { font-size: 0.7rem; color: #cfc4a4; }
.hero__media { position: relative; }
.hero__media img {
  border-radius: 18px; border: 1px solid rgba(255, 203, 46, 0.3);
  box-shadow: var(--shadow);
}
.hero__badge {
  position: absolute; left: -12px; bottom: -12px;
  background: #171108; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 16px; box-shadow: var(--shadow); max-width: 240px;
}
.hero__badge b { color: var(--hijau); font-size: 0.9rem; }
.hero__badge span { display: block; font-size: 0.72rem; color: var(--muted); }

/* ---------- seksi umum ---------- */
.section { padding: 58px 0; }
.section--alt { background: var(--bg2); }
.section--emas { background: linear-gradient(160deg, #241905, #120e08 62%); }
.section--hijau { background: linear-gradient(160deg, #08231a, #0d0b06 62%); }
.section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.section-head .kicker {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--emas); margin-bottom: 10px;
}
.section--hijau .section-head .kicker { color: var(--hijau); }
.section-head h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); color: var(--putih); }
.section-head .lead { color: var(--muted); margin-top: 12px; }

.grid { display: grid; gap: 18px; }
.grid > * { min-width: 0; max-width: 100%; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* kartu umum */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--putih); }
.card p { color: var(--muted); font-size: 0.9rem; }
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.35rem;
  margin-bottom: 14px; background: rgba(255, 203, 46, 0.1);
}
.card--top { border-top: 3px solid var(--emas); }
.card--top.c-biru { border-top-color: var(--biru); }
.card--top.c-hijau { border-top-color: var(--hijau); }
.card--top.c-merah { border-top-color: var(--merah); }
.card--top.c-putih { border-top-color: #f7f2e6; }

/* ---------- langkah pemula ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 20px 20px; counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -14px; left: 18px;
  background: linear-gradient(135deg, var(--emas), var(--emas-tua));
  color: #221700; font-weight: 800; font-size: 0.8rem;
  border-radius: 9px; padding: 4px 10px; letter-spacing: 0.06em;
}
.step h3 { font-size: 1rem; margin: 6px 0 8px; }
.step p { color: var(--muted); font-size: 0.87rem; }
.step a { font-size: 0.82rem; font-weight: 700; }

/* ---------- sorotan merek (why) ---------- */
.why { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px; align-items: center; }
.why__list { list-style: none; display: grid; gap: 14px; }
.why__list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px;
}
.why__list .ic {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  background: rgba(255, 203, 46, 0.13); border: 1px solid rgba(255, 203, 46, 0.4);
}
.why__list li:nth-child(even) .ic {
  background: rgba(63, 140, 255, 0.14); border-color: rgba(63, 140, 255, 0.4);
}
.why__list b { display: block; font-size: 0.93rem; color: var(--putih); }
.why__list span { font-size: 0.82rem; color: var(--muted); }
.why__media img { border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow); }

/* ---------- pembayaran ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.pay-steps { counter-reset: pay; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.pay-step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 18px 16px; counter-increment: pay;
}
.pay-step::before {
  content: counter(pay);
  position: absolute; top: -12px; left: 16px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--biru); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
}
.pay-step h3 { font-size: 0.95rem; margin-bottom: 6px; }
.pay-step p { font-size: 0.83rem; }

/* ---------- seluler ---------- */
.mobile-wrap { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 34px; align-items: center; }
.mobile-wrap img { border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-list { list-style: none; display: grid; gap: 12px; }
.mobile-list li {
  display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--muted);
}
.mobile-list li::before {
  content: "✔"; flex: none; color: var(--hijau); font-weight: 800;
  background: rgba(47, 190, 127, 0.12); border: 1px solid rgba(47, 190, 127, 0.4);
  border-radius: 8px; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; font-size: 0.78rem;
}
.mobile-list b { color: var(--putih); }

/* ---------- testimoni ---------- */
.testi { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.testi blockquote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; font-size: 0.9rem; color: #e7dfc9; box-shadow: var(--shadow);
}
.testi .stars { color: var(--emas); letter-spacing: 2px; font-size: 0.85rem; }
.testi footer { margin-top: 12px; color: var(--muted); font-size: 0.8rem; }
.testi footer b { color: var(--putih); display: block; font-size: 0.86rem; }
.testi-note { text-align: center; color: #857a5e; font-size: 0.75rem; margin-top: 16px; }

/* ---------- Lab Kata Sandi (inovasi) ---------- */
.pwl {
  background: var(--card); border: 1px solid rgba(255, 203, 46, 0.3); border-radius: 18px;
  padding: 26px; box-shadow: var(--shadow); max-width: 880px; margin: 0 auto;
}
.pwl__row { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 20px; }
.pwl__field { position: relative; margin-bottom: 12px; }
.pwl__field input {
  width: 100%; background: #100c06; border: 1px solid var(--line);
  color: var(--putih); border-radius: 12px; padding: 13px 96px 13px 15px;
  font-size: 1rem; font-family: inherit; outline: none; letter-spacing: 0.04em;
}
.pwl__field input:focus { border-color: var(--emas); }
.pwl__toggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: #241b0c; color: var(--emas2); border: 1px solid var(--line);
  border-radius: 9px; padding: 7px 12px; font-size: 0.74rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.pwl__toggle:hover { border-color: var(--emas); }
.pwl__meter { display: flex; gap: 6px; margin: 4px 0 10px; }
.pwl__meter i {
  flex: 1 1 0; min-width: 0; height: 9px; border-radius: 5px;
  background: #2a2110; transition: background 0.25s;
}
.pwl__meter i.on-1 { background: var(--merah); }
.pwl__meter i.on-2 { background: #f08c2e; }
.pwl__meter i.on-3 { background: var(--emas); }
.pwl__meter i.on-4 { background: var(--hijau); }
.pwl__verdict { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.pwl__verdict.v-1 { color: var(--merah2); }
.pwl__verdict.v-2 { color: #f5a55e; }
.pwl__verdict.v-3 { color: var(--emas); }
.pwl__verdict.v-4 { color: var(--hijau); }
.pwl__eta { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }
.pwl__eta b { color: var(--putih); }
.pwl__checks { list-style: none; display: grid; gap: 8px; margin: 0; }
.pwl__checks li {
  display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: var(--muted);
}
.pwl__checks li::before {
  content: "○"; flex: none; width: 22px; height: 22px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #857a5e;
  background: #100c06; border: 1px solid var(--line);
}
.pwl__checks li.ok { color: #d9f2e4; }
.pwl__checks li.ok::before {
  content: "✓"; color: var(--hijau); border-color: rgba(47, 190, 127, 0.5);
  background: rgba(47, 190, 127, 0.12); font-weight: 800;
}
.pwl__tips { margin-top: 16px; }
.pwl__disclaimer { font-size: 0.75rem; color: #857a5e; border-top: 1px dashed var(--line); padding-top: 12px; margin-top: 16px; }

/* ---------- keamanan ---------- */
.lock-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

/* ---------- tanggung jawab ---------- */
.rg-wrap { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.rg-card {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--emas);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
}
.rg-card:nth-child(2) { border-left-color: var(--biru); }
.rg-card:nth-child(3) { border-left-color: var(--hijau); }
.rg-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.rg-card p { font-size: 0.85rem; color: var(--muted); }
.rg-banner {
  margin-top: 24px; background: rgba(229, 72, 77, 0.09);
  border: 1px solid rgba(229, 72, 77, 0.42); border-radius: var(--radius);
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
}
.rg-banner .ic { font-size: 1.4rem; flex: none; }
.rg-banner p { font-size: 0.85rem; color: #efd2cf; }
.rg-banner b { color: #fff; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 18px; transition: border-color 0.2s;
}
.faq-list details[open] { border-color: rgba(255, 203, 46, 0.5); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 15px 0;
  font-weight: 700; font-size: 0.93rem; color: var(--putih);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--emas); font-size: 1.2rem; flex: none; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list .a { padding: 0 0 16px; color: var(--muted); font-size: 0.88rem; }

/* ---------- pencarian & tagcloud ---------- */
.search-strip {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; box-shadow: var(--shadow);
}
.search-strip form {
  display: flex; gap: 8px; max-width: 560px; margin: 0 auto 18px;
}
.search-strip input[type="search"] {
  flex: 1 1 auto; min-width: 0; background: #100c06; border: 1px solid var(--line);
  color: var(--putih); border-radius: 999px; padding: 12px 18px;
  font-size: 0.9rem; font-family: inherit; outline: none;
}
.search-strip input[type="search"]:focus { border-color: var(--emas); }
.tagcloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tagcloud a {
  background: #1c1509; border: 1px solid var(--line); color: var(--putih);
  border-radius: 999px; padding: 6px 13px; font-size: 0.78rem; font-weight: 600;
}
.tagcloud a:hover { border-color: var(--emas); color: var(--emas); }

/* ---------- halaman artikel ---------- */
.page-hero {
  background: linear-gradient(120deg, #241905, #13100a 55%, #0a1c14);
  border-bottom: 1px solid var(--line); padding: 44px 0 40px;
}
.page-hero .cat-label {
  display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--emas); margin-bottom: 10px;
}
.page-hero h1 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); max-width: 22ch; }
.page-hero .meta { margin-top: 12px; color: var(--muted); font-size: 0.8rem; display: flex; flex-wrap: wrap; gap: 14px; }
.page-hero .desc { color: #ded5bd; margin-top: 12px; max-width: 70ch; }

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; padding: 44px 0 60px; }
.layout--full { grid-template-columns: minmax(0, 1fr); }

article.entry-content { min-width: 0; }
.entry-content h2 {
  font-size: 1.35rem; margin: 34px 0 12px; color: var(--putih);
  padding-left: 12px; border-left: 4px solid var(--emas);
}
.entry-content h2:nth-of-type(2n) { border-left-color: var(--biru); }
.entry-content h2:nth-of-type(3n) { border-left-color: var(--hijau); }
.entry-content h3 { font-size: 1.08rem; margin: 22px 0 8px; color: var(--putih); }
.entry-content p { margin: 0 0 14px; color: #d8cfb8; }
.entry-content ul, .entry-content ol { margin: 0 0 16px; color: #d8cfb8; }
.entry-content li { margin-bottom: 7px; }
.entry-content img.rounded { border-radius: 14px; border: 1px solid var(--line); margin: 18px 0; }
.entry-content figure { margin: 20px 0; }
.entry-content figcaption { font-size: 0.74rem; color: #857a5e; margin-top: 8px; }

.callout {
  border-radius: 12px; padding: 16px 18px; margin: 18px 0; font-size: 0.88rem;
  border: 1px solid rgba(63, 140, 255, 0.45); background: rgba(63, 140, 255, 0.09); color: #d3e0f7;
}
.callout--emas { border-color: rgba(255, 203, 46, 0.45); background: rgba(255, 203, 46, 0.08); color: #f0e5c0; }
.callout--hijau { border-color: rgba(47, 190, 127, 0.45); background: rgba(47, 190, 127, 0.08); color: #c8ecd9; }
.callout--merah { border-color: rgba(229, 72, 77, 0.5); background: rgba(229, 72, 77, 0.09); color: #f2d3d1; }
.callout b { color: #fff; }

.table-wrap {
  overflow-x: auto; margin: 18px 0; border: 1px solid var(--line);
  border-radius: 12px; background: var(--card);
}
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.84rem; min-width: 560px; }
.table-wrap th {
  background: #241b0c; color: var(--emas); text-align: left;
  padding: 11px 14px; font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
}
.table-wrap td { padding: 11px 14px; border-top: 1px solid var(--line); color: #d8cfb8; vertical-align: top; }
.table-wrap tbody tr:nth-child(even) { background: rgba(255, 203, 46, 0.025); }

.pill {
  display: inline-block; border-radius: 999px; padding: 2px 10px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
}
.pill--hijau { background: rgba(47, 190, 127, 0.16); color: var(--hijau); border: 1px solid rgba(47, 190, 127, 0.5); }
.pill--emas { background: rgba(255, 203, 46, 0.14); color: var(--emas); border: 1px solid rgba(255, 203, 46, 0.5); }
.pill--merah { background: rgba(229, 72, 77, 0.14); color: var(--merah2); border: 1px solid rgba(229, 72, 77, 0.5); }
.pill--biru { background: rgba(63, 140, 255, 0.14); color: var(--biru2); border: 1px solid rgba(63, 140, 255, 0.5); }

/* daftar promosi */
.promo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.promo-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.promo-card img { width: 100%; height: 170px; object-fit: cover; }
.promo-card .body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.promo-card h3 { font-size: 1rem; }
.promo-card p { font-size: 0.84rem; color: var(--muted); flex: 1; }
.promo-card .go { font-size: 0.8rem; font-weight: 800; }

/* ---------- sidebar ---------- */
.sidebar { display: grid; gap: 20px; align-content: start; min-width: 0; }
.widget {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.widget h3 { font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--emas); margin-bottom: 12px; }
.widget ul { list-style: none; }
.widget li { border-bottom: 1px dashed var(--line); }
.widget li:last-child { border-bottom: 0; }
.widget li a {
  display: block; padding: 9px 0; font-size: 0.86rem; color: #d8cfb8; font-weight: 600;
}
.widget li a:hover { color: var(--emas); }
.widget--cta { background: linear-gradient(160deg, #241905, #171108); border-color: rgba(255, 203, 46, 0.4); }
.widget--cta p { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.widget--cta .mini { font-size: 0.7rem; color: #857a5e; }

/* ---------- formulir ---------- */
.auth-wrap { max-width: 520px; margin: 0 auto; }
.auth-card {
  background: var(--card); border: 1px solid rgba(255, 203, 46, 0.28); border-radius: 18px;
  padding: 30px 28px; box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 1.5rem; margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); font-size: 0.86rem; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--putih); margin-bottom: 6px; }
.field input {
  width: 100%; background: #100c06; border: 1px solid var(--line);
  color: var(--putih); border-radius: 10px; padding: 12px 14px;
  font-size: 0.9rem; font-family: inherit; outline: none;
}
.field input:focus { border-color: var(--emas); }
.field .hint { font-size: 0.72rem; color: #857a5e; margin-top: 5px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.78rem; color: var(--muted); margin: 14px 0 18px; }
.check input { margin-top: 3px; flex: none; accent-color: var(--emas); }
.auth-alt { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 16px; }
.auth-note {
  margin-top: 18px; font-size: 0.72rem; color: #857a5e;
  border-top: 1px dashed var(--line); padding-top: 14px;
}

/* ---------- hasil pencarian ---------- */
.sr-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; margin-bottom: 12px;
}
.sr-item .crumb { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biru2); margin-bottom: 6px; }
.sr-item h3 { font-size: 0.98rem; margin-bottom: 6px; }
.sr-item p { font-size: 0.84rem; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer {
  background: #080604; border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--emas), var(--merah), var(--biru), var(--hijau)) 1;
  padding-top: 46px; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.footer-brand svg { width: 40px; height: 40px; flex: none; }
.footer-about { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.footer-badge {
  display: inline-block; background: rgba(229, 72, 77, 0.12); color: var(--merah2);
  border: 1px solid rgba(229, 72, 77, 0.45); border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; padding: 5px 12px;
}
.site-footer h3 { font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emas); margin-bottom: 12px; }
.site-footer ul { list-style: none; }
.site-footer li a { display: inline-block; padding: 5px 0; font-size: 0.82rem; color: var(--muted); }
.site-footer li a:hover { color: var(--emas); }
.footer-note { font-size: 0.7rem; color: #857a5e; margin-top: 10px; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badges span {
  background: #1c1509; border: 1px solid var(--line); border-radius: 8px;
  font-size: 0.72rem; color: #d8cfb8; padding: 5px 10px;
}
.footer-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding: 16px 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 0.74rem; color: #857a5e; }
.footer-disclaimer { font-size: 0.7rem; color: #857a5e; padding: 0 0 18px; line-height: 1.7; }

/* ---------- floatbar (slot + koin) ---------- */
.floatbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: linear-gradient(90deg, #241706 0%, #120e08 52%, #0a1c14 100%);
  border-top: 1px solid rgba(255, 203, 46, 0.55);
  box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.6);
}
.floatbar .container {
  display: flex; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px;
}
.reels { display: flex; gap: 5px; flex: none; }
.reel {
  width: 30px; height: 34px; overflow: hidden; border-radius: 7px;
  background: #0b0906; border: 1px solid rgba(255, 203, 46, 0.35);
}
.reel .strip { display: flex; flex-direction: column; }
.reel .strip b {
  height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 800;
}
.reel .strip { animation: roll 1.6s steps(4) infinite; }
.reel--mid .strip { animation-duration: 2.1s; animation-direction: reverse; }
.reel--slow .strip { animation-duration: 2.7s; }
@keyframes roll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.floatbar__mid { min-width: 0; flex: 1 1 auto; line-height: 1.3; }
.floatbar__mid .t1 { font-size: 0.84rem; font-weight: 800; color: var(--putih); }
.floatbar__mid .t1 .gold { color: var(--emas); }
.floatbar__mid .t2 { font-size: 0.68rem; color: var(--muted); }
.floatbar__cta { display: flex; gap: 10px; align-items: center; flex: none; position: relative; }
.floatbar__cta .btn { position: relative; z-index: 2; }
.coin { position: absolute; font-size: 1rem; z-index: 1; animation: coinflip 2.6s ease-in-out infinite; opacity: 0.9; }
.coin--1 { left: -6px; top: -16px; animation-delay: 0s; }
.coin--2 { right: -4px; top: -18px; animation-delay: 0.9s; }
.coin--3 { left: 46%; top: -22px; animation-delay: 1.7s; }
@keyframes coinflip {
  0% { transform: translateY(0) rotateY(0); opacity: 0.9; }
  50% { transform: translateY(-12px) rotateY(180deg); opacity: 1; }
  100% { transform: translateY(0) rotateY(360deg); opacity: 0.9; }
}

/* ---------- responsif ---------- */
@media (max-width: 1080px) {
  .menu-item a { padding: 9px 8px; font-size: 0.84rem; }
  .hdr-search input { width: 110px; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); padding: 46px 0 52px; }
  .hero__media { max-width: 520px; }
  .layout { grid-template-columns: minmax(0, 1fr); }
  .sidebar { order: 2; }
  .why, .mobile-wrap { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4, .lock-grid, .pay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pay-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pwl__row { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-navigation { display: none; margin: 0; }
  .main-navigation.is-open {
    display: block; position: fixed; inset: 0; top: 0; z-index: 140;
    background: rgba(8, 6, 4, 0.96); padding: 90px 6% 40px; overflow-y: auto;
  }
  .main-navigation .menu { flex-direction: column; align-items: stretch; gap: 4px; }
  .menu-item a { padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 12px; }
  .sub-menu {
    display: flex; position: static; box-shadow: none; border: 0;
    background: transparent; min-width: 0; padding: 0 0 6px 16px;
  }
  .hdr-search { display: none; }
}

@media (max-width: 760px) {
  .testi, .rg-wrap, .grid--3 { grid-template-columns: minmax(0, 1fr); }
  .grid--2 { grid-template-columns: minmax(0, 1fr); }
  .promo-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .topbar__left .txt { display: none; }
  .topbar .container { justify-content: center; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .hero__cta .btn { flex: 1 1 auto; }
  .floatbar__mid { display: none; }
  .floatbar__cta { flex: 1 1 auto; justify-content: stretch; }
  .floatbar__cta .btn { flex: 1 1 auto; padding: 12px 10px; font-size: 0.82rem; }
  .reels .reel:last-child { display: none; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .grid--4, .lock-grid, .pay-grid { grid-template-columns: minmax(0, 1fr); }
  .hero__badge { position: static; margin-top: 12px; max-width: none; }
  .pwl { padding: 18px 14px; }
  .pwl__field input { padding-right: 84px; font-size: 0.92rem; }
  .search-strip form { flex-direction: column; }
  .auth-card { padding: 22px 18px; }
}
