@charset "utf-8";
/*!
 * bangjago88 — Tema Informasi Hiburan Digital
 * Palet: hitam · merah · emas · cokelat · hijau · ungu · biru · oranye
 */

/* ============ 1. Token Desain ============ */
:root {
  --c-bg: #0b0d10;
  --c-bg-2: #12151b;
  --c-bg-3: #181c24;
  --c-bg-4: #1f242e;
  --c-line: #2a3038;
  --c-line-2: #363d47;

  --c-red: #d22b2b;
  --c-red-d: #8e1b1b;
  --c-red-l: #ef4a4a;
  --c-gold: #f2b233;
  --c-gold-l: #ffd86b;
  --c-gold-d: #b8860b;
  --c-orange: #f2761b;
  --c-green: #1f9d55;
  --c-green-l: #34c46e;
  --c-purple: #6b3fa0;
  --c-purple-l: #8b5fc0;
  --c-blue: #2d6cdf;
  --c-blue-l: #4d8bf5;
  --c-brown: #5a3a22;
  --c-brown-l: #7d5433;

  --t-1: #f5f5f7;
  --t-2: #b9c0cc;
  --t-3: #8b93a1;
  --t-4: #656d7a;

  --grad-gold: linear-gradient(180deg, #ffe9a8 0%, #f2b233 48%, #b8860b 100%);
  --grad-red: linear-gradient(180deg, #ef4a4a 0%, #d22b2b 50%, #8e1b1b 100%);
  --grad-green: linear-gradient(180deg, #34c46e 0%, #1f9d55 100%);
  --grad-dark: linear-gradient(180deg, #1f242e 0%, #12151b 100%);

  --r-s: 8px;
  --r-m: 12px;
  --r-l: 18px;
  --r-xl: 26px;

  --sh-1: 0 2px 10px rgba(0, 0, 0, .34);
  --sh-2: 0 8px 28px rgba(0, 0, 0, .46);
  --sh-gold: 0 4px 18px rgba(242, 178, 51, .3);
  --sh-red: 0 4px 18px rgba(210, 43, 43, .34);

  --wrap: 1240px;
  --ff: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --ff-d: "Trebuchet MS", "Segoe UI", Roboto, sans-serif;
  --dock-h: 76px;
}

/* ============ 2. Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.75;
  color: var(--t-1);
  background: var(--c-bg);
  background-image:
    radial-gradient(1100px 520px at 12% -6%, rgba(107, 63, 160, .17), transparent 62%),
    radial-gradient(900px 460px at 88% 2%, rgba(210, 43, 43, .15), transparent 60%),
    radial-gradient(700px 420px at 50% 100%, rgba(45, 108, 223, .1), transparent 62%);
  background-attachment: fixed;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--c-gold-l); text-decoration: none; transition: color .18s; }
a:hover { color: var(--c-gold); text-decoration: underline; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5 { font-family: var(--ff-d); line-height: 1.3; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.2px; }
h1 { font-size: clamp(1.6rem, 4.4vw, 2.5rem); }
h2 { font-size: clamp(1.32rem, 3.1vw, 1.85rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.32rem); }
h4 { font-size: 1.06rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.4em; }
li { margin-bottom: .5em; }
strong { color: #fff; font-weight: 700; }
blockquote {
  margin: 1.5em 0; padding: 1em 1.3em;
  border-left: 4px solid var(--c-gold);
  background: rgba(242, 178, 51, .07);
  border-radius: 0 var(--r-m) var(--r-m) 0;
  color: var(--t-2);
}
code {
  font-family: "SFMono-Regular", Consolas, monospace; font-size: .9em;
  background: var(--c-bg-3); padding: .16em .45em; border-radius: 5px;
  color: var(--c-gold-l); border: 1px solid var(--c-line);
}
pre {
  background: var(--c-bg-2); border: 1px solid var(--c-line);
  border-radius: var(--r-m); padding: 1.1em 1.2em; overflow-x: auto;
  font-size: .88rem; line-height: 1.65;
}
pre code { background: none; border: 0; padding: 0; color: var(--t-2); }
hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--c-line-2), transparent); margin: 2.4em 0; }

/* ============ 3. Layout ============ */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }
.sec { padding: 46px 0; }
.sec--tight { padding: 30px 0; }
.grid { display: grid; gap: 18px; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c-gold); color: #1a1206; padding: 10px 18px; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ============ 4. Header ============ */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11, 13, 16, .93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 1px 0 rgba(242, 178, 51, .12), var(--sh-1);
}
.hdr__bar { display: flex; align-items: center; gap: 14px; min-height: 66px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img, .brand svg { height: 40px; width: auto; }
.hdr__nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.hdr__nav > li { list-style: none; position: relative; margin: 0; }
.hdr__nav ul { list-style: none; margin: 0; padding: 0; }
.nav__a {
  display: block; padding: 9px 13px; font-size: .93rem; font-weight: 600;
  color: var(--t-2); border-radius: var(--r-s); white-space: nowrap;
}
.nav__a:hover, .nav__a[aria-current="page"] { color: var(--c-gold-l); background: rgba(242, 178, 51, .1); text-decoration: none; }
.nav__a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--c-gold); }
.has-sub > .nav__a::after { content: ""; display: inline-block; margin-left: 6px; border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px); }
.sub {
  position: absolute; top: 100%; left: 0; min-width: 218px;
  background: var(--c-bg-3); border: 1px solid var(--c-line-2);
  border-radius: var(--r-m); box-shadow: var(--sh-2); padding: 7px;
  opacity: 0; visibility: hidden; transform: translateY(7px); transition: .18s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: block; padding: 8px 12px; font-size: .9rem; color: var(--t-2); border-radius: var(--r-s); }
.sub a:hover { background: rgba(242, 178, 51, .12); color: var(--c-gold-l); text-decoration: none; }
.hdr__act { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.burger {
  display: none; width: 44px; height: 40px; background: var(--c-bg-3);
  border: 1px solid var(--c-line-2); border-radius: var(--r-s); cursor: pointer; padding: 10px 9px;
}
.burger span { display: block; height: 2px; background: var(--c-gold); border-radius: 2px; margin: 3px 0; transition: .2s; }
.mnav { display: none; border-top: 1px solid var(--c-line); background: var(--c-bg-2); max-height: 74vh; overflow-y: auto; }
.mnav.open { display: block; }
.mnav ul { list-style: none; margin: 0; padding: 8px 0 16px; }
.mnav li { margin: 0; }
.mnav a { display: block; padding: 11px 20px; color: var(--t-2); font-size: .95rem; font-weight: 600; border-bottom: 1px solid rgba(42, 48, 56, .5); }
.mnav a:hover { background: rgba(242, 178, 51, .09); color: var(--c-gold-l); text-decoration: none; }
.mnav .sub-i { padding-left: 38px; font-weight: 400; font-size: .9rem; color: var(--t-3); }

/* ============ 5. Tombol ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r-s); border: 1px solid transparent;
  font-family: var(--ff-d); font-size: .95rem; font-weight: 700; letter-spacing: .2px;
  cursor: pointer; text-align: center; transition: transform .16s, box-shadow .16s, filter .16s;
  text-decoration: none !important; line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--grad-gold); color: #1a1206; border-color: #ffe9a8; box-shadow: var(--sh-gold); }
.btn--red { background: var(--grad-red); color: #fff; border-color: #ef6a6a; box-shadow: var(--sh-red); }
.btn--green { background: var(--grad-green); color: #04240f; border-color: #56dc8d; box-shadow: 0 4px 18px rgba(31, 157, 85, .3); }
.btn--ghost { background: rgba(255, 255, 255, .05); color: var(--t-1); border-color: var(--c-line-2); }
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold-l); }
.btn--sm { padding: 7px 14px; font-size: .85rem; }
.btn--lg { padding: 14px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ============ 6. Marquee Info & Pemenang ============ */
.tick {
  background: linear-gradient(90deg, var(--c-red-d), var(--c-red) 45%, var(--c-brown));
  border-bottom: 1px solid rgba(242, 178, 51, .34);
  overflow: hidden; position: relative;
}
.tick__in { display: flex; align-items: center; gap: 12px; padding: 7px 0; }
.tick__lb {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad-gold); color: #1a1206;
  font-size: .765rem; font-weight: 800; letter-spacing: .6px;
  padding: 4px 11px; border-radius: 20px; text-transform: uppercase;
}
.tick__vp { flex: 1; overflow: hidden; }
.tick__tr { display: inline-flex; white-space: nowrap; animation: scrollX 42s linear infinite; }
.tick__tr span { padding-right: 46px; font-size: .87rem; color: #fff6e0; font-weight: 500; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick:hover .tick__tr, .win:hover .win__tr { animation-play-state: paused; }

.win {
  background: var(--c-bg-2); border: 1px solid var(--c-line);
  border-radius: var(--r-l); padding: 13px 0; overflow: hidden; position: relative;
}
.win::before, .win::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
}
.win::before { left: 0; background: linear-gradient(90deg, var(--c-bg-2), transparent); }
.win::after { right: 0; background: linear-gradient(270deg, var(--c-bg-2), transparent); }
.win__tr { display: inline-flex; white-space: nowrap; animation: scrollX 46s linear infinite; }
.win__i {
  display: inline-flex; align-items: center; gap: 9px; margin-right: 14px;
  background: var(--c-bg-4); border: 1px solid var(--c-line-2);
  border-radius: 30px; padding: 6px 15px 6px 7px; font-size: .85rem;
}
.win__av {
  width: 27px; height: 27px; flex-shrink: 0; border-radius: 50%;
  background: var(--grad-gold); color: #1a1206;
  display: grid; place-items: center; font-weight: 800; font-size: .775rem;
}
.win__u { color: var(--t-1); font-weight: 600; }
.win__g { color: var(--t-3); font-size: .805rem; }
.win__t { color: var(--c-green-l); font-weight: 700; font-family: var(--ff-d); }

/* ============ 7. Hero ============ */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--c-line); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 400px at 78% 34%, rgba(242, 178, 51, .2), transparent 62%),
    radial-gradient(620px 340px at 22% 74%, rgba(107, 63, 160, .24), transparent 62%),
    linear-gradient(160deg, #12151b 0%, #0b0d10 58%, #17110f 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(242, 178, 51, .05) 58px 59px),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(242, 178, 51, .035) 58px 59px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 78%);
}
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 40px; align-items: center; padding: 54px 0 58px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 17px;
  background: rgba(242, 178, 51, .12); border: 1px solid rgba(242, 178, 51, .4);
  color: var(--c-gold-l); font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  padding: 5px 14px; border-radius: 22px; text-transform: uppercase;
}
.hero h1 { margin-bottom: .5em; }
.hero h1 .hl { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__p { font-size: 1.06rem; color: var(--t-2); max-width: 60ch; margin-bottom: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--c-line-2);
  border-radius: 22px; padding: 6px 14px; font-size: .82rem; color: var(--t-2);
}
.chip b { color: var(--c-gold-l); font-weight: 700; }

/* Mesin slot dekoratif */
.slotm {
  position: relative; background: linear-gradient(165deg, #262b35, #14181f);
  border: 2px solid var(--c-gold-d); border-radius: var(--r-xl);
  padding: 20px; box-shadow: var(--sh-2), inset 0 1px 0 rgba(255, 255, 255, .09);
}
.slotm::before {
  content: ""; position: absolute; inset: -2px; border-radius: var(--r-xl); z-index: -1;
  background: linear-gradient(140deg, var(--c-gold), var(--c-red), var(--c-purple), var(--c-gold));
  filter: blur(13px); opacity: .38;
}
.slotm__top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 15px; padding-bottom: 12px; border-bottom: 1px dashed rgba(242, 178, 51, .32);
}
.slotm__ttl { font-family: var(--ff-d); font-size: .88rem; font-weight: 800; color: var(--c-gold-l); letter-spacing: 1px; text-transform: uppercase; }
.slotm__lamp { display: flex; gap: 6px; }
.slotm__lamp i { width: 9px; height: 9px; border-radius: 50%; background: var(--c-red); box-shadow: 0 0 8px var(--c-red); animation: lamp 1.5s ease-in-out infinite; }
.slotm__lamp i:nth-child(2) { background: var(--c-gold); box-shadow: 0 0 8px var(--c-gold); animation-delay: .25s; }
.slotm__lamp i:nth-child(3) { background: var(--c-green); box-shadow: 0 0 8px var(--c-green); animation-delay: .5s; }
@keyframes lamp { 0%, 100% { opacity: 1; } 50% { opacity: .28; } }
.slotm__reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 15px; }
.reel {
  background: linear-gradient(180deg, #0a0c10, #1a1f28 50%, #0a0c10);
  border: 1px solid var(--c-line-2); border-radius: var(--r-m);
  height: 96px; display: grid; place-items: center; font-size: 2.05rem;
  box-shadow: inset 0 3px 12px rgba(0, 0, 0, .68);
  overflow: hidden; position: relative;
}
.reel span { animation: spin 2.6s cubic-bezier(.36, .04, .2, 1) infinite; }
.reel:nth-child(2) span { animation-delay: .2s; }
.reel:nth-child(3) span { animation-delay: .4s; }
@keyframes spin {
  0%, 62% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(-46px); opacity: 0; }
  71% { transform: translateY(46px); opacity: 0; }
  80%, 100% { transform: translateY(0); opacity: 1; }
}
.slotm__note { font-size: .775rem; color: var(--t-4); text-align: center; line-height: 1.55; }

/* ============ 8. Kartu ============ */
.card {
  background: var(--c-bg-2); border: 1px solid var(--c-line);
  border-radius: var(--r-l); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(242, 178, 51, .5); box-shadow: var(--sh-2); }
.card__img { position: relative; aspect-ratio: 600/340; background: var(--c-bg-3); overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card__img img { transform: scale(1.045); }
.card__bd { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; }
.card__ttl { font-family: var(--ff-d); font-size: 1.03rem; font-weight: 700; margin: 0 0 7px; line-height: 1.35; }
.card__ttl a { color: var(--t-1); display: inline-block; padding: 3px 0; }
.card__ttl a:hover { color: var(--c-gold-l); text-decoration: none; }
.card__ex { font-size: .87rem; color: var(--t-3); margin: 0 0 12px; flex: 1; line-height: 1.62; }
.card__ft { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .78rem; color: var(--t-4); border-top: 1px solid var(--c-line); padding-top: 11px; margin-top: auto; }
.card__lk { color: var(--c-gold-l); font-weight: 700; font-size: .84rem; display: inline-block; padding: 4px 0; }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .765rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px; white-space: nowrap;
}
.badge--gold { background: rgba(242, 178, 51, .17); color: var(--c-gold-l); border: 1px solid rgba(242, 178, 51, .4); }
.badge--red { background: rgba(210, 43, 43, .17); color: #ff8080; border: 1px solid rgba(210, 43, 43, .42); }
.badge--green { background: rgba(31, 157, 85, .17); color: var(--c-green-l); border: 1px solid rgba(31, 157, 85, .42); }
.badge--purple { background: rgba(107, 63, 160, .2); color: #b48bdf; border: 1px solid rgba(107, 63, 160, .48); }
.badge--blue { background: rgba(45, 108, 223, .17); color: var(--c-blue-l); border: 1px solid rgba(45, 108, 223, .42); }
.badge--orange { background: rgba(242, 118, 27, .17); color: #ff9b52; border: 1px solid rgba(242, 118, 27, .42); }
.card__img .badge { position: absolute; top: 11px; left: 11px; z-index: 2; backdrop-filter: blur(4px); background-color: rgba(11, 13, 16, .7); }

/* ============ 9. Judul Bagian ============ */
.sh { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.sh__t { margin: 0; position: relative; padding-left: 15px; }
.sh__t::before { content: ""; position: absolute; left: 0; top: .18em; bottom: .18em; width: 5px; border-radius: 3px; background: var(--grad-gold); }
.sh__s { margin: 7px 0 0; font-size: .93rem; color: var(--t-3); max-width: 68ch; }
.sh__lk { font-size: .89rem; font-weight: 700; white-space: nowrap; }

/* ============ 10. Tabel Peringkat ============ */
.lb { background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: var(--r-l); overflow: hidden; }
.lb__hd {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 15px 18px; background: linear-gradient(90deg, rgba(210, 43, 43, .17), rgba(107, 63, 160, .15));
  border-bottom: 1px solid var(--c-line);
}
.lb__ttl { font-family: var(--ff-d); font-size: 1.03rem; font-weight: 800; margin: 0; color: var(--c-gold-l); }
.lb__nt { font-size: .78rem; color: var(--t-3); display: flex; align-items: center; gap: 6px; }
.lb__nt i { width: 7px; height: 7px; border-radius: 50%; background: var(--c-green); box-shadow: 0 0 7px var(--c-green); animation: lamp 2s infinite; }
.tbl-w { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .89rem; }
thead th {
  background: var(--c-bg-3); color: var(--c-gold-l); font-family: var(--ff-d);
  font-size: .8rem; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
  text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--c-line-2); white-space: nowrap;
}
tbody td { padding: 12px 14px; border-bottom: 1px solid rgba(42, 48, 56, .68); color: var(--t-2); vertical-align: top; }
/* Target sentuh: tautan di dalam sel tabel diberi area klik lebih tinggi */
tbody td a { display: inline-block; padding: 4px 0; line-height: 1.5; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(2n) { background: rgba(255, 255, 255, .018); }
tbody tr:hover { background: rgba(242, 178, 51, .05); }
.rk { display: inline-grid; place-items: center; width: 27px; height: 27px; border-radius: 7px; font-family: var(--ff-d); font-weight: 800; font-size: .82rem; background: var(--c-bg-4); color: var(--t-2); }
.rk--1 { background: var(--grad-gold); color: #1a1206; }
.rk--2 { background: linear-gradient(180deg, #e8ecf2, #9aa3b0); color: #1a1d24; }
.rk--3 { background: linear-gradient(180deg, #d99a5c, #9e6529); color: #1a1206; }
.gname { color: var(--t-1); font-weight: 600; }
.gname:hover { color: var(--c-gold-l); text-decoration: none; }
.bar { display: flex; align-items: center; gap: 9px; min-width: 108px; }
.bar__t { flex: 1; height: 6px; background: var(--c-bg-4); border-radius: 4px; overflow: hidden; }
.bar__f { height: 100%; border-radius: 4px; background: var(--grad-gold); }
.bar__f--g { background: var(--grad-green); }
.bar__f--p { background: linear-gradient(90deg, #8b5fc0, #6b3fa0); }
.bar__v { font-size: .8rem; color: var(--t-3); font-variant-numeric: tabular-nums; min-width: 34px; }

/* ============ 11. Awan Tag & Pencarian ============ */
.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-bg-3); border: 1px solid var(--c-line-2);
  border-radius: 22px; padding: 7px 15px; font-size: .85rem; color: var(--t-2); font-weight: 500;
}
.tag:hover { background: rgba(242, 178, 51, .13); border-color: var(--c-gold); color: var(--c-gold-l); text-decoration: none; }
.tag--hot { border-color: rgba(210, 43, 43, .5); color: #ff9090; }
.tag--hot:hover { background: rgba(210, 43, 43, .15); border-color: var(--c-red); color: #ffb0b0; }

.srch { position: relative; display: flex; gap: 9px; }
.srch__i {
  flex: 1; min-width: 0; background: var(--c-bg-3); border: 1px solid var(--c-line-2);
  border-radius: var(--r-s); padding: 11px 15px; color: var(--t-1);
  font-family: var(--ff); font-size: .94rem;
}
.srch__i::placeholder { color: var(--t-4); }
.srch__i:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(242, 178, 51, .15); }
.srch__r {
  position: absolute; top: calc(100% + 7px); left: 0; right: 0; z-index: 40;
  background: var(--c-bg-3); border: 1px solid var(--c-line-2);
  border-radius: var(--r-m); box-shadow: var(--sh-2); max-height: 340px; overflow-y: auto; display: none;
}
.srch__r.open { display: block; }
.srch__r a { display: block; padding: 10px 15px; border-bottom: 1px solid rgba(42, 48, 56, .6); color: var(--t-2); font-size: .9rem; }
.srch__r a:last-child { border-bottom: 0; }
.srch__r a:hover { background: rgba(242, 178, 51, .1); color: var(--c-gold-l); text-decoration: none; }
.srch__r b { display: block; color: var(--t-1); font-size: .93rem; margin-bottom: 2px; }
.srch__r small { color: var(--t-4); font-size: .785rem; }
.srch__e { padding: 15px; color: var(--t-3); font-size: .88rem; text-align: center; }

/* ============ 12. Artikel ============ */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.art { background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: var(--r-l); padding: clamp(20px, 4vw, 40px); }
.art__hd { border-bottom: 1px solid var(--c-line); padding-bottom: 20px; margin-bottom: 26px; }
.art__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; font-size: .82rem; color: var(--t-3); }
.art__cover { border-radius: var(--r-m); overflow: hidden; margin-bottom: 24px; border: 1px solid var(--c-line); }
.prose { font-size: 1.01rem; line-height: 1.82; color: var(--t-2); }
.prose > h2 {
  margin-top: 2em; padding-top: .9em; border-top: 1px solid var(--c-line);
  color: var(--t-1); scroll-margin-top: 92px;
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose > h3 { margin-top: 1.7em; color: var(--c-gold-l); scroll-margin-top: 92px; }
.prose > h4 { margin-top: 1.4em; color: var(--t-1); }
.prose strong { color: #fff; }
.prose table { margin: 1.6em 0; background: var(--c-bg-3); border: 1px solid var(--c-line); border-radius: var(--r-m); overflow: hidden; }
.prose ul, .prose ol { padding-left: 1.5em; }
.prose li::marker { color: var(--c-gold); }
.prose a { text-decoration: underline; text-decoration-color: rgba(242, 178, 51, .45); text-underline-offset: 3px; }
/* Tautan dalam butir daftar diberi area sentuh lebih lega tanpa mengubah alur paragraf */
.prose li > a { display: inline-block; padding: 3px 0; line-height: 1.55; }
.prose img { border-radius: var(--r-m); margin: 1.6em 0; border: 1px solid var(--c-line); }

.toc { background: var(--c-bg-3); border: 1px solid var(--c-line-2); border-left: 4px solid var(--c-gold); border-radius: var(--r-m); padding: 18px 20px; margin-bottom: 28px; }
.toc__t { font-family: var(--ff-d); font-size: .95rem; font-weight: 800; color: var(--c-gold-l); margin: 0 0 10px; }
.toc ol { margin: 0; padding-left: 1.3em; font-size: .89rem; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--t-2); text-decoration: none; display: inline-block; padding: 4px 0; line-height: 1.45; }
.toc a:hover { color: var(--c-gold-l); text-decoration: underline; }

.side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 84px; }
.wg { background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: var(--r-l); overflow: hidden; }
.wg__t { font-family: var(--ff-d); font-size: .93rem; font-weight: 800; color: var(--c-gold-l); margin: 0; padding: 13px 17px; background: var(--c-bg-3); border-bottom: 1px solid var(--c-line); text-transform: uppercase; letter-spacing: .5px; }
.wg__b { padding: 16px 17px; font-size: .9rem; color: var(--t-2); }
.wg__b p:last-child { margin-bottom: 0; }
.wg__l { list-style: none; margin: 0; padding: 0; }
.wg__l li { margin: 0; border-bottom: 1px solid rgba(42, 48, 56, .6); }
.wg__l li:last-child { border-bottom: 0; }
.wg__l a { display: block; padding: 11px 17px; font-size: .89rem; color: var(--t-2); line-height: 1.5; }
.wg__l a:hover { background: rgba(242, 178, 51, .08); color: var(--c-gold-l); text-decoration: none; }
.wg__l small { display: block; color: var(--t-4); font-size: .775rem; margin-top: 2px; }

/* ============ 13. Breadcrumb & Paginasi ============ */
.bc { padding: 13px 0; border-bottom: 1px solid var(--c-line); background: rgba(18, 21, 27, .55); }
.bc ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0; padding: 0; font-size: .82rem; }
.bc li { margin: 0; display: inline-flex; align-items: center; gap: 7px; color: var(--t-3); }
.bc li + li::before { content: "/"; color: var(--t-4); }
.bc a { color: var(--t-3); display: inline-block; padding: 3px 0; }
.bc a:hover { color: var(--c-gold-l); }
.bc [aria-current="page"] { color: var(--t-1); font-weight: 600; }

/* ============ 14. Peringatan & Kepatuhan ============ */
.note {
  display: flex; gap: 14px; padding: 16px 18px; border-radius: var(--r-m);
  background: var(--c-bg-3); border: 1px solid var(--c-line-2); border-left: 4px solid var(--c-gold);
  font-size: .9rem; color: var(--t-2); margin: 1.6em 0; line-height: 1.68;
}
.note--warn { border-left-color: var(--c-red); background: rgba(210, 43, 43, .07); }
.note--ok { border-left-color: var(--c-green); background: rgba(31, 157, 85, .07); }
.note--info { border-left-color: var(--c-blue); background: rgba(45, 108, 223, .07); }
.note__ic { flex-shrink: 0; width: 27px; height: 27px; border-radius: 7px; display: grid; place-items: center; font-size: .95rem; font-weight: 800; background: rgba(242, 178, 51, .17); color: var(--c-gold-l); }
.note--warn .note__ic { background: rgba(210, 43, 43, .2); color: #ff8080; }
.note--ok .note__ic { background: rgba(31, 157, 85, .2); color: var(--c-green-l); }
.note--info .note__ic { background: rgba(45, 108, 223, .2); color: var(--c-blue-l); }
.note strong { color: #fff; }
.note p:last-child { margin-bottom: 0; }

.age {
  display: inline-grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0;
  border: 2px solid var(--c-red); border-radius: 50%;
  font-family: var(--ff-d); font-size: .8rem; font-weight: 800; color: #ff8f8f;
  background: rgba(210, 43, 43, .12); line-height: 1;
}

/* ============ 15. Footer ============ */
.ft { background: var(--c-bg-2); border-top: 1px solid var(--c-line); margin-top: 54px; }
.ft__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; padding: 44px 0 34px; }
.ft__brand img, .ft__brand svg { height: 38px; margin-bottom: 15px; }
.ft__ab { font-size: .87rem; color: var(--t-3); line-height: 1.72; margin-bottom: 17px; }
.ft__t { font-family: var(--ff-d); font-size: .87rem; font-weight: 800; color: var(--c-gold-l); text-transform: uppercase; letter-spacing: .7px; margin: 0 0 14px; }
.ft__l { list-style: none; margin: 0; padding: 0; }
.ft__l li { margin-bottom: 9px; }
.ft__l a { font-size: .87rem; color: var(--t-3); display: inline-block; padding: 4px 0; line-height: 1.5; }
.ft__l a:hover { color: var(--c-gold-l); }
.ft__cmp { display: flex; gap: 13px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--c-line); font-size: .82rem; color: var(--t-3); line-height: 1.72; }
.ft__bt { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 0 22px; border-top: 1px solid var(--c-line); font-size: .8rem; color: var(--t-4); }
.ft__bt nav { display: flex; flex-wrap: wrap; gap: 16px; }
.ft__bt a { color: var(--t-4); display: inline-block; padding: 4px 0; line-height: 1.5; }
.ft__bt a:hover { color: var(--c-gold-l); }

/* ============ 16. Dock Bawah (Daftar / Masuk) ============ */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: linear-gradient(180deg, rgba(11, 13, 16, .93), rgba(11, 13, 16, .99));
  backdrop-filter: blur(14px);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--c-red), var(--c-gold), var(--c-green), var(--c-purple), var(--c-red)) 1;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .62);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
}
.dock__in { display: flex; align-items: center; gap: 12px; }
.dock__info { flex: 1; min-width: 0; display: flex; align-items: center; gap: 11px; }
.dock__age {
  width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center;
  border: 2px solid var(--c-red); border-radius: 50%; background: rgba(210, 43, 43, .13);
  font-family: var(--ff-d); font-size: .795rem; font-weight: 800; color: #ff8f8f; line-height: 1;
}
.dock__txt { min-width: 0; }
.dock__t { font-family: var(--ff-d); font-size: .93rem; font-weight: 800; color: var(--t-1); margin: 0; line-height: 1.3; }
.dock__s { font-size: .785rem; color: var(--t-3); margin: 2px 0 0; line-height: 1.4; }
.dock__act { display: flex; gap: 11px; flex-shrink: 0; }

/* Tombol gaya mesin slot dengan efek koin */
.sbtn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-width: 172px; padding: 14px 28px;
  font-family: var(--ff-d); font-size: 1.06rem; font-weight: 800; letter-spacing: .7px; text-transform: uppercase;
  border-radius: 14px; border: 2px solid; cursor: pointer; text-decoration: none !important;
  transition: transform .16s, box-shadow .16s, filter .16s; line-height: 1.2;
}
.sbtn:hover { transform: translateY(-3px) scale(1.017); filter: brightness(1.08); }
.sbtn:active { transform: translateY(-1px) scale(.995); }
.sbtn--daftar {
  background: linear-gradient(180deg, #ffe9a8 0%, #f2b233 45%, #d99110 72%, #a76d08 100%);
  border-color: #fff2c9; color: #2a1a04;
  box-shadow: 0 5px 0 #7d5106, 0 10px 26px rgba(242, 178, 51, .46), inset 0 1px 0 rgba(255, 255, 255, .75);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}
.sbtn--daftar:hover { box-shadow: 0 7px 0 #7d5106, 0 15px 34px rgba(242, 178, 51, .58), inset 0 1px 0 rgba(255, 255, 255, .8); }
.sbtn--masuk {
  background: linear-gradient(180deg, #ff7272 0%, #d22b2b 45%, #a81f1f 72%, #7d1414 100%);
  border-color: #ffb3b3; color: #fff;
  box-shadow: 0 5px 0 #5c0e0e, 0 10px 26px rgba(210, 43, 43, .48), inset 0 1px 0 rgba(255, 255, 255, .34);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .38);
}
.sbtn--masuk:hover { box-shadow: 0 7px 0 #5c0e0e, 0 15px 34px rgba(210, 43, 43, .6), inset 0 1px 0 rgba(255, 255, 255, .4); }
/* Kilau melintas */
.sbtn::before {
  content: ""; position: absolute; top: -60%; left: -75%; width: 42%; height: 220%; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  transform: rotate(21deg); animation: shine 3.4s ease-in-out infinite;
}
@keyframes shine { 0%, 62% { left: -75%; } 88%, 100% { left: 128%; } }
/* Koin melayang */
.sbtn__c { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sbtn__c i {
  position: absolute; bottom: -14px; width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff6d4, #f2b233 52%, #a76d08);
  box-shadow: 0 0 7px rgba(255, 216, 107, .85); opacity: 0;
  animation: coin 3.1s ease-in infinite;
}
.sbtn--masuk .sbtn__c i { background: radial-gradient(circle at 34% 30%, #fff, #ffd86b 48%, #d99110); }
.sbtn__c i:nth-child(1) { left: 13%; animation-delay: 0s; }
.sbtn__c i:nth-child(2) { left: 33%; animation-delay: .55s; width: 8px; height: 8px; }
.sbtn__c i:nth-child(3) { left: 53%; animation-delay: 1.1s; }
.sbtn__c i:nth-child(4) { left: 72%; animation-delay: 1.65s; width: 9px; height: 9px; }
.sbtn__c i:nth-child(5) { left: 88%; animation-delay: 2.2s; width: 7px; height: 7px; }
@keyframes coin {
  0% { opacity: 0; transform: translateY(0) scale(.6) rotate(0); }
  18% { opacity: .95; }
  72% { opacity: .55; }
  100% { opacity: 0; transform: translateY(-62px) scale(1.05) rotate(300deg); }
}
.sbtn__ic { position: relative; z-index: 2; font-size: 1.15rem; line-height: 1; }
.sbtn__lb { position: relative; z-index: 2; }

/* Tombol Telegram mengambang */
.tg-fab {
  position: fixed; right: 16px; bottom: calc(var(--dock-h) + 16px + env(safe-area-inset-bottom, 0px)); z-index: 94;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(180deg, #45b6f0, #1e88c7); border: 2px solid #a5dcff;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 22px rgba(45, 140, 210, .5); transition: transform .18s;
}
.tg-fab:hover { transform: translateY(-3px) scale(1.06); text-decoration: none; }
.tg-fab svg { width: 26px; height: 26px; fill: currentColor; }

/* ============ 17. Blok Bantu ============ */
.pgh { padding: 34px 0 8px; }
.pgh h1 { margin-bottom: .4em; }
.pgh__s { font-size: 1.02rem; color: var(--t-2); max-width: 76ch; margin: 0; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.stat { background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: var(--r-m); padding: 17px; text-align: center; }
.stat__v { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 800; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
.stat__l { font-size: .8rem; color: var(--t-3); margin-top: 5px; }
.steps { counter-reset: s; list-style: none; padding: 0; margin: 1.6em 0; }
.steps li { counter-increment: s; position: relative; padding: 0 0 0 50px; margin-bottom: 20px; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad-gold); color: #1a1206; font-family: var(--ff-d); font-weight: 800; font-size: .95rem;
}
.steps h4 { margin: 4px 0 6px; }
.steps p { margin-bottom: 0; font-size: .93rem; color: var(--t-2); }
.pv { display: flex; flex-wrap: wrap; gap: 11px; }
.pv__i { display: flex; align-items: center; gap: 9px; background: var(--c-bg-3); border: 1px solid var(--c-line-2); border-radius: var(--r-m); padding: 10px 15px; font-size: .87rem; color: var(--t-2); }
.pv__d { width: 9px; height: 9px; border-radius: 50%; background: var(--c-green); box-shadow: 0 0 7px var(--c-green); flex-shrink: 0; }
.cta {
  background: linear-gradient(135deg, rgba(210, 43, 43, .13), rgba(107, 63, 160, .13));
  border: 1px solid rgba(242, 178, 51, .3); border-radius: var(--r-l);
  padding: clamp(22px, 4vw, 34px); text-align: center; margin: 2em 0;
}
.cta h3 { margin-bottom: .5em; }
.cta p { color: var(--t-2); max-width: 68ch; margin: 0 auto 20px; }
.cta__b { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============ 18. Responsif ============ */
@media (max-width: 1080px) {
  .hdr__nav { display: none; }
  .burger { display: block; }
  .layout { grid-template-columns: 1fr; }
  .side { position: static; }
  .ft__top { grid-template-columns: 1fr 1fr; gap: 26px; }
  .g-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  :root { --dock-h: 120px; }
  .hero__in { grid-template-columns: 1fr; gap: 30px; padding: 36px 0 40px; }
  .slotm { max-width: 420px; margin: 0 auto; }
  .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dock__in { flex-direction: column; align-items: stretch; gap: 8px; }
  .dock__info { justify-content: center; text-align: center; }
  .dock__act { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .sbtn { min-width: 0; width: 100%; padding: 16px 12px; font-size: 1.07rem; border-radius: 13px; }
  .tg-fab { width: 46px; height: 46px; bottom: calc(var(--dock-h) + 12px + env(safe-area-inset-bottom, 0px)); }
  .tg-fab svg { width: 23px; height: 23px; }
}
@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .sec { padding: 32px 0; }
  .wrap { padding: 0 14px; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .ft__top { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 24px; }
  .art { padding: 18px 15px; }
  .prose { font-size: .98rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .dock__s { display: none; }
  .dock__t { font-size: .87rem; }
  table { font-size: .84rem; }
  thead th, tbody td { padding: 9px 11px; }
  .brand img, .brand svg { height: 34px; }

  /* Target sentuh: perbesar area klik tautan pada layar sentuh */
  .toc a { padding: 7px 0; line-height: 1.55; }
  .prose > ul > li > a, .prose > ol > li > a { display: inline-block; padding: 5px 0; }
  .card__ttl a { padding: 5px 0; }
  .card__lk { padding: 7px 0; }
  .bc a { padding: 6px 0; }
  .ft__l a { display: block; padding: 8px 0; }
  .tag { padding: 9px 15px; }
  .win__i { padding: 8px 15px 8px 8px; }
  /* Jaga ukuran teks minimum agar tetap terbaca di perangkat kecil */
  .badge, .tick__lb { font-size: .79rem; }
  .card__ft { font-size: .8rem; }
  .bc ol { font-size: .84rem; }
  .art__meta { font-size: .84rem; }
}
@media (max-width: 420px) {
  .sbtn { font-size: .93rem; padding: 14px 8px; letter-spacing: .3px; }
  .sbtn__ic { font-size: 1.05rem; }
}

/* ============ 19. Aksesibilitas & Cetak ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
@media print {
  body { background: #fff; color: #000; padding: 0; }
  .hdr, .dock, .tg-fab, .tick, .win, .side, .hero__bg, .burger, .mnav { display: none !important; }
  .art, .card, .wg { border: 1px solid #ccc; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .prose { color: #000; font-size: 11pt; }
}
