/* Bstation UI — electric cyan brand matched to official logo (#06B6F2) */
:root {
  --logo-cyan: #06B6F2;
  --logo-cyan-deep: #00A1D6;
  --logo-navy: #0B1B2B;
  --logo-ink: #071018;

  --navy: #0B1B2B;
  --deep: #00A1D6;
  --blue: #0284C7;
  --accent: #38C5F7;
  --lavender: #E0F6FF;
  --primary: #06B6F2;
  --primary-dark: #0284C7;
  --primary-light: #7DD3FC;
  --bg: #F4FAFD;
  --bg-soft: #E8F6FC;
  --card: #ffffff;
  --text: #0F172A;
  --muted: #5B6B7C;
  --border: #D7E8F2;
  --border-accent: #06B6F2;
  --header-dark: #ffffff;
  --silver: #64748B;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(2, 132, 199, 0.10);
  --shadow-glow: 0 10px 28px rgba(6, 182, 242, 0.28);
  --gradient-brand: linear-gradient(135deg, #0284C7 0%, #06B6F2 48%, #67E8F9 100%);
  --gradient-topbar: linear-gradient(90deg, #0B1B2B 0%, #0284C7 45%, #06B6F2 100%);
  --gradient-hero-bg: linear-gradient(160deg, #F0FBFF 0%, #E6F6FC 45%, #DFF3FA 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(6, 182, 242, 0.16), transparent 45%),
    radial-gradient(ellipse at 92% 6%, rgba(2, 132, 199, 0.12), transparent 42%),
    radial-gradient(ellipse at 50% 100%, rgba(125, 211, 252, 0.10), transparent 48%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--logo-cyan); }

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

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ===== SITE HEADER ===== */
.site-header {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

/* ===== TOP BRAND BAR ===== */
.panel.header {
  background: var(--gradient-topbar);
  color: #ffffff;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(6, 182, 242, 0.18);
  width: 100%;
}

.panel-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  box-sizing: border-box;
}

.panel-left ul, .panel-right ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.panel-left a, .panel-right a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  transition: opacity 0.2s;
}

.panel-left a:hover, .panel-right a:hover { color: #fff; opacity: 0.88; }

.panel-icon { width: 18px; height: 18px; border-radius: 6px; object-fit: cover; box-shadow: 0 0 8px rgba(6, 182, 242, 0.45); }

.lang-badge {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 11px;
  color: #fff;
}

/* ===== MAIN HEADER ===== */
.header-content {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 182, 242, 0.16);
  box-shadow: 0 6px 20px rgba(10, 24, 96, 0.06);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

.header-content .container {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img,
.logo-img {
  height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .logo img,
  .logo-img {
    height: 36px;
    max-width: 150px;
  }
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.main-navigation { flex: 1; }

.main-navigation > ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 4px;
}

.main-navigation > ul > li { position: relative; }

.main-navigation > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #3a4568;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: 0.2s;
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li > a.active {
  color: #fff;
  background: var(--gradient-brand);
}

.main-navigation .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(6, 182, 242, 0.2);
  box-shadow: var(--shadow);
  z-index: 100;
  padding: 8px 0;
  border-radius: var(--radius);
}

.main-navigation li:hover .submenu { display: block; }

.main-navigation .submenu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #4a5578;
}

.main-navigation .submenu a:hover {
  background: #E0F6FF;
  color: var(--primary);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-box {
  display: flex;
  border: 1.5px solid rgba(6, 182, 242, 0.35);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.search-box input {
  border: none;
  padding: 8px 14px;
  font-size: 13px;
  width: 160px;
  outline: none;
  background: transparent;
  color: var(--text);
}

.search-box button {
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.header-icons {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}

/* ===== PRODUCT LAYOUT ===== */
.page-main {
  flex: 1;
  padding: 28px 0 48px;
  position: relative;
}

.page-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(6, 182, 242, 0.08), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(0, 212, 255, 0.1), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.page-main > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.product-media {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.main-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #E0F6FF 0%, #e8f8ff 55%, #00A1D6 160%);
  box-shadow: inset 0 0 40px rgba(6, 182, 242, 0.08);
}

.main-image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}

.thumbnails .thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
  padding: 0;
  background: none;
}

.thumbnails .thumb.active {
  border-color: #00A1D6;
  box-shadow: 0 0 0 2px rgba(6, 182, 242, 0.35), 0 0 16px rgba(0, 212, 255, 0.25);
}

.thumbnails .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-main {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 16px;
}

.product-info-price .price-label {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.product-info-price .price {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kc-cashback {
  margin: 16px 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(6, 182, 242, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid rgba(6, 182, 242, 0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.kc-cashback img { width: 30px; height: 30px; border-radius: 8px; }

.kc-cashback .price { color: var(--deep); font-weight: 800; }

.available-block {
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.available-block .title { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.available-block .lables {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.available-block .lables span {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-overview {
  margin: 20px 0;
  font-size: 14px;
  color: var(--muted);
  text-align: justify;
}

.product-overview p { margin-bottom: 12px; }

.product-overview strong { color: var(--text); }

.product-actions { margin-top: 20px; }

.field-qty {
  margin-bottom: 16px;
}

.field-qty label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field-qty select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  min-width: 80px;
  background: var(--bg-soft);
  color: var(--text);
}

.actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 120px;
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(6, 182, 242, 0.38);
  color: #fff;
}

.btn-daftar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 120px;
  background: #ffffff;
  color: #0090b8;
  border: 2px solid #00d4ff;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.2s;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.12);
  -webkit-tap-highlight-color: transparent;
}

.btn-daftar:hover {
  background: rgba(0, 212, 255, 0.12);
  color: #007a9c;
  border-color: #00d4ff;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.22);
}

.share-buttons {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ===== REVIEWS & FAQ BOX ===== */
.content-box {
  width: 100%;
  max-width: 100%;
  margin: 32px 0 0;
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  box-sizing: border-box;
  overflow: hidden;
}

.content-box-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text);
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, #00A1D6, #00d4ff) 1;
  padding-left: 12px;
}

.seo-keyword-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.seo-keyword-col h3 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
}

.seo-keyword-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-keyword-col li {
  margin-bottom: 8px;
  font-size: 13px;
}

.seo-keyword-col a {
  color: var(--text);
  text-decoration: none;
}

.seo-keyword-col a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.review-wrap {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}

.review-card {
  min-width: 220px;
  max-width: 260px;
  background: var(--bg-soft);
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.review-name {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 14px;
}

.review-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.faq-section { margin-top: 20px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  font-family: inherit;
  padding: 14px 16px;
  min-height: 48px;
  cursor: pointer;
  font-weight: 700;
  background: var(--bg-soft);
  transition: 0.3s;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  margin-bottom: 2px;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover,
.faq-item.active .faq-question {
  background: var(--gradient-brand);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer { display: block; }

/* Blog preview compact */
.blog-section {
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  box-sizing: border-box;
}

.blog-section .content-box {
  margin-top: 0;
}

.blog-section .content-box-title { margin-bottom: 16px; }

.blog-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.blog-card-compact {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-card-compact:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
}

.blog-card-compact h3 {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.blog-card-compact h3 a { color: var(--text); }

.blog-card-compact h3 a:hover { color: var(--blue); }

.blog-card-compact p {
  font-size: 12px;
  color: var(--muted);
}

.blog-card-with-cover {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.blog-card-with-cover .blog-card-cover-link {
  display: block;
}

.blog-card-cover-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.blog-card-with-cover h2,
.blog-card-with-cover h3,
.blog-card-with-cover p,
.blog-card-with-cover > a:last-child {
  padding-left: 16px;
  padding-right: 16px;
}

.blog-card-with-cover h3,
.blog-card-with-cover p {
  padding-top: 0;
}

.blog-card-with-cover h3 {
  margin: 12px 0 6px;
}

.blog-card-with-cover > a:last-child {
  padding-bottom: 16px;
  display: inline-block;
}

/* ===== FOOTER ===== */
.page-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 40px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.footer-columns ul { list-style: none; }

.footer-columns li { margin-bottom: 8px; }

.footer-columns a {
  font-size: 13px;
  color: var(--muted);
}

.footer-columns a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--deep);
  transition: 0.2s;
}

.footer-social a:hover {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

.store-badges img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}

.footer-copyright {
  background: var(--gradient-topbar);
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 12px;
}

/* Floating Unduh APK */
.claim-bonus {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.claim-bonus a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-brand);
  color: #fff;
  padding: 10px 20px 10px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0, 212, 255, 0.45);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.claim-bonus a:hover {
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(6, 182, 242, 0.45), 0 0 24px rgba(0, 212, 255, 0.25);
}

.claim-bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #E0F6FF;
  flex-shrink: 0;
  overflow: hidden;
}

.claim-bonus-icon img,
.claim-bonus img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

/* Mobile sticky LOGIN + UNDUH */
.mobile-sticky-cta {
  display: none;
}

html.has-site-cta body {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  html.has-site-cta .page-main,
  html.has-site-cta .page-wrapper > main,
  html.has-site-cta main.page-main {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  html.has-site-cta .page-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  background: var(--deep);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  font-size: 18px;
  border: none;
  box-shadow: var(--shadow-glow);
  transition: 0.2s;
}

.back-to-top:hover { background: var(--blue); color: #fff; }

.back-to-top.show { display: flex; }

/* ===== ADMIN (keep for blog backend) ===== */
.admin-layout { display: flex; min-height: 100vh; background: #0f0a1a; color: #f5f0ff; }
.admin-sidebar { width: 240px; background: #1a1228; border-right: 1px solid rgba(255,77,141,0.1); padding: 24px 16px; flex-shrink: 0; }
.admin-main { flex: 1; padding: 32px; }
.admin-card { background: #1a1228; border-radius: 16px; padding: 28px; border: 1px solid rgba(255,77,141,0.1); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.88rem; color: #c7c7d9; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; background: #0f0a1a; border: 1px solid rgba(255,77,141,0.15); border-radius: 10px; color: #f5f0ff; font-size: 0.95rem; font-family: inherit; }
.form-group textarea { min-height: 200px; resize: vertical; }
.form-actions { display: flex; gap: 12px; margin-top: 20px; }
.btn-danger { background: #dc2626; color: #fff; border: none; padding: 10px 28px; border-radius: 50px; cursor: pointer; }
.posts-table { width: 100%; border-collapse: collapse; }
.posts-table th, .posts-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid rgba(255,77,141,0.08); font-size: 0.9rem; }
.login-box { max-width: 400px; margin: 80px auto; }
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 0.9rem; }
.alert-error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.status-badge { display: inline-block; padding: 2px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.status-published { background: rgba(34,197,94,0.15); color: #86efac; }
.status-draft { background: rgba(234,179,8,0.15); color: #fde047; }
.empty-state { text-align: center; padding: 24px; color: var(--muted); }

/* Blog pages */
.site-header-dark { background: rgba(255,255,255,0.96); border-bottom: 1px solid rgba(6, 182, 242,0.16); padding: 14px 0; }
.site-header-dark .container { display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; gap: 10px; color: var(--text); }
.logo-text { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.main-nav-blog { display: flex; gap: 8px; list-style: none; }
.main-nav-blog a { color: #3a4568; padding: 8px 14px; font-size: 14px; }
.main-nav-blog a:hover, .main-nav-blog a.active { color: var(--primary); }
.post-content { max-width: 760px; margin: 0 auto; padding: 32px 16px 60px; }
.post-content h1 { font-size: 1.8rem; margin-bottom: 12px; }
.post-hero-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 24px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.post-meta { color: var(--muted); font-size: 13px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.post-body { font-size: 15px; line-height: 1.8; color: var(--muted); }
.post-body h2 { margin: 24px 0 10px; color: var(--primary); font-size: 1.2rem; }
.page-header-section { padding: 32px 0 16px; text-align: center; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

/* Legal & trust pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-page h1 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--deep);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-body h2 {
  font-size: 1.1rem;
  color: var(--deep);
  margin: 24px 0 10px;
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-card h2 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.contact-card p {
  font-size: 13px;
  margin-bottom: 14px;
}

.contact-card .btn-login,
.contact-card .btn-daftar {
  width: 100%;
  font-size: 13px;
  padding: 12px 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .product-layout { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

/* Skip link & accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--deep);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--accent);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.submenu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    min-height: 44px;
    min-width: 44px;
    padding: 10px 14px;
  }

  .site-header,
  .panel.header,
  .header-content {
    width: 100%;
    max-width: 100vw;
  }

  .panel-inner {
    width: 100%;
    max-width: none;
    padding: 8px 12px;
    justify-content: space-between;
  }

  .panel-left,
  .panel-right {
    flex: 1;
  }

  .panel-left ul,
  .panel-right ul {
    width: 100%;
    justify-content: space-between;
  }

  .header-content .container {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    flex-wrap: wrap;
    position: relative;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    z-index: 200;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-navigation.open { display: block; }

  .main-navigation > ul { flex-direction: column; gap: 4px; }

  .main-navigation > ul > li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .main-navigation > ul > li > a {
    flex: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
  }

  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--deep);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
  }

  .main-navigation .submenu {
    display: none;
    width: 100%;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    margin-top: 4px;
  }

  .main-navigation li.sub-open .submenu { display: block; }

  .header-search { display: none; }

  .page-main > .container {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
  }

  .content-box,
  .blog-section,
  .product-media,
  .product-info-main {
    width: 100%;
    max-width: 100%;
  }

  .footer-columns { grid-template-columns: 1fr; }

  .panel-right .lang-badge { display: none; }

  .actions-row {
    flex-direction: column;
  }

  .actions-row .btn-login,
  .actions-row .btn-daftar {
    width: 100%;
  }

  .page-main {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .page-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .claim-bonus {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 12px;
  }

  .claim-bonus a {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 12px;
  }

  .back-to-top {
    bottom: calc(130px + env(safe-area-inset-bottom, 0px));
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(6, 182, 242, 0.18);
    box-shadow: 0 -8px 24px rgba(10, 24, 96, 0.08);
    backdrop-filter: blur(10px);
  }

  .mobile-sticky-cta .btn-login,
  .mobile-sticky-cta .btn-daftar {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    min-height: 48px;
    border-radius: 999px;
  }

  .mobile-sticky-cta .btn-login {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-glow);
  }

  .mobile-sticky-cta .btn-daftar {
    background: #ffffff;
    color: #0090b8;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.12);
  }

  .mobile-sticky-cta .btn-daftar:hover {
    background: rgba(0, 212, 255, 0.12);
    color: #007a9c;
    border-color: #00d4ff;
  }

  .review-wrap {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .review-card {
    scroll-snap-align: start;
    min-width: 260px;
  }

  .thumbnails {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .thumbnails .thumb {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .main-image-wrapper {
    max-height: 70vw;
    overflow: hidden;
  }

  .content-box-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }

  .page-title { font-size: 1.35rem; }

  .panel-left ul li:nth-child(n+2),
  .panel-right ul li:nth-child(n+3) {
    display: none;
  }

  .claim-bonus a {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.note-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 20px;
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 8px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); }
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
}

