/* ==========================================================================
   Subur88 — Tema Situs (gaya WordPress theme output)
   Palet: merah · putih · hijau · kuning · biru · hitam
   ========================================================================== */

:root {
  --red: #d3172b;
  --red-2: #b01122;
  --red-soft: #fdeef0;
  --ink: #161219;
  --ink-2: #2a2430;
  --paper: #ffffff;
  --cream: #fdf7ef;
  --line: #ece5e9;
  --gold: #f7b500;
  --gold-2: #ffd24d;
  --gold-dark: #b98200;
  --green: #0e9f5b;
  --green-2: #0b7d47;
  --green-soft: #ecf8f1;
  --blue: #1d5fd6;
  --blue-soft: #eef4fe;
  --text: #2b2733;
  --muted: #6f6779;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(22, 18, 25, .08);
  --shadow-lg: 0 18px 50px rgba(22, 18, 25, .16);
  --wrap: 1180px;
  --header-h: 66px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;           /* pengaman overflow horizontal */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); }
h2 { font-size: clamp(1.4rem, 3.2vw, 2.05rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
h4 { font-size: 1.05rem; }
ul, ol { padding-left: 1.3em; margin: 0 0 1em; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 3000; width: auto; height: auto;
  clip: auto; clip-path: none; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.ico { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- Tombol ---------- */
.btn, .fbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 700 .95rem/1 var(--font); border-radius: 999px; cursor: pointer;
  padding: 12px 22px; border: 2px solid transparent; text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--sm { padding: 9px 18px; font-size: .88rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--ink); box-shadow: 0 6px 18px rgba(247, 181, 0, .45);
}
.btn--gold:hover { box-shadow: 0 10px 24px rgba(247, 181, 0, .55); }
.btn--red { background: linear-gradient(180deg, #e6293d, var(--red)); color: #fff; box-shadow: 0 6px 18px rgba(211, 23, 43, .35); }
.btn--red:hover { box-shadow: 0 10px 24px rgba(211, 23, 43, .45); }
.btn--green { background: linear-gradient(180deg, #12b467, var(--green)); color: #fff; box-shadow: 0 6px 18px rgba(14, 159, 91, .35); }
.btn--green:hover { box-shadow: 0 10px 24px rgba(14, 159, 91, .5); }
.btn--outline { border-color: var(--red); color: var(--red); background: #fff; }
.btn--outline:hover { background: var(--red-soft); }
.btn--ink { background: var(--ink); color: var(--gold-2); }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #d9d2de; font-size: .78rem; }
.topbar__in { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; padding: 7px 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__item .ico { width: 1em; height: 1em; color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(22, 18, 25, .1); }
.site-header__in { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.site-logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none !important; }
.site-logo__mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(160deg, #e6293d, var(--red-2)); color: var(--gold-2);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .18), 0 4px 10px rgba(211, 23, 43, .35);
}
.site-logo__ico { width: 22px; height: 22px; }
.site-logo__text { font-size: 1.3rem; font-weight: 800; color: var(--ink); letter-spacing: .2px; }
.site-logo__text em { font-style: normal; color: var(--red); }
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block; padding: 9px 13px; border-radius: 10px; font-weight: 600;
  color: var(--ink-2); font-size: .93rem; text-decoration: none !important;
}
.nav__link:hover { background: var(--red-soft); color: var(--red); }
.nav__link[aria-current="page"] { color: var(--red); background: var(--red-soft); }
.nav__item--cta { display: flex; align-items: center; gap: 8px; margin-left: 10px; }
.nav__search { display: none; }
.site-header__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.site-header__search { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink-2); text-decoration: none !important; }
.site-header__search:hover { background: var(--red-soft); color: var(--red); }
.site-header__actions .btn { display: inline-flex; }
.nav .burger { display: none; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding: 14px 0 4px; }
.crumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: .8rem; color: var(--muted); }
.crumbs__item { display: inline-flex; align-items: center; gap: 6px; }
.crumbs__link { color: var(--muted); text-decoration: none; }
.crumbs__link:hover { color: var(--red); }
.crumbs__sep { width: .85em; height: .85em; opacity: .5; }
.crumbs__item--cur { color: var(--ink); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: clamp(44px, 7vw, 76px) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: linear-gradient(180deg, var(--ink), #1e1826); color: #e8e2ec; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section__head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--red)); }
.section--ink .eyebrow { color: var(--gold-2); }
.section__sub { color: var(--muted); margin: 0; }
.section--ink .section__sub { color: #c9c1d2; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1100px 500px at 85% -10%, rgba(211, 23, 43, .16), transparent 60%),
  radial-gradient(700px 420px at -10% 110%, rgba(247, 181, 0, .14), transparent 55%),
  linear-gradient(180deg, #fff, var(--cream));
}
.hero__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding: clamp(40px, 6vw, 72px) 0; }
.hero h1 { margin-bottom: 16px; }
.hero h1 .accent { color: var(--red); }
.hero__lead { font-size: 1.06rem; color: var(--muted); max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 18px; }
.hero__note { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.chip-badge {
  display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 13px; font-size: .78rem; font-weight: 700; color: var(--ink-2);
  box-shadow: 0 2px 8px rgba(22, 18, 25, .05);
}
.chip-badge .ico { width: 1em; height: 1em; color: var(--green); }
.chip-badge--warn .ico { color: var(--red); }
.hero__media { position: relative; }
.hero__img { border-radius: 22px; box-shadow: var(--shadow-lg); border: 4px solid #fff; width: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
.hero__tag {
  position: absolute; display: inline-flex; align-items: center; gap: 7px; background: var(--ink);
  color: #fff; font-size: .78rem; font-weight: 700; padding: 8px 14px; border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.hero__tag .ico { color: var(--gold-2); width: 1.05em; height: 1.05em; }
.hero__tag--1 { top: 14px; left: -8px; }
.hero__tag--2 { bottom: 44px; right: -6px; background: var(--red); }
.hero__tag--3 { bottom: -10px; left: 26px; background: var(--green); }

/* ---------- Kartu kategori ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none !important; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card__img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.cat-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cat-card__t { font-size: 1.05rem; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.cat-card__t .ico { color: var(--red); }
.cat-card__d { font-size: .85rem; color: var(--muted); margin: 0; flex: 1; }
.cat-card__more { font-size: .82rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 5px; }
.cat-card__more .ico { width: .9em; height: .9em; }

/* ---------- Langkah pemula ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px;
  position: relative; counter-increment: step;
}
.step::before {
  content: "0" counter(step); font-size: 2.2rem; font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); -webkit-background-clip: text;
  background-clip: text; color: transparent; display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .88rem; color: var(--muted); margin: 0; }
.step__ico {
  position: absolute; top: 20px; right: 18px; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; background: var(--red-soft); color: var(--red);
}
.step__ico .ico { width: 22px; height: 22px; }

/* ---------- Keunggulan (icon cards) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: var(--radius-sm); padding: 22px;
}
.feat:nth-child(3n + 2) { border-left-color: var(--gold); }
.feat:nth-child(3n + 3) { border-left-color: var(--green); }
.feat__ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--ink); color: var(--gold-2); margin-bottom: 12px; }
.feat__ico .ico { width: 24px; height: 24px; }
.feat h3 { font-size: 1.02rem; }
.feat p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Mengapa memilih (list + checklist) ---------- */
.why-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }
.why-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.why-item:first-child { padding-top: 4px; }
.why-item__n {
  flex: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(160deg, #e6293d, var(--red-2)); color: #fff; font-weight: 800;
}
.why-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.why-item p { font-size: .9rem; color: var(--muted); margin: 0; }
.check-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.check-panel h3 { display: flex; align-items: center; gap: 9px; font-size: 1.05rem; }
.check-panel + .check-panel { margin-top: 16px; }
.check-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; font-size: .88rem; align-items: flex-start; }
.check-list .ico { width: 1.15em; height: 1.15em; margin-top: .22em; }
.check-list .ok { color: var(--green); }
.check-list .no { color: var(--red); }

/* ---------- Mobile experience ---------- */
.mob-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.mob-media { position: relative; text-align: center; }
.mob-media img { border-radius: 26px; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.mob-feature { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.mob-feature:last-child { border-bottom: 0; }
.mob-feature__ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.mob-feature h3 { font-size: .98rem; margin-bottom: 3px; }
.mob-feature p { font-size: .86rem; color: var(--muted); margin: 0; }

/* ---------- Testimoni ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.testi::before { content: "\201C"; position: absolute; top: 2px; right: 18px; font-size: 4rem; font-weight: 800; color: var(--red-soft); font-family: Georgia, serif; line-height: 1; }
.testi p { font-size: .92rem; color: var(--text); margin: 0 0 14px; }
.testi__who { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: .95rem;
}
.avatar--r { background: linear-gradient(160deg, #e6293d, var(--red-2)); }
.avatar--g { background: linear-gradient(160deg, #16c273, var(--green-2)); }
.avatar--b { background: linear-gradient(160deg, #4f86e8, var(--blue)); }
.avatar--y { background: linear-gradient(160deg, var(--gold-2), var(--gold)); color: var(--ink); }
.testi__name { font-weight: 800; font-size: .9rem; color: var(--ink); }
.testi__loc { font-size: .76rem; color: var(--muted); }
.testi-note { text-align: center; font-size: .76rem; color: var(--muted); margin: 18px 0 0; }

/* ---------- Kamus istilah (inovasi) ---------- */
.gloss-tools { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.gloss-filter {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-2); font: 700 .8rem var(--font);
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
}
.gloss-filter.is-on { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.gloss-search {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 18px; font: 600 .85rem var(--font);
  min-width: 210px; outline: none;
}
.gloss-search:focus { border-color: var(--red); }
.gloss-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gloss {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px;
  border-top: 3px solid var(--gold);
}
.gloss[data-cat="slot"] { border-top-color: var(--red); }
.gloss[data-cat="casino"] { border-top-color: var(--blue); }
.gloss[data-cat="poker"] { border-top-color: var(--green); }
.gloss[data-cat="sports"] { border-top-color: var(--gold-dark); }
.gloss dt { font-weight: 800; color: var(--ink); font-size: .95rem; display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.gloss dt .gcat { font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--cream); padding: 3px 8px; border-radius: 6px; }
.gloss dd { margin: 6px 0 0; font-size: .84rem; color: var(--muted); }
.gloss-empty { text-align: center; color: var(--muted); padding: 20px; grid-column: 1 / -1; }

/* ---------- Keamanan / RG split ---------- */
.duo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.duo-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.duo-card__ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); margin-bottom: 12px; }
.duo-card--red .duo-card__ico { background: var(--red-soft); color: var(--red); }
.duo-card h3 { font-size: 1.06rem; }
.duo-card p { font-size: .9rem; color: var(--muted); }
.duo-card__links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.rg-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.rg-point { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 22px; }
.rg-point__ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(247, 181, 0, .15); color: var(--gold-2); display: grid; place-items: center; margin-bottom: 12px; }
.rg-point h3 { font-size: 1rem; color: #fff; }
.rg-point p { font-size: .86rem; color: #c9c1d2; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; font-weight: 700; color: var(--ink); font-size: .97rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; margin-left: auto; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--red-soft); color: var(--red); display: grid; place-items: center;
  font-weight: 800; transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item[open] summary { color: var(--red); }
.faq-item__a { padding: 0 20px 18px; font-size: .9rem; color: var(--muted); }
.faq-item__a a { font-weight: 600; }

/* ---------- Tag cloud ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag-cloud a {
  display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 700; color: var(--ink-2);
  text-decoration: none !important; transition: all .15s;
}
.tag-cloud a:hover { background: var(--ink); color: var(--gold-2); border-color: var(--ink); transform: translateY(-2px); }
.tag-cloud a::before { content: "#"; color: var(--red); font-weight: 800; }
.tag-cloud a:hover::before { color: var(--gold-2); }
.tag-cloud .tag-hot { border-color: rgba(211, 23, 43, .35); background: var(--red-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--red-2), var(--red) 55%, #8f0d1b); border-radius: 22px; padding: clamp(30px, 5vw, 48px); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 181, 0, .25), transparent 65%);
}
.cta-band::before { top: -110px; left: -70px; }
.cta-band::after { bottom: -120px; right: -60px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #ffdfe3; max-width: 46em; margin: 0 auto 20px; position: relative; font-size: .95rem; }
.cta-band__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Artikel (entry-content) ---------- */
.entry-head { padding: clamp(24px, 4vw, 40px) 0 6px; }
.entry-head h1 { max-width: 22em; }
.page-hero { padding: clamp(30px, 5vw, 52px) 0 clamp(26px, 4vw, 40px); background: linear-gradient(180deg, #fff, var(--cream)); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 20em; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .8rem; color: var(--muted); margin-top: 10px; }
.page-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.page-hero__meta .ico { width: 1em; height: 1em; color: var(--red); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; padding: clamp(30px, 5vw, 54px) 0; align-items: start; }
.entry-content { font-size: .98rem; }
.entry-content > p { color: var(--text); }
.entry-content h2 { margin: 1.6em 0 .55em; padding-top: .4em; }
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 { margin: 1.4em 0 .5em; }
.entry-content img { border-radius: var(--radius); margin: 1.4em 0; box-shadow: var(--shadow); }
.entry-content img + em, .img-cap { display: block; text-align: center; font-size: .8rem; color: var(--muted); margin: -1em 0 1.4em; font-style: normal; }
.entry-content ul li, .entry-content ol li { margin-bottom: .45em; }
.entry-content strong { color: var(--ink); }
.article-hero-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); margin: 0 0 .8em; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.2em 0; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.entry-content table { border-collapse: collapse; width: 100%; min-width: 480px; font-size: .9rem; background: #fff; }
.entry-content th { background: var(--ink); color: var(--gold-2); text-align: left; padding: 12px 14px; font-size: .82rem; letter-spacing: .04em; }
.entry-content td { padding: 11px 14px; border-top: 1px solid var(--line); vertical-align: top; }
.entry-content tr:nth-child(even) td { background: var(--cream); }
.callout { display: flex; gap: 14px; border-radius: var(--radius-sm); padding: 18px 20px; margin: 1.3em 0; font-size: .9rem; border: 1px solid; }
.callout .ico { width: 1.4em; height: 1.4em; flex: none; margin-top: .15em; }
.callout--info { background: var(--blue-soft); border-color: #cbdcf9; color: #274e8f; }
.callout--warn { background: var(--red-soft); border-color: #f6cdd2; color: #8f1020; }
.callout--ok { background: var(--green-soft); border-color: #c4ead6; color: #0b6b3d; }
.toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 0 0 26px; }
.toc h2 { font-size: .95rem; margin-bottom: 10px; display: flex; gap: 8px; align-items: center; color: var(--ink); }
.toc h2 .ico { color: var(--red); }
.toc ol { margin: 0; padding-left: 1.2em; font-size: .88rem; }
.toc li { margin-bottom: 5px; }
.mini-faq { margin-top: 1.6em; }
.mini-faq h3 { font-size: 1.1rem; }
.author-box { display: flex; gap: 14px; align-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-top: 2em; }
.author-box .avatar { flex: none; }
.author-box b { display: block; font-size: .92rem; color: var(--ink); }
.author-box span { font-size: .78rem; color: var(--muted); }

/* ---------- Sidebar ---------- */
.sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.side-card h3 { font-size: .95rem; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.side-card h3 .ico { color: var(--red); }
.side-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.side-card li a { display: flex; gap: 10px; align-items: center; font-size: .87rem; font-weight: 600; color: var(--ink-2); text-decoration: none !important; }
.side-card li a:hover { color: var(--red); }
.side-card li a .ico { width: .85em; height: .85em; color: var(--red); }
.side-card--cta { background: linear-gradient(160deg, var(--ink), #241d2c); text-align: center; }
.side-card--cta h3 { color: #fff; justify-content: center; }
.side-card--cta p { font-size: .82rem; color: #c9c1d2; }
.side-note { font-size: .74rem; color: var(--muted); text-align: center; margin: 10px 0 0; }

/* ---------- Promosi cards ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.promo-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-card__imgwrap { position: relative; }
.promo-card__img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.promo-flag { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 7px; }
.promo-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.promo-card__meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: .72rem; color: var(--muted); }
.promo-card__meta span { display: inline-flex; align-items: center; gap: 5px; background: var(--cream); padding: 4px 10px; border-radius: 6px; font-weight: 700; }
.promo-card__meta .ico { width: .95em; height: .95em; color: var(--red); }
.promo-card h3 { font-size: 1.05rem; margin: 4px 0 0; }
.promo-card p { font-size: .86rem; color: var(--muted); margin: 0; flex: 1; }
.promo-card .btn { align-self: flex-start; }

/* ---------- Form auth ---------- */
.auth-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; padding: clamp(34px, 6vw, 60px) 0; }
.auth-side img { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 18px; }
.auth-side h2 { font-size: 1.3rem; }
.auth-side p { font-size: .9rem; color: var(--muted); }
.auth-points { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 11px; }
.auth-points li { display: flex; gap: 10px; font-size: .88rem; align-items: flex-start; }
.auth-points .ico { color: var(--green); width: 1.15em; height: 1.15em; margin-top: .2em; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-lg); }
.auth-card h1 { font-size: 1.5rem; margin-bottom: 6px; }
.auth-card__sub { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: 500 .95rem var(--font); color: var(--ink); background: #fff; outline: none; transition: border .15s;
}
.field input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(211, 23, 43, .12); }
.field input::placeholder { color: #b9b2c1; }
.field .hint { font-size: .74rem; color: var(--muted); margin-top: 5px; }
.check-line { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--muted); margin: 4px 0 20px; }
.check-line input { width: 17px; height: 17px; margin-top: .15em; accent-color: var(--red); flex: none; }
.auth-alt { text-align: center; font-size: .85rem; color: var(--muted); margin: 16px 0 0; }
.auth-legal { font-size: .72rem; color: var(--muted); text-align: center; margin: 14px 0 0; }

/* ---------- Landing penawaran ---------- */
.land-hero { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.land-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.land-hero__in { position: relative; padding: clamp(48px, 8vw, 90px) 0; max-width: 780px; }
.land-hero h1 { color: #fff; }
.land-hero .eyebrow { color: var(--gold-2); }
.land-hero p { color: #e4dce9; font-size: 1.03rem; }
.land-hero__points { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.land-hero__points span { display: inline-flex; gap: 7px; align-items: center; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); padding: 8px 15px; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.land-hero__points .ico { color: var(--gold-2); width: 1em; height: 1em; }
.land-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

/* ---------- Halaman pencarian ---------- */
.search-hero { padding: clamp(34px, 6vw, 56px) 0; background: linear-gradient(180deg, #fff, var(--cream)); border-bottom: 1px solid var(--line); text-align: center; }
.search-box { display: flex; gap: 10px; max-width: 640px; margin: 22px auto 14px; }
.search-box input {
  flex: 1; min-width: 0; padding: 14px 20px; border: 2px solid var(--line); border-radius: 999px;
  font: 600 .95rem var(--font); outline: none;
}
.search-box input:focus { border-color: var(--red); }
.search-results { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.sr-item { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; text-decoration: none !important; }
.sr-item:hover { border-color: var(--red); }
.sr-item h3 { font-size: 1rem; margin-bottom: 4px; color: var(--red); display: flex; align-items: center; gap: 8px; }
.sr-item p { font-size: .85rem; color: var(--muted); margin: 0; }
.sr-empty { text-align: center; color: var(--muted); padding: 26px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdc5d6; margin-top: auto; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding: clamp(38px, 6vw, 56px) 20px; }
.site-footer .site-logo__text { color: #fff; }
.site-footer p { font-size: .84rem; color: #b3aabf; }
.site-footer__badges { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 14px; align-items: center; }
.badge18 {
  width: 46px; height: 46px; border-radius: 50%; border: 3px solid var(--red); color: #ff8f9d;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem; background: rgba(211, 23, 43, .14);
}
.ftag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; padding: 5px 11px; color: #d9d2de; }
.site-footer__col h3 { color: #fff; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer__col a { color: #cdc5d6; font-size: .86rem; text-decoration: none; }
.site-footer__col a:hover { color: var(--gold-2); text-decoration: underline; }
.site-footer__pay { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .1); padding: 16px 20px; }
.site-footer__pay-t { font-size: .78rem; color: #8f869c; margin-right: 4px; }
.site-footer__legal { border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 20px calc(26px + 96px + env(safe-area-inset-bottom)); text-align: center; }
.site-footer__legal p { font-size: .78rem; color: #8f869c; margin: 0 0 8px; }
.site-footer__fine { font-size: .7rem !important; line-height: 1.65; max-width: 68em; margin: 0 auto; }

/* ---------- Floating CTA (slot + koin) ---------- */
.float-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2100; pointer-events: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(22, 18, 25, 0), rgba(22, 18, 25, .82) 38%);
}
.float-cta__in {
  pointer-events: auto; max-width: 640px; margin: 0 auto; height: 64px; border-radius: 18px;
  background: linear-gradient(180deg, #2b2433, var(--ink));
  border: 2px solid var(--gold); box-shadow: 0 -2px 30px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .12);
  display: flex; align-items: center; gap: 12px; padding: 0 10px; overflow: hidden; position: relative;
}
.float-cta__reels { display: flex; gap: 6px; position: relative; width: 108px; flex: none; }
.reel { width: 26px; height: 40px; border-radius: 8px; overflow: hidden; background: linear-gradient(180deg, #f8f4ef, #e7ded2); border: 2px solid var(--gold); position: relative; }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .22), transparent 30%, transparent 70%, rgba(0, 0, 0, .22)); }
.reel__strip { display: flex; flex-direction: column; align-items: center; animation: reelspin 2.4s linear infinite; animation-delay: var(--d); }
.reel__sym { height: 40px; font-size: 21px; line-height: 40px; }
@keyframes reelspin { to { transform: translateY(-50%); } }
.coin-fx {
  position: absolute; bottom: 4px; left: var(--x); width: var(--sz); height: var(--sz);
  border-radius: 50%; background: radial-gradient(circle at 32% 30%, #ffe9a8, var(--gold) 55%, #b98200);
  box-shadow: 0 0 8px rgba(247, 181, 0, .8); opacity: 0;
  animation: coinup 2.6s ease-in var(--dl) infinite;
}
@keyframes coinup {
  0% { transform: translateY(0) scale(.4); opacity: 0; }
  22% { opacity: 1; }
  100% { transform: translateY(-72px) scale(1); opacity: 0; }
}
.float-cta__btns { display: flex; gap: 9px; flex: 1; }
.fbtn { flex: 1; font-size: .98rem; letter-spacing: .06em; padding: 12px 10px; border-radius: 13px; position: relative; overflow: hidden; }
.fbtn::after { content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .45), transparent); animation: shine 2.8s ease-in-out infinite; }
@keyframes shine { 0%, 55% { left: -80%; } 100% { left: 130%; } }
.fbtn--gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--ink); box-shadow: 0 4px 0 var(--gold-dark), 0 8px 18px rgba(247, 181, 0, .5); }
.fbtn--green { background: linear-gradient(180deg, #16c273, var(--green)); color: #fff; box-shadow: 0 4px 0 var(--green-2), 0 8px 18px rgba(14, 159, 91, .5); }
.fbtn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--gold-dark); }

@media (prefers-reduced-motion: reduce) {
  .reel__strip, .coin-fx, .fbtn::after { animation: none; }
  .reel__strip { transform: translateY(-40px); }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); display: grid; }
  .feat-grid, .gloss-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .hero__in { grid-template-columns: 1fr; gap: 30px; }
  .hero__media { max-width: 560px; margin: 0 auto; width: 100%; }
  .cat-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid, .mob-grid, .auth-layout, .promo-grid { grid-template-columns: 1fr; }
  .testi-grid, .duo-grid, .rg-points, .land-steps { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-header__actions .btn--outline { display: none; }
  .site-header__actions .btn--gold { display: none; }
  .site-header__actions .site-header__search { margin-left: auto; }
  .site-header__actions { margin-left: auto; }
}
@media (max-width: 820px) {
  .nav__list {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 2px; padding: 10px 14px 16px; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(22, 18, 25, .12); display: none;
  }
  .nav.is-open .nav__list { display: flex; }
  .nav__link { padding: 12px 14px; font-size: 1rem; }
  .nav__item--cta { margin: 10px 0 0; flex-wrap: wrap; }
  .nav__search { display: inline-grid; place-items: center; width: 40px; height: 40px; color: var(--ink-2); }
  .nav { margin-left: auto; }
  .nav .burger {
    display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer; border-radius: 10px;
  }
  .nav .burger:hover { background: var(--red-soft); }
  .burger__box, .burger__box::before, .burger__inner, .burger__box::after {
    display: block; width: 22px; height: 2.5px; border-radius: 3px; background: var(--ink);
    transition: transform .2s, opacity .2s;
  }
  .burger__box { position: relative; }
  .burger__box::before, .burger__box::after { content: ""; position: absolute; left: 0; }
  .burger__box::before { top: -7px; }
  .burger__box::after { top: 7px; }
  .nav.is-open .burger__inner { opacity: 0; }
  .nav.is-open .burger__box::before { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .burger__box::after { transform: translateY(-7px) rotate(-45deg); }
  .sidebar { grid-template-columns: 1fr; }
  .float-cta__reels { width: 92px; }
  .reel { width: 22px; height: 34px; }
  .reel__sym { height: 34px; font-size: 17px; line-height: 34px; }
  .fbtn { font-size: .9rem; }
}
@media (max-width: 620px) {
  .topbar__in { gap: 4px 14px; padding-top: 8px; padding-bottom: 8px; }
  .topbar__item { white-space: normal; line-height: 1.5; }
  .cat-grid, .steps, .feat-grid, .gloss-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .gloss-search { min-width: 0; width: 100%; }
  .gloss-tools { flex-direction: column; align-items: stretch; }
  .gloss-filter { width: 100%; }
  .hero__tag--2 { bottom: 22px; }
  .hero__tag { font-size: .7rem; padding: 6px 11px; }
  .search-box { flex-direction: column; border-radius: 0; }
  .search-box input { width: 100%; text-align: center; }
  .search-box .btn { width: 100%; }
  .float-cta__in { gap: 8px; border-radius: 15px; height: 58px; padding: 0 8px; }
  .float-cta__reels { width: 74px; gap: 4px; }
  .reel { width: 19px; height: 30px; }
  .reel__sym { height: 30px; font-size: 15px; line-height: 30px; }
  .fbtn { font-size: .84rem; padding: 11px 8px; }
  .site-footer__legal { padding-bottom: calc(22px + 82px + env(safe-area-inset-bottom)); }
}

/* ---------- Print kecil & aksesibilitas ---------- */
:focus-visible { outline: 3px solid rgba(29, 95, 214, .55); outline-offset: 2px; }
