*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }


:root {
  --cream: #f5f0e8;
  --cream2: #ede7da;
  --warm-white: #faf8f4;
  --gold: #c8962a;
  --gold-dark: #a07520;
  --gold-light: #e8c060;
  --gold-pale: #f5e8c0;
  --ink: #2a2418;
  --ink-mid: #5a5040;
  --ink-soft: #8a7d68;
  --ink-faint: #b8ad9c;
  --border: #ddd5c0;
  --border-light: #ede8dc;
  --shadow: rgba(42,36,24,0.08);
  --shadow-md: rgba(42,36,24,0.14);
  --radius: 12px;
}
body { background: var(--cream); color: var(--ink); font-family: 'DM Sans', system-ui, sans-serif; font-size: 14px; line-height: 1.6; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
.page { max-width: 440px; margin: 0 auto; background: var(--warm-white); min-height: 100vh; box-shadow: 0 0 40px var(--shadow-md); }
.hero { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--cream2); position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(250,248,244,0.75) 100%); }
.hero .hero-media, .hero img { width: 100%; height: 100%; display: block; }
.hero .hero-media { object-fit: cover; object-position: center center; }
.hero img { object-fit: contain; object-position: center 10%; }
.topbar { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--cream2); border-bottom: 1px solid var(--border-light); font-size: 12px; color: var(--ink-soft); }
.topbar a { display: flex; align-items: center; gap: 4px; color: var(--gold-dark); font-weight: 600; }
.topbar a:hover { color: var(--gold); }
.topbar-sep { color: var(--ink-faint); }
.topbar-current { color: var(--ink-mid); font-weight: 500; }
.header { padding: 22px 20px 16px; border-bottom: 1px solid var(--border-light); background: var(--warm-white); }
.header-inner { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.logo-badge { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(200,150,42,0.30); }

.site-name span { color: var(--gold); }
.site-tagline { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; font-weight: 500; text-align: center; max-width: 340px; margin: 0 auto; }
.live-badge { display: inline-flex; align-items: center; gap: 5px; background: #f0faf0; border: 1px solid #c0e8c0; border-radius: 20px; padding: 2px 8px; font-size: 10.5px; color: #2a7a2a; font-weight: 600; margin-top: 10px; }
.live-dot { width: 6px; height: 6px; background: #3ab03a; border-radius: 50%; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.nav-wrap { padding: 16px 20px; background: var(--warm-white); border-bottom: 1px solid var(--border-light); }
.btn-list { display: flex; flex-direction: column; gap: 10px; }
.btn-group-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); padding: 0 2px; margin-top: 6px; margin-bottom: 2px; }
.btn { display: block; width: 100%; padding: 14px 16px; background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--ink); box-shadow: 0 1px 3px var(--shadow); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease; }
.btn:hover { background: #fffdf8; border-color: var(--gold-light); box-shadow: 0 4px 14px rgba(42,36,24,.08); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-label { display:block; font-size:14px; font-weight:800; color: var(--ink); line-height:1.3; text-align:center; }
.btn-sub { display:block; font-size:11.5px; color: var(--ink-soft); margin-top:3px; line-height:1.55; }
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-color: var(--gold-dark); box-shadow: 0 6px 20px rgba(200,150,42,0.28); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); border-color: var(--gold); box-shadow: 0 8px 22px rgba(200,150,42,0.32); }
.btn-primary .btn-label { color: #fff; font-size: 14.5px; }
.btn-primary .btn-sub { color: rgba(255,255,255,.82); }
.btn-soft { background: linear-gradient(180deg, #fffdf9 0%, #faf6ee 100%); }
.btn-ghost { background: transparent; }
.content { padding: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tag { background: var(--cream2); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 11px; color: var(--ink-mid); font-weight: 600; }
.tag-gold { background: var(--gold-pale); border-color: var(--gold-light); color: var(--gold-dark); }
.sec { margin-bottom: 22px; }
.sec-title { font-family: 'DM Serif Display', serif; font-size: 17px; font-weight: 400; color: var(--ink); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.sec-title::before { content: ''; display: inline-block; width: 3px; height: 16px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.sec p { font-size: 13px; color: var(--ink-mid); line-height: 1.9; }
.sec p strong { color: var(--ink); font-weight: 700; }
.sec p + p { margin-top: 10px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.feature-card { background: var(--cream); border: 1.5px solid var(--border-light); border-radius: var(--radius); padding: 13px 12px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: var(--gold-light); box-shadow: 0 2px 8px rgba(200,150,42,0.12); }
.feature-icon { font-size: 20px; margin-bottom: 7px; display: block; }
.feature-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.feature-desc { font-size: 11px; color: var(--ink-soft); line-height: 1.6; }
.article-banner { background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream2) 100%); border-bottom: 1px solid var(--border); padding: 20px 20px 16px; }
.article-category { display: inline-block; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.article-title { font-family: 'DM Serif Display', serif; font-size: 20px; font-weight: 400; color: var(--ink); line-height: 1.35; margin-bottom: 8px; }
.article-meta { font-size: 11px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.article-meta-dot { color: var(--ink-faint); }
.sub-nav { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.sub-btn { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px 11px 12px; background: var(--warm-white); border: 1.5px solid var(--border-light); border-left: 3px solid var(--gold); border-radius: var(--radius); transition: all 0.16s ease; font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; }
.sub-btn:hover { background: var(--gold-pale); border-color: var(--gold); transform: translateX(2px); }
.sub-btn-right { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 18px; font-weight: 300; }
.sub-btn-tag { font-size: 10px; background: var(--gold-pale); border: 1px solid var(--gold-light); color: var(--gold-dark); padding: 1px 7px; border-radius: 10px; font-weight: 600; }
.info-card { background: var(--cream); border: 1.5px solid var(--border-light); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 14px; }
.info-card-title { font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 6px; display: flex; align-items: center; gap: 7px; }
.info-card p { font-size: 12.5px; color: var(--ink-mid); line-height: 1.8; }
.result-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 10px; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.result-table th { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #fff; font-weight: 700; padding: 10px 12px; text-align: left; font-size: 12px; letter-spacing: 0.02em; }
.result-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); color: var(--ink-mid); }
.result-table tr:last-child td { border-bottom: none; }
.result-table tr:nth-child(even) td { background: var(--cream); }
.result-table tr:hover td { background: var(--gold-pale); }
.result-badge { display: inline-block; background: var(--gold-pale); border: 1px solid var(--gold-light); color: var(--gold-dark); border-radius: 4px; padding: 2px 8px; font-weight: 700; font-size: 12px; letter-spacing: 0.05em; }
.pasaran-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.pasaran-item { display: flex; align-items: center; gap: 5px; background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 5px 10px; font-size: 11.5px; font-weight: 600; color: var(--ink-mid); }
.pasaran-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.divider { border: none; border-top: 1px solid var(--border-light); margin: 20px 0; }
.faq-title { font-family: 'DM Serif Display', serif; font-size: 17px; font-weight: 400; color: var(--ink); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.faq-title::before { content: ''; display: inline-block; width: 3px; height: 16px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.faq { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.faq-item { background: var(--cream); border: 1.5px solid var(--border-light); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item[open] { border-color: var(--gold-light); }
.faq-q { padding: 13px 14px; font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; list-style: none; user-select: none; -webkit-tap-highlight-color: transparent; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--gold); font-size: 20px; font-weight: 300; flex-shrink: 0; transition: transform 0.22s ease; line-height: 1; }
details[open] > .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 12.5px; color: var(--ink-mid); line-height: 1.85; padding: 10px 14px 13px; border-top: 1px solid var(--border-light); }
.footer { padding: 18px 20px 88px; border-top: 1px solid var(--border-light); background: var(--cream2); text-align: center; }
.footer-name { font-family: 'DM Serif Display', serif; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.footer-note { font-size: 11px; color: var(--ink-faint); line-height: 1.7; }
.footer-copy { font-size: 10.5px; color: var(--ink-faint); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.sticky-cta { position: fixed; left: 50%; bottom: 12px; transform: translateX(-50%); width: min(408px, calc(100% - 20px)); z-index: 30; display: flex; gap: 10px; padding: 8px; background: rgba(250,248,244,.94); border: 1px solid rgba(221,213,192,.92); border-radius: 16px; box-shadow: 0 10px 30px rgba(42,36,24,.12); backdrop-filter: blur(6px); }
.sticky-cta a { flex: 1; text-align: center; padding: 12px 14px; border-radius: 12px; font-size: 12.5px; font-weight: 700; }
.sticky-cta .sticky-main { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #fff; }
.sticky-cta .sticky-alt { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.sr { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
@media (max-height: 700px) { .hero { aspect-ratio: 16/7; } }
@media (max-width: 360px) {  .feature-grid { grid-template-columns: 1fr; } .sticky-cta { gap: 8px; padding: 7px; } .sticky-cta a { font-size: 12px; padding: 11px 10px; } }
@media (min-width: 700px) { .sticky-cta { width: min(420px, calc(100% - 24px)); } }


.header { text-align: center; }
.header .logo-badge { flex-shrink: 0; }
.btn-primary .btn-label,
.btn-primary .btn-sub,
.sticky-main { color: #fff; }

.btn-soft {
  background: linear-gradient(180deg, #fffdf9 0%, #faf6ee 100%);
  border-color: var(--gold-light);
}

.btn-content {
  background: linear-gradient(180deg, #fffdfa 0%, #f8f2e8 100%);
  border: 1.5px solid #e3d8c0;
  border-left: 4px solid var(--gold);
  box-shadow: 0 3px 10px rgba(42,36,24,0.06);
}

.btn-content:hover {
  background: linear-gradient(180deg, #fffefc 0%, #fbf6ef 100%);
  border-color: var(--gold-light);
  box-shadow: 0 5px 16px rgba(42,36,24,0.10);
}

.btn-content .btn-label {
  color: var(--ink);
}

.btn-content .btn-sub {
  color: var(--ink-mid);
}

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

.article-meta {
  justify-content: center;
}

.topbar-current {
  font-weight: 700;
}

/* === CONTENT VISUAL UPGRADE === */
.sec p,
.article-content p,
.info-card p {
  text-align: justify;
  line-height: 1.75;
  letter-spacing: 0.2px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Keep UI elements clean */
.site-tagline,
.btn-label,
.btn-sub,
.topbar,
.footer-note {
  text-align: left !important;
}

/* Improve section spacing */
.sec {
  margin-bottom: 24px;
}

/* Improve readability for titles */
.sec-title {
  margin-bottom: 10px;
}

/* Center content container feel */
.container {
  max-width: 820px;
  margin: 0 auto;
}

/* FAQ block */
.faq-list { display: grid; gap: 12px; margin-top: 10px; }
.faq-item { background: linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%); border: 1px solid #e3d8c0; border-radius: 12px; padding: 14px 15px; box-shadow: 0 3px 10px rgba(42,36,24,0.06); }
.faq-q { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.45; }
.faq-a { font-size: 13px; color: var(--ink-mid); line-height: 1.7; text-align: justify; }
.table-wrap { overflow-x: auto; margin: 12px 0 2px; border: 1px solid var(--border-light); border-radius: 12px; background: #fff; }
.result-table { width: 100%; border-collapse: collapse; min-width: 340px; }
.result-table th, .result-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); text-align: left; font-size: 12.5px; }
.result-table th { background: #faf6ee; color: var(--ink); font-weight: 700; }
.result-table tr:last-child td { border-bottom: none; }



/* FORCE DARK GOLD site-name (no bright gradient) */
.site-name {
  font-family: 'Cinzel', Georgia, serif !important;
  font-size: 27px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-align: center;
  line-height: 1.05;
  margin: 0;

  color: #a67c1a !important;
  background: none !important;
  -webkit-text-fill-color: #a67c1a !important;

  text-shadow: 0 1px 1px rgba(0,0,0,0.15) !important;
}