/* ==========================================================================
   Idcash88 — style.css (casino theme: red / white / green / yellow / blue / black)
   Fully responsive, no horizontal overflow on any viewport.
   ========================================================================== */

:root {
  --red: #d31245;
  --red-dark: #9c0a2e;
  --red-deep: #6d0720;
  --ink: #121317;
  --ink-2: #1b1d23;
  --gold: #f7c52e;
  --gold-2: #ffb300;
  --gold-soft: #ffe9a8;
  --green: #14a35a;
  --green-soft: #e5f7ee;
  --blue: #2563eb;
  --blue-soft: #e8effd;
  --paper: #ffffff;
  --paper-2: #f6f7fb;
  --line: #e5e7ef;
  --txt: #23252c;
  --txt-soft: #5b5f6b;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 19, 23, .10);
  --wrap: 1180px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, "Noto Sans", 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(--txt);
  background: var(--paper);
  overflow-x: hidden;
  padding-bottom: 76px; /* ruang untuk fixed float-cta, bukan blok kosong */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--ink); margin: 0 0 .6em; font-weight: 800; }
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.3rem); }
p { margin: 0 0 1em; overflow-wrap: break-word; }
ul, ol { padding-left: 1.3em; margin: 0 0 1em; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: #000; padding: .5rem 1rem; z-index: 999; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-weight: 800; font-size: .95rem; line-height: 1; letter-spacing: .02em;
  padding: .78rem 1.35rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn { max-width: 100%; text-align: center; }
.btn-gold { background: linear-gradient(180deg, #ffd75e, var(--gold) 45%, var(--gold-2)); color: #3a2a00; box-shadow: 0 6px 18px rgba(247, 197, 46, .45); }
.btn-gold:hover { box-shadow: 0 10px 24px rgba(247, 197, 46, .55); }
.btn-red { background: linear-gradient(180deg, #e62556, var(--red) 50%, var(--red-dark)); color: #fff; box-shadow: 0 6px 18px rgba(211, 18, 69, .35); }
.btn-ghost { border-color: rgba(255, 255, 255, .8); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-outline { border-color: var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-green { background: linear-gradient(180deg, #1ec06d, var(--green)); color: #fff; box-shadow: 0 6px 18px rgba(20, 163, 90, .35); }
.btn-blue { background: linear-gradient(180deg, #3b76f5, var(--blue)); color: #fff; box-shadow: 0 6px 18px rgba(37, 99, 235, .3); }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(18, 19, 23, .97); backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  width: min(100% - 2rem, var(--wrap)); margin-inline: auto;
  display: flex; align-items: center; gap: 1rem; min-height: 68px;
}
.site-branding { display: flex; align-items: center; flex: 0 0 auto; gap: .75rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: #fff; }
.brand:hover { text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-size: 1.2rem; font-weight: 400; letter-spacing: .02em; }
.brand-text b { color: var(--gold); font-weight: 800; }
.brand-text small { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: #9aa0ae; }
.main-navigation { margin-left: auto; }
.primary-menu { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.primary-menu > li > a {
  display: block; color: #e8e9ee; font-weight: 700; font-size: .92rem;
  padding: .55rem .7rem; border-radius: 8px;
}
.primary-menu > li > a:hover { background: rgba(255, 255, 255, .09); text-decoration: none; }
.current-menu-item > a { color: var(--gold) !important; }
.header-search { display: flex; align-items: center; }
.header-search input {
  background: #23252d; border: 1px solid #3a3d47; color: #fff;
  border-radius: 999px 0 0 999px; padding: .48rem .95rem; font-size: .88rem;
  width: 168px; outline: none; transition: width .2s ease, border-color .2s ease;
}
.header-search input:focus { border-color: var(--gold); width: 200px; }
.header-search button {
  background: var(--gold); color: #221a00; border: 0; cursor: pointer;
  border-radius: 0 999px 999px 0; padding: .5rem .75rem; display: flex; align-items: center;
}
.header-actions { display: flex; align-items: center; gap: .55rem; flex: 0 0 auto; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 900; font-size: .8rem;
  border: 2px solid var(--gold); flex: 0 0 auto;
}
.age-badge-lg { width: 44px; height: 44px; font-size: .95rem; }
.header-actions .btn { padding: .6rem 1.1rem; font-size: .88rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Breadcrumbs ---- */
.breadcrumbs { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.trail {
  width: min(100% - 2rem, var(--wrap)); margin: 0 auto; padding: .55rem 0;
  display: flex; flex-wrap: wrap; gap: .35rem; list-style: none;
  font-size: .82rem; color: var(--txt-soft);
}
.trail li + li::before { content: "›"; margin-right: .35rem; color: #a3a7b3; }
.trail a { color: var(--txt-soft); font-weight: 600; }
.trail a:hover { color: var(--red); }
.trail [aria-current="page"] { color: var(--ink); font-weight: 700; }

/* ---- Hero ---- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1000px 420px at 85% -10%, rgba(247, 197, 46, .22), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(37, 99, 235, .25), transparent 55%),
    linear-gradient(160deg, #1b1d23 0%, var(--red-deep) 55%, var(--red-dark) 100%);
  padding: clamp(2.4rem, 6vw, 4.5rem) 0;
}
.hero::after {
  content: ""; position: absolute; inset: auto -20% -60% -20%; height: 70%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(247, 197, 46, .28), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.2rem; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(247, 197, 46, .5);
  color: var(--gold-soft); font-weight: 700; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 999px; padding: .4rem 1rem; margin-bottom: 1.1rem;
}
.hero h1 { color: #fff; margin-bottom: .5em; text-wrap: balance; }
.hero h1 .hl { color: var(--gold); }
.hero p.lead { color: #e7e8ee; font-size: clamp(1rem, 2.2vw, 1.15rem); max-width: 56ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0 0; }
.hbadge {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 700;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  padding: .38rem .8rem; border-radius: 999px; color: #f1f2f6;
}
.hbadge.dot-g::before, .hbadge.dot-b::before, .hbadge.dot-y::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green);
}
.hbadge.dot-b::before { background: var(--blue); }
.hbadge.dot-y::before { background: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.8rem; max-width: 520px; }
.hero-stat { background: rgba(18, 19, 23, .45); border: 1px solid rgba(255, 255, 255, .14); border-radius: 12px; padding: .7rem .8rem; }
.hero-stat b { display: block; font-size: 1.25rem; color: var(--gold); }
.hero-stat span { font-size: .78rem; color: #d6d8e0; }
.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: 18px; overflow: hidden; border: 3px solid rgba(247, 197, 46, .65);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.hero-chip {
  position: absolute; background: #17181d; border: 1.5px solid var(--gold); color: #fff;
  border-radius: 12px; padding: .55rem .9rem; font-size: .8rem; font-weight: 700;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .4);
}
.hero-chip small { display: block; color: var(--gold); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.chip-a { top: -14px; left: -8px; animation: floaty 4.5s ease-in-out infinite; }
.chip-b { bottom: -14px; right: -6px; animation: floaty 5.5s ease-in-out .8s infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---- Sections ---- */
.section { padding: clamp(2.2rem, 5vw, 3.8rem) 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: linear-gradient(150deg, #17181d, #101116); color: #d9dbe3; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 760px; margin: 0 auto 2rem; text-align: center; }
.section-head p { color: var(--txt-soft); margin-bottom: 0; }
.section-dark .section-head p { color: #aeb2bd; }
.eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: .55rem;
}
.eyebrow.g { color: var(--green); } .eyebrow.b { color: var(--blue); } .eyebrow.y { color: #b57e00; }
.section-dark .eyebrow { color: var(--gold); }

/* ---- Category cards ---- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; }
.cat-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(18, 19, 23, .16); text-decoration: none; }
.cat-card figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card .cc-body { padding: 1rem 1.1rem 1.2rem; }
.cat-card h3 { margin-bottom: .35em; font-size: 1.05rem; }
.cat-card p { font-size: .86rem; color: var(--txt-soft); margin-bottom: .7em; }
.cat-card .cc-more { font-size: .82rem; font-weight: 800; color: var(--red); }
.cat-card:hover .cc-more { text-decoration: underline; }
.cc-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--gold); color: #3a2a00; font-size: .68rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; padding: .22rem .6rem;
}
.cc-tag.t-green { background: var(--green); color: #fff; }
.cc-tag.t-blue { background: var(--blue); color: #fff; }
.cc-tag.t-red { background: var(--red); color: #fff; }

/* ---- Steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; counter-reset: step; }
.step-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem; box-shadow: var(--shadow); counter-increment: step;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px 14px 14px 2px;
  background: linear-gradient(160deg, #ffd75e, var(--gold-2)); color: #3a2a00;
  font-weight: 900; font-size: 1.15rem; margin-bottom: .9rem;
}
.step-card h3 { font-size: 1.05rem; }
.step-card p { font-size: .88rem; color: var(--txt-soft); margin-bottom: 0; }
.step-card .step-link { display: inline-block; margin-top: .7rem; font-size: .8rem; font-weight: 800; }

/* ---- Advantage cards ---- */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.adv-card {
  background: #fff; border-radius: var(--radius); padding: 1.4rem 1.3rem;
  border: 1px solid var(--line); border-top: 4px solid var(--red); box-shadow: var(--shadow);
}
.adv-card.g { border-top-color: var(--green); }
.adv-card.b { border-top-color: var(--blue); }
.adv-card.y { border-top-color: var(--gold); }
.adv-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; background: #fdf1f4; margin-bottom: .8rem;
}
.adv-card.g .adv-icon { background: var(--green-soft); }
.adv-card.b .adv-icon { background: var(--blue-soft); }
.adv-card.y .adv-icon { background: #fff6db; }
.adv-card h3 { font-size: 1rem; }
.adv-card p { font-size: .87rem; color: var(--txt-soft); margin-bottom: 0; }

/* ---- Why choose / split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list .ck {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff; font-size: .8rem; font-weight: 900; margin-top: .15rem;
}
.check-list li p { margin: 0; font-size: .92rem; color: var(--txt-soft); }
.check-list li strong { color: var(--ink); }
.frame-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 3px solid #fff; }

/* ---- Mobile experience ---- */
.phone-row { display: flex; align-items: flex-end; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.mock {
  background: #101116; border: 3px solid var(--gold); border-radius: 22px;
  padding: 1rem 1rem 1.4rem; color: #fff; text-align: center; min-width: 150px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}
.mock .screen { background: linear-gradient(160deg, #23252d, #17181d); border-radius: 12px; padding: .8rem .6rem; margin-bottom: .7rem; }
.mock .screen b { display: block; color: var(--gold); font-size: .85rem; }
.mock .screen span { font-size: .7rem; color: #b9bdc9; display: block; margin-top: .2rem; }
.mock figcaption { font-size: .78rem; color: #d6d8e0; }

/* ---- Testimonials ---- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.quote-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: 12px; padding: 1.25rem; box-shadow: var(--shadow);
}
.quote-card:nth-child(2) { border-left-color: var(--green); }
.quote-card:nth-child(3) { border-left-color: var(--gold); }
.quote-card blockquote { margin: 0 0 .9rem; font-size: .92rem; color: var(--txt); }
.quote-who { display: flex; align-items: center; gap: .65rem; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: .85rem; background: var(--red); flex: 0 0 auto;
}
.quote-card:nth-child(2) .avatar { background: var(--green); }
.quote-card:nth-child(3) .avatar { background: var(--blue); }
.quote-card:nth-child(4) .avatar { background: var(--gold-2); }
.quote-who b { display: block; font-size: .88rem; color: var(--ink); line-height: 1.2; }
.quote-who span { font-size: .75rem; color: var(--txt-soft); }
.note-disclaimer { font-size: .78rem; color: var(--txt-soft); text-align: center; margin-top: 1.2rem; font-style: italic; }

/* ---- Glossary ---- */
.gloss-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .9rem; }
.term {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.term summary {
  cursor: pointer; list-style: none; padding: .85rem 1rem; font-weight: 800; font-size: .92rem;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem; color: var(--ink);
}
.term summary::-webkit-details-list-marker { display: none; }
.term summary::after { content: "+"; color: var(--red); font-weight: 900; font-size: 1.05rem; }
.term[open] summary::after { content: "–"; }
.term summary:hover { background: var(--paper-2); }
.term .term-body { padding: 0 1rem 1rem; font-size: .87rem; color: var(--txt-soft); }
.term .term-body p { margin: 0; }

/* ---- Security / responsible two-col ---- */
.duo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.duo-card { border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow); }
.duo-card.sec { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--blue); }
.duo-card.resp { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--green); }
.duo-card h3 { display: flex; align-items: center; gap: .6rem; }
.duo-card ul { font-size: .9rem; color: var(--txt-soft); margin-bottom: 0; }
.duo-card li { margin-bottom: .45rem; }
.duo-card .btn { margin-top: 1rem; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(18, 19, 23, .05);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1rem 1.15rem;
  font-weight: 800; font-size: .97rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: .8rem;
}
.faq-item summary::-webkit-details-list-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: 0 0 auto; width: 12px; height: 12px;
  border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg); transition: transform .2s; margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item .faq-a { padding: 0 1.15rem 1.1rem; font-size: .9rem; color: var(--txt-soft); }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ---- Tag cloud ---- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.tag {
  font-size: .82rem; font-weight: 700; padding: .45rem .95rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--txt); box-shadow: 0 3px 10px rgba(18,19,23,.06);
  transition: all .15s ease;
}
.tag:hover { text-decoration: none; background: var(--ink); color: var(--gold); border-color: var(--ink); transform: translateY(-2px); }
.tag.hot { background: var(--red); border-color: var(--red); color: #fff; }
.tag.hot:hover { background: var(--red-dark); }

/* ---- CTA band ---- */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% -30%, rgba(247, 197, 46, .25), transparent 60%),
    linear-gradient(140deg, var(--red-dark), var(--red) 55%, #e83a67);
  color: #fff; text-align: center; border-radius: 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe9ee; max-width: 640px; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .fine { font-size: .78rem; color: #ffd3de; margin-top: 1rem; }

/* ---- Article / category page ---- */
.page-hero {
  background: linear-gradient(150deg, #17181d, #26141c 60%, var(--red-deep));
  color: #fff; padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(2rem, 5vw, 3rem);
}
.page-hero .meta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; font-size: .8rem; color: #cfd2db; margin-top: 1rem; }
.page-hero .meta-row .pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: .25rem .75rem; }
.page-hero p.lead { color: #e2e4ea; max-width: 70ch; font-size: 1.02rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2.5rem; padding: clamp(2rem, 4vw, 3.2rem) 0; align-items: start; }
.entry-content { min-width: 0; }
.entry-content h2 { margin-top: 1.9em; padding-top: .2em; }
.entry-content h3 { margin-top: 1.4em; }
.entry-content img.rounded { border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.4rem 0; }
.figure-note { font-size: .78rem; color: var(--txt-soft); text-align: center; margin: -0.6rem 0 1.4rem; }
.info-box {
  border-radius: 12px; padding: 1.1rem 1.2rem; margin: 1.4rem 0; font-size: .93rem;
  border: 1px solid var(--line); background: var(--paper-2);
}
.info-box.warn { background: #fff7ec; border-color: #f3ddba; }
.info-box.safe { background: var(--green-soft); border-color: #c4ecd7; }
.info-box.info { background: var(--blue-soft); border-color: #c9daf9; }
.info-box b.box-title { display: block; margin-bottom: .35rem; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.info-box.warn b.box-title { color: #9a6700; }
.info-box.safe b.box-title { color: var(--green); }
.info-box.info b.box-title { color: var(--blue); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.4rem 0; border: 1px solid var(--line); border-radius: 12px; }
table.data { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 520px; background: #fff; }
table.data th { background: var(--ink); color: var(--gold); text-align: left; padding: .7rem .9rem; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }
table.data td { padding: .65rem .9rem; border-top: 1px solid var(--line); vertical-align: top; }
table.data tr:nth-child(even) td { background: var(--paper-2); }
.article-pagination { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.article-pagination a {
  flex: 1 1 220px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.1rem; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow);
}
.article-pagination a:hover { text-decoration: none; border-color: var(--red); }
.article-pagination small { display: block; color: var(--txt-soft); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .25rem; }

/* Sidebar widgets */
.sidebar { display: grid; gap: 1.4rem; position: sticky; top: 92px; }
.widget-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow); }
.widget-card h3 { font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); border-left: 4px solid var(--gold); padding-left: .6rem; }
.widget-card ul { list-style: none; padding: 0; margin: 0; font-size: .9rem; }
.widget-card li + li { border-top: 1px dashed var(--line); margin-top: .55rem; padding-top: .55rem; }
.widget-card li a { font-weight: 700; }
.widget-card li span { display: block; font-size: .78rem; color: var(--txt-soft); font-weight: 500; }

/* Promo cards */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.promo-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.promo-card:hover { transform: translateY(-4px); }
.promo-card figure { margin: 0; aspect-ratio: 16/9; overflow: hidden; }
.promo-card figure img { width: 100%; height: 100%; object-fit: cover; }
.promo-card .pc-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.promo-card h3 { font-size: 1.05rem; margin: 0; }
.promo-card p { font-size: .87rem; color: var(--txt-soft); margin: 0; flex: 1; }
.pc-terms { font-size: .76rem; color: var(--txt-soft); background: var(--paper-2); border-radius: 8px; padding: .55rem .7rem; }
.pc-terms b { color: var(--ink); }

/* ---- Forms (daftar/login) ---- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; padding: clamp(2rem, 4vw, 3.2rem) 0; }
.auth-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.5rem, 3.5vw, 2.4rem); box-shadow: 0 18px 44px rgba(18, 19, 23, .12);
  max-width: 460px; margin-inline: auto; width: 100%;
}
.auth-card h2 { margin-bottom: .3em; }
.auth-card .sub { color: var(--txt-soft); font-size: .9rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .82rem; font-weight: 800; margin-bottom: .35rem; color: var(--ink); }
.field input {
  width: 100%; padding: .78rem .95rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: .95rem; font-family: var(--font); outline: none; transition: border-color .15s, box-shadow .15s;
  background: #fff; color: var(--txt);
}
.field input:focus { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(247, 197, 46, .25); }
.field .hint { font-size: .75rem; color: var(--txt-soft); margin-top: .3rem; }
.field-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--txt-soft); margin: 1.1rem 0; }
.field-check input { margin-top: .2rem; width: auto; flex: 0 0 auto; }
.auth-note { font-size: .78rem; color: var(--txt-soft); margin-top: 1.1rem; text-align: center; }
.auth-side h2 { color: #fff; }
.auth-side p { color: #dcdfe6; }
.auth-side .check-list li p { color: #c9ccd5; }
.auth-side .check-list li strong { color: #fff; }

/* ---- Search page ---- */
.search-hero { padding: clamp(2rem, 5vw, 3rem) 0; background: linear-gradient(150deg, #17181d, var(--red-deep)); color: #fff; }
.big-search { display: flex; max-width: 640px; margin: 1.3rem auto 0; }
.big-search input {
  flex: 1; border: 2px solid var(--gold); border-right: 0; border-radius: 12px 0 0 12px;
  padding: .9rem 1.1rem; font-size: 1rem; outline: none; min-width: 0;
}
.big-search button {
  border: 0; background: var(--gold); color: #3a2a00; font-weight: 900;
  padding: 0 1.4rem; border-radius: 0 12px 12px 0; cursor: pointer; font-size: .95rem;
}
.result-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.result {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 1.1rem 1.2rem; box-shadow: var(--shadow);
}
.result h3 { margin-bottom: .3em; font-size: 1rem; }
.result p { font-size: .87rem; color: var(--txt-soft); margin: 0; }
.result .r-url { font-size: .75rem; color: var(--green); font-weight: 700; display: block; margin-bottom: .3rem; }

/* ---- Footer ---- */
.site-footer { color: #b9bdc9; background: linear-gradient(180deg, #17181d, #0e0f12); }
.footer-widgets { padding: clamp(2.2rem, 5vw, 3.4rem) 0 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.brand-footer:hover { text-decoration: none; }
.widget-about p { font-size: .85rem; color: #a4a8b4; }
.age-note { display: flex; align-items: center; gap: .8rem; font-size: .8rem; color: #c8cbd4; }
.widget-title { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; border-bottom: 2px solid var(--red); padding-bottom: .45rem; }
.widget ul { list-style: none; padding: 0; margin: 0; font-size: .88rem; }
.widget li { margin-bottom: .5rem; }
.widget a { color: #c8cbd4; }
.widget a:hover { color: var(--gold); }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.4rem 0 1.6rem; font-size: .76rem; color: #8f93a0; }
.footer-legal p { margin-bottom: .6em; }
.site-info { color: #6f7380 !important; }

/* ---- Floating CTA (slot style) ---- */
.float-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; justify-content: center; padding: .5rem max(.6rem, env(safe-area-inset-left));
  pointer-events: none;
}
.float-cta-inner {
  pointer-events: auto; position: relative; overflow: hidden;
  display: flex; align-items: center; gap: .7rem;
  background: linear-gradient(160deg, #101116, #221519 60%, #1a0c12);
  border: 2px solid var(--gold); border-radius: 999px;
  padding: .45rem .7rem .45rem .9rem;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
  max-width: 100%;
}
.mini-reels { display: flex; gap: .3rem; }
.reel {
  width: 26px; height: 26px; border-radius: 6px; overflow: hidden;
  background: #f4f4f8; border: 1.5px solid #33353d;
  display: inline-flex; justify-content: center;
}
.reel-strip {
  display: block; text-align: center; font-size: 12px; line-height: 26px;
  animation: reelspin 1.6s linear infinite;
}
.reel-d2 .reel-strip { animation-duration: 2.1s; animation-delay: .2s; }
.reel-d3 .reel-strip { animation-duration: 1.85s; animation-delay: .45s; }
@keyframes reelspin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-104px); }
}
.float-cta-label { font-size: .72rem; font-weight: 800; color: var(--gold-soft); letter-spacing: .04em; white-space: nowrap; }
.fbtn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .88rem; letter-spacing: .04em;
  padding: .6rem 1.35rem; border-radius: 999px; position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap;
}
.fbtn:hover { text-decoration: none; transform: translateY(-2px); }
.fbtn-daftar {
  background: linear-gradient(180deg, #ffe083, var(--gold) 45%, var(--gold-2)); color: #3a2a00;
  box-shadow: 0 5px 16px rgba(247, 197, 46, .5);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.fbtn-daftar::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 36px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .65), transparent);
  transform: translateX(-120px) skewX(-18deg);
  animation: shine 2.8s ease-in-out infinite;
}
.fbtn-login {
  background: linear-gradient(180deg, #ef2f63, var(--red) 55%, var(--red-dark)); color: #fff;
  box-shadow: 0 5px 16px rgba(211, 18, 69, .5);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 5px 16px rgba(247, 197, 46, .5); }
  50% { box-shadow: 0 5px 28px rgba(247, 197, 46, .85); }
}
@keyframes shine { 0%, 55% { transform: translateX(-120px) skewX(-18deg); } 85%, 100% { transform: translateX(220px) skewX(-18deg); } }
.coin {
  position: absolute; bottom: 4px; font-size: 13px; opacity: 0; pointer-events: none;
  animation: coinRise 2.6s ease-in infinite;
}
.coin-1 { left: 12%; animation-delay: .2s; }
.coin-2 { left: 48%; animation-delay: 1.1s; font-size: 15px; }
.coin-3 { left: 78%; animation-delay: 1.9s; }
@keyframes coinRise {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  12% { opacity: 1; }
  70% { opacity: .9; }
  100% { transform: translateY(-64px) rotate(340deg); opacity: 0; }
}

/* ---- Misc ---- */
.divider-gold { height: 4px; width: 84px; margin: .9rem auto 0; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--red)); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 1.8rem; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .split { grid-template-columns: 1fr; gap: 1.6rem; }
  .auth-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-navigation {
    position: fixed; inset: 68px 0 auto 0; background: #141519; z-index: 94;
    max-height: calc(100dvh - 68px); overflow-y: auto; display: none;
    border-bottom: 3px solid var(--gold); box-shadow: 0 24px 40px rgba(0, 0, 0, .45);
  }
  .main-navigation.is-open { display: block; }
  .primary-menu { flex-direction: column; align-items: stretch; gap: 0; padding: .6rem 1rem 1rem; }
  .primary-menu > li > a { padding: .8rem .6rem; border-radius: 8px; font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .06); }
  .header-search { padding: .8rem .2rem; }
  .header-search input { width: 100%; flex: 1; }
  .header-actions .btn-gold { display: none; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 640px) {
  body { padding-bottom: 72px; font-size: 15.5px; }
  .btn { padding-inline: 1rem; white-space: normal; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .hero-stat b { font-size: 1.05rem; }
  .hero-stat span { font-size: .68rem; }
  .hero-cta .btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .float-cta-label { display: none; }
  .float-cta-inner { gap: .5rem; padding: .4rem .55rem .4rem .7rem; width: 100%; max-width: 480px; justify-content: center; }
  .reel { width: 22px; height: 22px; }
  .reel-strip { font-size: 10px; line-height: 22px; }
  .fbtn { padding: .58rem 1.1rem; font-size: .85rem; }
  .cat-grid, .steps-grid, .adv-grid, .quote-grid, .promo-grid { grid-template-columns: 1fr; }
  .chip-a, .chip-b { display: none; }
  .breadcrumbs { font-size: .78rem; }
  table.data { min-width: 460px; }
}
@media (max-width: 400px) {
  .brand-text small { display: none; }
  .age-badge { min-width: 34px; height: 34px; font-size: .72rem; }
  .hero-stat b { font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
