/*
Theme Name: Qqstar88 Portal
Theme URI: https://qqstar88.games
Description: Tema portal informasi Qqstar88 - mengikuti struktur tema WordPress (header.php/footer.php/archive.php/single.php) yang dirender menjadi HTML statis.
Author: Redaksi Qqstar88
Version: 1.0.0
Text Domain: qqstar88
*/

:root {
  --c-dark: #0a0d13;
  --c-dark2: #0d1119;
  --c-dark3: #10141d;
  --c-card: #141926;
  --c-line: #232a3a;
  --c-line2: #2a3245;
  --c-red: #e5273a;
  --c-red-deep: #b31c2c;
  --c-gold: #f6c445;
  --c-gold-deep: #d9a520;
  --c-green: #22a35e;
  --c-blue: #2e7cf6;
  --c-text: #e8eaf0;
  --c-muted: #a6adbd;
  --c-muted2: #8d94a5;
  --c-light-bg: #f5f6fa;
  --c-light-card: #ffffff;
  --c-light-text: #141821;
  --c-light-muted: #4b5262;
  --radius: 16px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .45);
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-dark);
}

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

p, li, td, th, h1, h2, h3, h4, summary, a, span, strong { overflow-wrap: break-word; }

a { color: var(--c-gold); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 2000;
  width: auto; height: auto;
  clip: auto;
  background: var(--c-gold);
  color: #3d2b03;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

/* =Buttons
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: linear-gradient(180deg, #f0324a, #c9172c);
  color: #fff;
  box-shadow: 0 8px 22px rgba(230, 39, 58, .35);
}
.btn-red:hover { color: #fff; }

.btn-gold {
  background: linear-gradient(180deg, #ffd968, #e9a820);
  color: #4a2c03;
  box-shadow: 0 8px 22px rgba(246, 196, 69, .3);
}
.btn-gold:hover { color: #3a2202; }

.btn-outline {
  border-color: rgba(246, 196, 69, .55);
  color: var(--c-gold);
  background: rgba(246, 196, 69, .06);
}
.btn-outline:hover { color: #ffd968; background: rgba(246, 196, 69, .14); }

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; }

.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

.center-btn { text-align: center; margin-top: 30px; }

/* =Header
----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 19, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a2130;
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .45); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
}

.site-branding { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.logo-chip { display: inline-flex; filter: drop-shadow(0 3px 8px rgba(230, 39, 58, .4)); }

.logo-text {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .3px;
}

.logo-text em { font-style: normal; color: var(--c-gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 9px 13px;
  border-radius: 9px;
  color: #cdd3e0;
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  transition: .2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: #fff;
  background: var(--c-card);
}

.nav-menu__cta { display: none; gap: 10px; align-items: center; padding: 10px 13px; }

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.icon-btn {
  background: var(--c-card);
  border: 1px solid var(--c-line2);
  color: var(--c-text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
}

.icon-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--c-card);
  border: 1px solid var(--c-line2);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: .25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =Breadcrumb
----------------------------------------------- */
.breadcrumb { padding: 18px 22px 0; font-size: 13px; }

.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  padding: 0;
}

.breadcrumb__list a { color: var(--c-muted2); text-decoration: none; }
.breadcrumb__list a:hover { color: var(--c-gold); }
.breadcrumb__list li + li::before { content: "\203A"; margin-right: 8px; color: #5a6275; }
.breadcrumb__list [aria-current="page"] { color: var(--c-text); }

/* =Home hero
----------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 74px;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(230, 39, 58, .26), transparent 62%),
    radial-gradient(820px 430px at -12% 112%, rgba(246, 196, 69, .13), transparent 58%),
    linear-gradient(180deg, #0d1119, var(--c-dark));
  border-bottom: 1px solid #1a2130;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(640px 420px at 62% 38%, #000 30%, transparent 78%);
  mask-image: radial-gradient(640px 420px at 62% 38%, #000 30%, transparent 78%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.16;
  font-weight: 800;
  color: #fff;
}

.hero h1 .hl { color: var(--c-gold); }

.hero .lead {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.75;
  color: #c3c9d6;
  max-width: 580px;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
}

.pill-red   { background: rgba(230, 39, 58, .13);  color: #ff8f9d; border: 1px solid rgba(230, 39, 58, .4); }
.pill-blue  { background: rgba(46, 124, 246, .13); color: #8db6ff; border: 1px solid rgba(46, 124, 246, .4); }
.pill-green { background: rgba(34, 163, 94, .13);  color: #7fe0ae; border: 1px solid rgba(34, 163, 94, .4); }
.pill-gold  { background: rgba(246, 196, 69, .12); color: var(--c-gold); border: 1px solid rgba(246, 196, 69, .45); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-note { margin: 16px 0 0; font-size: 13px; color: var(--c-muted2); max-width: 560px; }

.hero-media { position: relative; }

.hero-media img {
  border-radius: 18px;
  border: 1px solid rgba(246, 196, 69, .3);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 196, 69, .22), transparent 70%);
  pointer-events: none;
}

.badge18-circle {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--c-red);
  border: 3px solid var(--c-gold);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(230, 39, 58, .5);
  animation: bob 3.2s ease-in-out infinite;
}

.badge18-circle small { font-size: 9px; font-weight: 600; letter-spacing: .06em; margin-top: 3px; }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* =Sections umum
----------------------------------------------- */
.sec { padding: 66px 0; }
.sec-alt { background: var(--c-dark2); }
.sec-light { background: var(--c-light-bg); color: var(--c-light-text); }

.sec-head { max-width: 740px; margin: 0 auto 42px; text-align: center; }

.kicker {
  color: var(--c-gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.sec-light .kicker { color: var(--c-red-deep); }

.sec-head h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.sec-light .sec-head h2 { color: var(--c-light-text); }

.sec-head .sub { margin: 0; color: var(--c-muted); font-size: 16px; }
.sec-light .sec-head .sub { color: var(--c-light-muted); }

/* =Langkah 4 panduan
----------------------------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.step-card {
  background: var(--c-light-card);
  border: 1px solid #e3e6ee;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 10px 26px rgba(20, 24, 33, .06);
  position: relative;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #f0324a, #8f1220);
  box-shadow: 0 8px 18px rgba(230, 39, 58, .3);
}

.step-card:nth-child(2) .step-num { background: linear-gradient(135deg, #ffd968, #c88f0e); color: #4a2c03; box-shadow: 0 8px 18px rgba(246, 196, 69, .32); }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg, #2e7cf6, #1749a8); box-shadow: 0 8px 18px rgba(46, 124, 246, .3); }
.step-card:nth-child(4) .step-num { background: linear-gradient(135deg, #2fbe77, #107a43); box-shadow: 0 8px 18px rgba(34, 163, 94, .3); }

.step-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--c-light-text); }
.step-card p { margin: 0 0 12px; font-size: 14.5px; color: var(--c-light-muted); }

.step-link { font-size: 14px; font-weight: 600; color: var(--c-red-deep); text-decoration: none; }
.step-link:hover { text-decoration: underline; }

/* =Kartu promosi
----------------------------------------------- */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.promo-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--c-card), var(--c-dark3));
  border: 1px solid var(--c-line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 196, 69, .5);
  box-shadow: var(--shadow);
}

.promo-card figure { margin: 0; position: relative; }

.promo-card figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.promo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 13, 19, .88);
  border: 1px solid rgba(246, 196, 69, .5);
  color: var(--c-gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}

.promo-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.promo-body h3 { margin: 0; font-size: 18px; color: #fff; }
.promo-body p { margin: 0; color: var(--c-muted); font-size: 14.5px; flex: 1; }

.promo-facts-row { display: flex; flex-wrap: wrap; gap: 8px; }

.fact-chip {
  font-size: 12px;
  color: #cdd3e0;
  background: var(--c-dark);
  border: 1px solid var(--c-line2);
  border-radius: 8px;
  padding: 5px 9px;
}

.fact-chip b { color: var(--c-gold); font-weight: 700; }

.promo-card .btn { align-self: flex-start; }

/* =Kenapa memilih kami
----------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.why-card {
  background: var(--c-light-card);
  border: 1px solid #e3e6ee;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(20, 24, 33, .06);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.wi-red   { background: #fde8eb; color: #c9172c; }
.wi-gold  { background: #fdf3d7; color: #a97a10; }
.wi-green { background: #e2f5ea; color: #157a44; }
.wi-blue  { background: #e7effe; color: #1d5fd0; }
.wi-dark  { background: #e8eaf0; color: var(--c-light-text); }

.why-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--c-light-text); }
.why-card p { margin: 0; font-size: 14.5px; color: var(--c-light-muted); }

/* =Pengalaman mobile
----------------------------------------------- */
.mobile-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.phone-mockup {
  width: 268px;
  height: 540px;
  margin: 0 auto;
  border-radius: 40px;
  background: #070a10;
  border: 3px solid var(--c-line2);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .6), inset 0 0 0 3px #05070b;
  position: relative;
  padding: 34px 14px 18px;
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 18px;
  border-radius: 999px;
  background: #1a2130;
  z-index: 2;
}

.pm-screen { display: flex; flex-direction: column; gap: 10px; height: 100%; }

.pm-bar {
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(90deg, #c9172c, #8f1220);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.pm-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .55); }
.pm-bar b { flex: 1; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .35); }

.pm-hero {
  height: 92px;
  border-radius: 12px;
  background:
    radial-gradient(160px 80px at 85% 0%, rgba(246, 196, 69, .4), transparent 70%),
    linear-gradient(135deg, #1a2130, #10141d);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}

.pm-hero::after {
  content: "Qqstar88";
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--c-gold);
}

.pm-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.pm-card {
  height: 64px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  background: var(--c-dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pm-card:nth-child(1) { background: linear-gradient(135deg, #24131a, #141926); }
.pm-card:nth-child(2) { background: linear-gradient(135deg, #12231a, #141926); }
.pm-card:nth-child(3) { background: linear-gradient(135deg, #131f33, #141926); }
.pm-card:nth-child(4) { background: linear-gradient(135deg, #27200f, #141926); }

.pm-reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.pm-reel {
  height: 76px;
  border-radius: 12px;
  border: 1px solid rgba(246, 196, 69, .4);
  background: #05070b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.pm-float {
  margin-top: auto;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd968, #e9a820);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #4a2c03;
}

.mobile-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }

.mobile-feats li { display: flex; gap: 14px; }

.mf-ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--c-card);
  border: 1px solid var(--c-line2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mf-ico.c-gold svg { color: var(--c-gold); }
.mf-ico.c-green svg { color: #4ec98a; }
.mf-ico.c-blue svg { color: #7dabff; }
.mf-ico.c-red svg { color: #ff8f9d; }

.mobile-feats h3 { margin: 0 0 4px; font-size: 16px; color: #fff; }
.mobile-feats p { margin: 0; color: var(--c-muted); font-size: 14.5px; }

/* =Testimoni
----------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.testi-card {
  background: var(--c-light-card);
  border: 1px solid #e3e6ee;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(20, 24, 33, .06);
  display: flex;
  flex-direction: column;
}

.stars { color: #e9a820; font-size: 14px; letter-spacing: 3px; margin-bottom: 10px; }

.testi-card blockquote {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #333a48;
  flex: 1;
}

.testi-user { display: flex; align-items: center; gap: 11px; }

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex: none;
}

.av-red { background: linear-gradient(135deg, #f0324a, #8f1220); }
.av-blue { background: linear-gradient(135deg, #5c9aff, #1749a8); }
.av-green { background: linear-gradient(135deg, #2fbe77, #107a43); }
.av-gold { background: linear-gradient(135deg, #ffd968, #c88f0e); color: #4a2c03; }

.testi-user strong { display: block; font-size: 14px; color: var(--c-light-text); line-height: 1.3; }
.testi-user span { font-size: 12.5px; color: #7a8194; }

.testi-note { text-align: center; font-size: 12.5px; color: #7a8194; margin: 20px 0 0; }

/* =Cerita brand
----------------------------------------------- */
.story-inner { max-width: 840px; margin: 0 auto; }

.story-inner .sec-head { margin-bottom: 26px; }

.story-inner p { color: #c3c9d6; font-size: 15.5px; }

.story-link { margin-top: 18px; text-align: center; }

/* =Kamus istilah
----------------------------------------------- */
.gloss-wrap { max-width: 880px; margin: 0 auto; }

.gloss-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }

.gloss-chip {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #cdd3e0;
  background: var(--c-card);
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  padding: 9px 17px;
  cursor: pointer;
  transition: .2s;
}

.gloss-chip:hover { border-color: var(--c-gold); color: var(--c-gold); }

.gloss-chip.active {
  background: linear-gradient(180deg, #ffd968, #e9a820);
  border-color: var(--c-gold);
  color: #4a2c03;
  font-weight: 700;
}

.gloss-panel {
  display: none;
  background: var(--c-dark3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 30px;
}

.gloss-panel.active { display: block; }

.gloss-panel h3 { margin: 0 0 10px; color: var(--c-gold); font-size: 19px; }
.gloss-panel p { margin: 0; color: #c3c9d6; line-height: 1.8; }

/* =Keamanan & RG
----------------------------------------------- */
.sec-security {
  background:
    radial-gradient(800px 400px at 110% 10%, rgba(46, 124, 246, .12), transparent 60%),
    linear-gradient(180deg, #0b1120, var(--c-dark));
}

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

.sec-card {
  background: var(--c-dark3);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-blue);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.sec-card--green { border-left-color: var(--c-green); }
.sec-card--red { border-left-color: var(--c-red); }

.sec-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; font-size: 18px; color: #fff; }

.sec-card > p { margin: 0 0 6px; color: var(--c-muted); font-size: 14.5px; }

.check-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 11px; }

.check-list li { display: flex; gap: 11px; color: #c3c9d6; font-size: 14.5px; }

.check-list svg { flex: none; margin-top: 3px; }

.sec-rg {
  background:
    radial-gradient(800px 420px at -10% 20%, rgba(34, 163, 94, .14), transparent 60%),
    linear-gradient(180deg, var(--c-dark), #08120d);
}

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

.rg-box {
  background: #0d1712;
  border: 1px solid #1e3a2d;
  border-radius: var(--radius);
  padding: 26px 24px;
}

.rg-box h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; font-size: 17px; color: #fff; }

.dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot-green { background: var(--c-green); box-shadow: 0 0 10px rgba(34, 163, 94, .8); }
.dot-red { background: var(--c-red); box-shadow: 0 0 10px rgba(230, 39, 58, .8); }

.rg-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.rg-list li { display: flex; gap: 11px; font-size: 14.5px; color: #c3c9d6; }

.help-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

.help-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #7fe0ae;
  background: rgba(34, 163, 94, .1);
  border: 1px solid rgba(34, 163, 94, .45);
  border-radius: 999px;
  padding: 9px 17px;
  text-decoration: none;
  transition: .2s;
}

.help-chip:hover { background: rgba(34, 163, 94, .2); color: #a9f0c9; }

/* =FAQ
----------------------------------------------- */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
  background: var(--c-light-card);
  border: 1px solid #e3e6ee;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(20, 24, 33, .05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px 22px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--c-light-text);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--c-red-deep);
}

.faq-item[open] summary::after { content: "\2013"; }

.faq-item .faq-a { padding: 0 22px 19px; color: var(--c-light-muted); font-size: 14.5px; line-height: 1.75; }
.faq-item .faq-a a { color: var(--c-red-deep); }

/* =CTA band
----------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #7d0f1e, #b31c2c 42%, #e5273a);
  border-top: 1px solid rgba(246, 196, 69, .4);
  border-bottom: 1px solid rgba(246, 196, 69, .25);
  padding: 54px 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .045) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band h2 { margin: 0 0 8px; color: #fff; font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; }
.cta-band p { margin: 0; color: #ffe0e4; font-size: 15px; max-width: 580px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =Footer
----------------------------------------------- */
.site-footer { background: #070a10; border-top: 1px solid #1a2130; padding-top: 58px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 38px;
}

.footer-col h3 { color: #fff; font-size: 15px; margin: 0 0 15px; letter-spacing: .04em; }

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.footer-col a { color: var(--c-muted); font-size: 14px; text-decoration: none; transition: .2s; }
.footer-col a:hover { color: var(--c-gold); }

.footer-about p { color: var(--c-muted2); font-size: 14px; line-height: 1.75; margin: 15px 0; }

.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }

.badge { font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 8px; }
.badge-18 { background: var(--c-red); color: #fff; }
.badge-rg { background: #0e2b1e; color: #7fe0ae; border: 1px solid rgba(34, 163, 94, .5); }

.footer-legal { border-top: 1px solid #141a26; background: #05070b; padding: 22px 0; }

.legal-notice {
  font-size: 12.5px;
  color: #66708a;
  line-height: 1.75;
  margin: 0 0 10px;
  text-align: center;
}

.copyright { font-size: 13px; color: var(--c-muted2); text-align: center; margin: 0; }

/* =Halaman dalam
----------------------------------------------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 82% -22%, rgba(230, 39, 58, .2), transparent 62%),
    linear-gradient(180deg, var(--c-dark2), var(--c-dark));
  border-bottom: 1px solid #1a2130;
  padding: 42px 0 42px;
}

.page-hero--promo {
  background:
    radial-gradient(900px 400px at 82% -22%, rgba(246, 196, 69, .16), transparent 62%),
    linear-gradient(180deg, var(--c-dark2), var(--c-dark));
}

.page-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 38px; align-items: center; }

.page-hero h1 {
  margin: 0 0 13px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
}

.page-hero .lead { margin: 0 0 18px; color: #b9c0ce; font-size: 16.5px; line-height: 1.75; }

.page-hero--plain { padding: 54px 0 44px; text-align: center; }
.page-hero--plain .lead { max-width: 780px; margin-left: auto; margin-right: auto; }
.page-hero--plain .hero-badges { justify-content: center; }

.page-hero__media img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(246, 196, 69, .28);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.promo-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  max-width: 470px;
}

.promo-facts li {
  background: var(--c-dark3);
  border: 1px solid var(--c-line2);
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-facts span { font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--c-muted2); }
.promo-facts strong { color: var(--c-gold); font-size: 15.5px; }

.page-article { padding-bottom: 30px; }

.page-banner {
  margin: 26px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-line);
}

.page-banner img { width: 100%; object-fit: cover; }

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 18px 0 14px;
  border-bottom: 1px dashed var(--c-line);
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--c-muted2);
}

.entry-meta a { color: var(--c-gold); text-decoration: none; }

.entry-content { max-width: 820px; font-size: 16px; line-height: 1.85; color: #d6dae4; }

.entry-content h2 {
  font-size: 24px;
  color: #fff;
  margin: 40px 0 15px;
  padding-left: 14px;
  border-left: 4px solid var(--c-red);
  line-height: 1.35;
}

.entry-content h3 { font-size: 19px; color: var(--c-gold); margin: 28px 0 11px; }
.entry-content p { margin: 0 0 17px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px; padding-left: 24px; display: grid; gap: 9px; }
.entry-content li::marker { color: var(--c-gold); font-weight: 700; }
.entry-content a { color: #8db6ff; text-decoration: underline; text-decoration-color: rgba(141, 182, 255, .35); }
.entry-content a:hover { color: var(--c-gold); }
.entry-content figure { margin: 0 0 20px; }
.entry-content figure img { border-radius: 16px; border: 1px solid var(--c-line); width: 100%; }
.entry-content figcaption { font-size: 13px; color: var(--c-muted2); margin-top: 9px; text-align: center; }

.table-scroll { overflow-x: auto; margin: 0 0 20px; border-radius: 12px; border: 1px solid var(--c-line); -webkit-overflow-scrolling: touch; }

.entry-content table { border-collapse: collapse; width: 100%; min-width: 580px; background: var(--c-dark2); font-size: 14.5px; }

.entry-content th {
  background: var(--c-card);
  color: var(--c-gold);
  text-align: left;
  padding: 12px 15px;
  font-size: 13.5px;
  letter-spacing: .03em;
}

.entry-content td { padding: 12px 15px; border-top: 1px solid #1c2331; color: #cdd3e0; vertical-align: top; }

.note {
  display: flex;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid;
  padding: 16px 18px;
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.7;
}

.note-warn { background: #241a06; border-color: rgba(246, 196, 69, .35); color: #f2dfa4; }
.note-info { background: #0d1526; border-color: rgba(46, 124, 246, .35); color: #c3d6fb; }
.note-ok { background: #0c1a12; border-color: rgba(34, 163, 94, .35); color: #bfe9d2; }

.note b { display: block; margin-bottom: 3px; }

/* =Terkait
----------------------------------------------- */
.related { margin: 46px 0 10px; }

.related h2 { font-size: 21px; color: #fff; margin: 0 0 16px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.related-card {
  display: block;
  background: var(--c-dark3);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 20px 18px;
  text-decoration: none;
  transition: .2s;
}

.related-card:hover { border-color: rgba(246, 196, 69, .5); transform: translateY(-3px); }
.related-card h3 { margin: 0 0 7px; font-size: 15.5px; color: #fff; line-height: 1.45; }
.related-card p { margin: 0; font-size: 13.5px; color: var(--c-muted); }

/* =Halaman auth (daftar/login)
----------------------------------------------- */
.auth-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  padding: 40px 0 70px;
  align-items: start;
}

.auth-panel {
  background: var(--c-dark3);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: var(--shadow);
}

.auth-panel > h2 { margin: 0 0 6px; font-size: 24px; color: #fff; }
.auth-panel .auth-sub { margin: 0 0 22px; color: var(--c-muted); font-size: 14.5px; }

.form-grid { display: grid; gap: 17px; }

.field label { display: block; font-size: 13.5px; font-weight: 600; color: #cdd3e0; margin-bottom: 7px; }

.field input {
  width: 100%;
  background: var(--c-dark);
  border: 1px solid var(--c-line2);
  border-radius: 12px;
  padding: 13px 15px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus { border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(246, 196, 69, .18); }

.field .hint { font-size: 12.5px; color: var(--c-muted2); margin-top: 6px; }

.checkbox-row { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: #c3c9d6; line-height: 1.6; }

.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--c-red); cursor: pointer; }

.checkbox-row a { color: #8db6ff; }

.form-note { font-size: 12.5px; color: var(--c-muted2); text-align: center; margin: 4px 0 0; }

.form-alt { text-align: center; font-size: 14px; color: var(--c-muted); margin: 16px 0 0; }
.form-alt a { color: var(--c-gold); font-weight: 600; text-decoration: none; }

.auth-side { display: grid; gap: 16px; }

.side-card {
  background: #0f141d;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 24px 22px;
}

.side-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; font-size: 16px; color: #fff; }
.side-card ol, .side-card ul { margin: 0; padding-left: 20px; display: grid; gap: 9px; color: #c3c9d6; font-size: 14.5px; }
.side-card li::marker { color: var(--c-gold); font-weight: 700; }
.side-card p { margin: 0; color: #c3c9d6; font-size: 14.5px; }

/* =Search overlay
----------------------------------------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(7, 9, 14, .92);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 18px 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.search-overlay.open { opacity: 1; visibility: visible; }

.search-panel {
  width: 100%;
  max-width: 660px;
  background: var(--c-dark3);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .7);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--c-dark);
  border: 1px solid var(--c-line2);
  border-radius: 12px;
  padding: 12px 15px;
  color: var(--c-muted);
}

.search-bar input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
}

.search-close {
  background: none;
  border: none;
  color: var(--c-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.search-close:hover { color: #fff; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 13px 4px 4px; }

.tag-cloud__label { font-size: 12.5px; color: var(--c-muted2); margin-right: 2px; }

.tag-chip {
  font-family: inherit;
  font-size: 13px;
  color: #cdd3e0;
  background: var(--c-card);
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  padding: 6px 13px;
  cursor: pointer;
  transition: .2s;
}

.tag-chip:hover { border-color: var(--c-gold); color: var(--c-gold); }

.search-results { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 6px; }

.search-results a {
  display: block;
  padding: 12px 14px;
  border-radius: 11px;
  text-decoration: none;
  color: var(--c-text);
  background: transparent;
  transition: .15s;
}

.search-results a:hover { background: var(--c-card); }
.search-results strong { display: block; font-size: 15px; color: #fff; margin-bottom: 3px; font-weight: 600; }
.search-results span { font-size: 13px; color: var(--c-muted); }
.search-results b { color: var(--c-gold); }

.search-empty { padding: 16px 14px; color: var(--c-muted); font-size: 14.5px; }

/* =Floating CTA (gaya mesin slot + koin)
----------------------------------------------- */
.float-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
}

.float-cta__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(180deg, #1a2130, #0d1119);
  border: 2px solid var(--c-gold);
  border-radius: 999px;
  padding: 8px 12px 8px 11px;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .55), 0 0 0 1px rgba(246, 196, 69, .25), 0 0 26px rgba(230, 39, 58, .3);
}

.float-cta__reels { display: flex; gap: 4px; }

.reel {
  width: 31px;
  height: 31px;
  border-radius: 7px;
  background: #05070b;
  border: 1px solid rgba(246, 196, 69, .4);
  overflow: hidden;
  display: inline-flex;
}

.reel-strip { display: flex; flex-direction: column; animation: reelSpin 1.05s linear infinite; }

.reel-strip i {
  font-style: normal;
  font-size: 16px;
  line-height: 31px;
  height: 31px;
  width: 29px;
  text-align: center;
}

.reel--slow .reel-strip { animation-duration: 1.6s; }
.reel--fast .reel-strip { animation-duration: .68s; }

@keyframes reelSpin { to { transform: translateY(-155px); } }

.float-cta__btn {
  position: relative;
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #5b1405;
  background: linear-gradient(180deg, #ffd968, #e9a820);
  border-radius: 999px;
  padding: 11px 24px;
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.float-cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 42%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .75), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246, 196, 69, .55); }
  55% { box-shadow: 0 0 0 12px rgba(246, 196, 69, 0); }
}

@keyframes ctaShine {
  0% { left: -70%; }
  55%, 100% { left: 135%; }
}

.float-coin {
  position: absolute;
  bottom: 8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe9a3, #f6c445 55%, #b47d10);
  border: 2px solid #d9a520;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  animation: coinUp 2.3s linear infinite;
}

.float-coin--1 { left: 22%; animation-delay: .25s; }
.float-coin--2 { right: 24%; animation-delay: 1.05s; }
.float-coin--3 { left: 47%; animation-delay: 1.7s; }

@keyframes coinUp {
  0% { bottom: 8px; opacity: 0; transform: translateY(0) scale(.6); }
  14% { opacity: 1; }
  60% { opacity: 1; }
  100% { bottom: 72px; opacity: 0; transform: translateY(-8px) scale(1.05); }
}

/* =Animasi reveal
----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reel-strip, .float-coin, .float-cta__btn, .float-cta__btn::after, .badge18-circle { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =Responsif
----------------------------------------------- */
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 990;
    background: #0c1017;
    border-bottom: 1px solid var(--c-line);
    padding: 10px 22px 18px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    box-shadow: 0 24px 40px rgba(0, 0, 0, .5);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .primary-nav.open { transform: none; }

  .nav-menu { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-menu a { padding: 12px 14px; font-size: 15px; }
  .nav-menu__cta { display: flex; padding: 12px 14px 4px; }

  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { max-width: 560px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-grid { grid-template-columns: 1fr; gap: 36px; }
  .phone-mockup { order: 2; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero__inner { grid-template-columns: 1fr; gap: 26px; }
  .page-hero__media { max-width: 620px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .rg-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .breadcrumb { padding: 14px 16px 0; }

  .btn { white-space: normal; }
  .center-btn .btn, .story-link .btn { max-width: 100%; }

  .hero { padding: 44px 0 52px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .badge18-circle { width: 58px; height: 58px; font-size: 16px; top: -12px; right: 2px; }

  .sec { padding: 52px 0; }
  .sec-head { margin-bottom: 32px; }

  .steps-grid, .promo-grid, .why-grid, .testi-grid, .related-grid { grid-template-columns: 1fr; }

  .cta-band { padding: 42px 0; }
  .cta-band__inner { text-align: center; justify-content: center; }
  .cta-band p { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .legal-notice { text-align: left; }

  .float-cta { width: calc(100% - 18px); bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .float-cta__link { justify-content: space-between; padding: 7px 9px 7px 8px; gap: 10px; }
  .reel { width: 28px; height: 28px; }
  .reel-strip i { font-size: 14px; line-height: 28px; height: 28px; width: 26px; }
  .float-cta__btn { padding: 10px 18px; font-size: 14px; flex: 1; text-align: center; }

  .promo-facts { grid-template-columns: repeat(2, 1fr); }

  .entry-content { font-size: 15.5px; }
  .entry-content h2 { font-size: 21px; }
  .entry-content h3 { font-size: 17.5px; }

  .auth-panel { padding: 24px 20px; }

  .gloss-panel { padding: 22px 20px; }

  .search-overlay { padding: 76px 12px 20px; }

  .header-actions .btn-outline { display: none; }
}

@media (max-width: 360px) {
  .header-actions .btn-red { padding: 8px 12px; font-size: 13px; }
  .logo-text { font-size: 19px; }
  .icon-btn { width: 36px; height: 36px; }
}
