:root {
  --neon: #8E6CEF;
  --neon2: #6d4dff;
  --neon3: #a78bfa;
  --neon-glow: rgba(142, 108, 239, .62);
  --neon-glow-soft: rgba(142, 108, 239, .24);
  --txt: #eef2ff;
  --muted: rgba(210, 198, 255, .82);
  --line: rgba(142, 108, 239, .42);
  --card: rgba(12, 8, 28, .97);
  --card-elevated: rgba(18, 12, 38, .98);
  --surface-soft: rgba(16, 10, 36, .94);
  --footer-bg: linear-gradient(180deg, #3d3578, #1e1a3a);
  --ok: #22c55e;
  --font: "Orbitron", "Rajdhani", system-ui, sans-serif;
  --body: "Rajdhani", "Segoe UI", sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --transition: .28s cubic-bezier(.22, 1, .36, 1);
}

@keyframes neonBreathe {
  0%, 100% {
    box-shadow:
      0 0 10px var(--neon-glow-soft),
      0 0 22px rgba(109, 77, 255, .08),
      inset 0 0 12px rgba(109, 77, 255, .04);
  }
  50% {
    box-shadow:
      0 0 22px var(--neon-glow),
      0 0 44px rgba(109, 77, 255, .18),
      inset 0 0 18px rgba(109, 77, 255, .1);
  }
}

@keyframes neonBreatheStrong {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(109, 77, 255, .32),
      0 0 28px rgba(109, 77, 255, .12);
  }
  50% {
    box-shadow:
      0 0 28px rgba(109, 77, 255, .68),
      0 0 52px rgba(109, 77, 255, .24);
  }
}

@keyframes textGlowBreathe {
  0%, 100% { text-shadow: 0 0 6px rgba(109, 77, 255, .28); }
  50% { text-shadow: 0 0 16px rgba(109, 77, 255, .72), 0 0 30px rgba(109, 77, 255, .22); }
}

@keyframes coreBreathe {
  0%, 100% {
    transform: translateY(-8px) scale(1.12);
    box-shadow:
      0 0 16px rgba(142, 124, 255, .42),
      inset 0 0 12px rgba(255, 255, 255, .12);
  }
  50% {
    transform: translateY(-10px) scale(1.15);
    box-shadow:
      0 0 30px rgba(142, 124, 255, .78),
      0 0 54px rgba(109, 77, 255, .28),
      inset 0 0 20px rgba(255, 255, 255, .18);
  }
}

@keyframes navGlowBreathe {
  0%, 100% { box-shadow: 0 -6px 28px rgba(109, 77, 255, .22), inset 0 0 16px rgba(255, 255, 255, .06); }
  50% { box-shadow: 0 -10px 42px rgba(109, 77, 255, .42), inset 0 0 24px rgba(255, 255, 255, .12); }
}

@keyframes hoverPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(142, 108, 239, .35); }
  50% { box-shadow: 0 0 28px rgba(142, 108, 239, .62); }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 15px;
  background:
    radial-gradient(ellipse 120% 40% at 50% 0%, rgba(255, 255, 255, .95), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f0f0f4 14%, #8e8e9a 38%, #3a3a44 62%, #121218 82%, #000000 100%);
  background-attachment: fixed;
  color: var(--txt);
  line-height: 1.58;
  padding-bottom: 96px;
}
a { color: var(--neon3); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
.wrap {
  width: min(1080px, calc(100% - 24px));
  margin: 0 auto;
}

/* Hover response — containers & CTA */
.dark-surface,
.gallery-card,
.detail-card,
.panel,
.faq-box,
.seen-product-card,
.reason,
.faq-item,
.app-card,
.togel-machine-v3,
.h1-box,
.btn,
.btn-glow,
.auth-btn,
.category-btn,
.tool-link,
.seen-product-card .product-image,
.thumbs img,
.fixed-nav a {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    filter var(--transition);
}
@media (hover: hover) {
  .gallery-card:hover,
  .detail-card:hover,
  .panel:hover,
  .faq-box:hover,
  .seen-product-card:hover,
  .reason:hover,
  .faq-item:hover,
  .app-card:hover,
  .togel-machine-v3:hover {
    transform: translateY(-4px);
    border-color: rgba(142, 108, 239, .72);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, .45),
      0 0 28px rgba(142, 108, 239, .28);
    cursor: pointer;
  }
  .btn:hover,
  .btn-glow:hover,
  .auth-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, .35);
    box-shadow:
      0 12px 28px rgba(109, 77, 255, .45),
      0 0 24px rgba(142, 108, 239, .5);
    animation: hoverPulse 1.8s ease-in-out infinite;
  }
  .category-btn:hover,
  .tool-link:hover,
  .thumbs img:hover {
    transform: translateY(-2px);
    border-color: var(--neon);
    box-shadow: 0 0 16px rgba(142, 108, 239, .35);
  }
  .fixed-nav a:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(142, 108, 239, .65));
  }
  .fixed-nav .core:hover {
    animation: coreBreathe 2.4s ease-in-out infinite;
  }
}

/* Header */
.site-header {
  background: rgba(12, 8, 28, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
  animation: neonBreathe 4.2s ease-in-out infinite;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.site-header-main { position: relative; }
.header-inner,
.site-header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}
.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: var(--txt);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}
.logo { flex: 0 0 auto; }
.logo img { width: 140px; height: 36px; }

.site-desktop-nav { flex: 1; min-width: 0; }
.site-desktop-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.section-product {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: #e9d5ff;
  font-family: var(--body);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
}
.category-btn .cat-icon { font-size: .95rem; }
.search-box {
  flex: 1;
  display: flex;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  overflow: hidden;
  min-width: 140px;
}
.search-box input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #1a1a2e;
  padding: 10px 14px;
  font: inherit;
  outline: none;
}
.search-box input::placeholder { color: #64748b; }
.search-box button {
  border: 0;
  background: transparent;
  color: var(--neon2);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
}

.section-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.header-tools {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tool-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: #e9d5ff;
}
.tool-ico { font-size: .95rem; line-height: 1; }
.counter {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff !important;
  font-size: .65rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(12, 8, 28, .95);
}
.gateway-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e9d5ff;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
}
.gateway-link .user-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(142, 108, 239, .22);
  border: 1px solid var(--line);
  font-size: .85rem;
}
.mobile-account,
.mobile-cart,
.mobile-search { display: none; }
.mobile-account-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e9d5ff;
  font-weight: 700;
  font-size: .82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  font-size: .78rem;
}
.btn-login,
.auth-btn.login {
  background: linear-gradient(145deg, #ff0000, #ff0000);
  border-color: #ff0000;
  color: #fff;
  box-shadow: 0 8px 20px rgba(109, 77, 255, .28);
  animation: neonBreatheStrong 3.6s ease-in-out infinite;
}
.btn-daftar,
.auth-btn.register {
  background: linear-gradient(145deg, #ff0000, #ff0000);
  border-color: #ff0000;
  color: #fff;
  box-shadow: 0 8px 20px rgba(109, 77, 255, .28);
  animation: neonBreatheStrong 3.6s ease-in-out infinite;
}
.btn-glow {
  background: linear-gradient(145deg, #ff0000, #ff0000);
  color: #fff;
  box-shadow: 0 0 18px rgba(109, 77, 255, .45);
  border: 0;
  width: 100%;
  padding: 14px 18px;
  font-size: .9rem;
  animation: neonBreatheStrong 3.2s ease-in-out infinite;
}
.auth-row,
.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 0 16px;
}
.auth-btn {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
  border-radius: 18px;
  text-align: center;
  font-size: .9rem;
  letter-spacing: 1px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(109, 77, 255, .35), inset 0 0 18px rgba(255, 255, 255, .12);
}
.announce,
.site-header-announcement {
  background: linear-gradient(90deg, #ff0000, #ff0000);
  text-align: center;
  padding: 8px 12px;
  font-size: .85rem;
  font-weight: 700;
}
.site-header-announcement .text {
  margin: 0;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.site-header-announcement a {
  color: #fff;
  text-decoration: underline;
}

/* Product hero */
.product-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: var(--space-md);
  margin: var(--space-lg) auto;
  align-items: start;
}
.gallery-card, .detail-card, .panel, .faq-box, .seen-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  animation: neonBreathe 4s ease-in-out infinite;
}
.gallery-card { padding: var(--space-md); overflow: hidden; }
.gallery-main,
.hero-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.hero-banner a {
  display: block;
  position: relative;
  color: inherit;
}
.hero-banner img {
  width: 100%;
  aspect-ratio: 16 / 16;
  object-fit: cover;
}
.banner-google-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 11px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .82));
  color: #fff;
  font-family: var(--body);
  font-size: clamp(.74rem, 1.8vw, .9rem);
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  text-transform: lowercase;
  text-shadow: 0 0 12px rgba(142, 108, 239, .65);
  pointer-events: none;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}
.thumbs img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  opacity: .9;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.detail-card { padding: var(--space-lg); }

/* single-ket (Ref2 product panel) */
.single-ket {
  position: relative;
  overflow: hidden;
}
.single-ket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(142, 108, 239, .06) 0,
    rgba(142, 108, 239, .06) 1px,
    transparent 2px,
    transparent 6px
  );
  opacity: .22;
  pointer-events: none;
}
.single-ket-card { position: relative; z-index: 1; }
.head-single {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.button-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: #e9d5ff;
  font-size: .82rem;
  font-weight: 700;
}
.wishlist-btn .love {
  color: #f472b6;
  font-size: 1rem;
}
.share-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
.share-items a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(64,32,253,.25);
  color: #fff;
}
.share-fb { background: #1877f2 !important; border-color: #1877f2 !important; }
.share-wa { background: #25d366 !important; border-color: #25d366 !important; }
.marketplace-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.marketplace-features .item-icon {
  width: 22px;
  text-align: center;
  flex: 0 0 22px;
}
.marketplace-features .item-value a {
  color: var(--neon3);
  text-decoration: underline;
}
.ket-price .waranty {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}
.ket-price .hreff {
  color: var(--neon3);
  text-decoration: underline;
  margin-left: 4px;
}
.stock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 10px;
}
.stock .btn {
  width: 100%;
  padding: 14px 12px;
  border-radius: 16px;
}
.note-text .tags {
  margin-top: 12px;
  align-items: center;
}
.tags-label {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 700;
  margin-right: 4px;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.store-available { margin-top: 4px; }

/* Product tabs (DESKRIPSI / SPESIFIKASI / CEK ONGKIR / CICILAN) */
.single-right-tabs {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.tabs-right {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid rgba(142,108,239,.25);
}
.tabs-right li { margin: 0; }
.tabs-right .tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(210, 198, 255, .55);
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tabs-right .tab-btn.active,
.tabs-right .tab-btn[aria-selected="true"] {
  color: var(--neon2);
  border-bottom-color: var(--neon);
}
.tabs-content .tab-panel { display: none; }
.tabs-content .tab-panel.active { display: block; }
.tabs-content h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}
.tabs-content p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .9rem;
  text-align: justify;
  line-height: 1.7;
}
.tabs-content a { color: #ff0000; }
.spek-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: .9rem;
}
.spek-list li { margin-bottom: 8px; }
.spek-list strong { color: var(--neon2); }
.app-card {
  max-width: 100%;
  margin: 18px auto 8px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.3px solid var(--line);
  background: var(--surface-soft);
  animation: neonBreathe 4.2s ease-in-out infinite;
}
.app-header {
  padding: 14px 16px;
  text-align: center;
  color: #fff;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  background: linear-gradient(135deg, #ff0000, #ff0000, #ff0000);
  border-bottom: 1.6px solid rgba(142, 108, 239, .45);
  animation: textGlowBreathe 4s ease-in-out infinite;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
}
.app-table th,
.app-table td {
  padding: 12px 14px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(36,0,247,.2);
  font-size: .88rem;
}
.app-table th {
  width: 40%;
  color: #ff0000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .04em;
}
.app-table td {
  color: var(--txt);
  font-weight: 600;
}
.app-table small { color: var(--muted); font-weight: 500; }
.ongkir-form {
  display: grid;
  gap: 12px;
}
.ongkir-form label {
  display: grid;
  gap: 6px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--neon3);
  font-weight: 700;
}
.ongkir-form select {
  background: rgba(0, 16, 32, .92);
  color: var(--txt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.ongkir-result {
  margin: 4px 0 0 !important;
  text-align: left !important;
}
.cicilan-table { margin-bottom: 12px; }
.cicilan-note { font-size: .82rem !important; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.crumbs span { opacity: .5; }
.h1-box {
  position: relative;
  margin: 0;
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #ff0000, #ff0000);
  border: 1px solid rgba(142, 108, 239, .55);
  overflow: hidden;
  animation: neonBreatheStrong 3.8s ease-in-out infinite;
}
.h1-box h1 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  animation: textGlowBreathe 3.8s ease-in-out infinite;
}
.feature-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.feature-list li {
  padding: 7px 0;
  border-bottom: 1px dashed rgba(142,108,239,.2);
  font-size: .92rem;
  color: var(--muted);
}
.feature-list li strong { color: #fff; }
.price-block { margin: 12px 0 16px; }
.price-old {
  margin: 0;
  color: rgba(210, 198, 255, .55);
  font-size: .95rem;
}
.price-old del { text-decoration: line-through; }
.price-now {
  margin: 4px 0 0;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
}
.price-now small {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.stock-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .85rem;
  color: var(--neon3);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(142, 108, 239, .2);
  border: 1px solid var(--line);
  color: #e9d5ff;
  font-size: .75rem;
  font-weight: 700;
}

/* Article */
.article-panel {
  margin: 24px auto;
  padding: 24px 18px;
}
.article-panel h2 {
  margin: 0 0 8px;
  text-align: center;
  font-family: var(--font);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ff0000;
  animation: textGlowBreathe 4s ease-in-out infinite;
}
.article-lead {
  text-align: center;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: .95rem;
}
.article-body {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.article-body p {
  margin: 0 0 12px;
  color: var(--muted);
  text-align: justify;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.reason {
  background: var(--card-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  animation: neonBreathe 4.4s ease-in-out infinite;
}
.reason h3 {
  margin: 0 0 6px;
  font-family: var(--font);
  font-size: .85rem;
  color: #ff0000;
}
.reason p {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  text-align: left;
}
.cta-center { text-align: center; margin-top: 16px; }
.cta-center .btn-glow { max-width: 360px; display: inline-flex; }

/* FAQ */
.faq-box { margin: 24px auto; overflow: hidden; }
.faq-head {
  text-align: center;
  padding: 28px 18px 16px;
  background: radial-gradient(circle at 50% 0%, rgba(124, 92, 255, .18), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.faq-head h2 {
  margin: 0 0 6px;
  font-family: var(--font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ff0000;
  animation: textGlowBreathe 4s ease-in-out infinite;
}
.faq-head p { margin: 0; color: var(--muted); font-size: .9rem; }
.faq-list { padding: 16px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--card-elevated);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  color: #e9d5ff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "▾"; color: var(--neon3); }
.faq-item[open] summary::after { content: "▴"; }
.faq-item .answer {
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: .9rem;
}

/* Seen products + footer (Ref2 marketplace) */
.page-best,
.seen-wrap {
  margin: 28px auto 10px;
  padding: 8px 0 20px;
}
.page-best-title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
}
.seen-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.seen-product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: neonBreathe 4.2s ease-in-out infinite;
}
.product-image {
  position: relative;
  background: rgba(8, 4, 22, .9);
}
.product-image .image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.misc {
  position: absolute;
  inset: 8px 8px auto 8px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}
.misc .badge {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.2);
  color: #f9a8d4;
}
.discount {
  pointer-events: none;
  background: linear-gradient(145deg, #f97316, #ea580c);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  padding: 6px 8px;
  border-radius: 4px 10px 4px 10px;
  box-shadow: 0 4px 12px rgba(249,115,22,.45);
}
.benefits {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.benefit {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
}
.benefit-shipping { background: #dc2626; }
.benefit-service { background: #64748b; }
.product-meta {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-meta .title {
  margin: 0 0 10px;
  font-size: .82rem;
  line-height: 1.35;
  font-weight: 700;
}
.product-meta .title a { color: var(--txt); }
.product-meta .price-guest {
  margin: 0;
  color: rgba(210, 198, 255, .55);
  font-size: .8rem;
}
.product-meta .price-member {
  margin: 2px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}
.product-meta .installment {
  margin-top: 6px;
  color: var(--muted);
  font-size: .75rem;
}
.product-meta .installment .value {
  color: var(--neon3);
  font-weight: 700;
}

.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 0 0 20px;
  margin-top: 10px;
}
.site-footer-main { padding: 32px 0 18px; }
.footer-nav {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .6fr;
  gap: 24px;
  margin-bottom: 28px;
}
.footer-nav-section .heading,
.footer-partner-section .heading {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.footer-nav-section .items,
.footer-partner-section .items,
.social-link-items,
.pay-logos {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-section .item { margin-bottom: 8px; }
.footer-nav-section .link {
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
}
.footer-nav-section .link:hover { color: #fff; }
.social-link-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link-item .link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}
.footer-partner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pay-logos .item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 40px;
  padding: 4px 8px;
  border-radius: 6px;
  background: transparent;
}
.pay-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.pay-logo-link:hover .pay-logo {
  opacity: .85;
}
.pay-logo {
  display: block;
  width: auto;
  max-width: 88px;
  height: 28px;
  object-fit: contain;
}
.copy {
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  margin: 16px 0 0;
  padding: 0 14px;
}

/* Fixed footer nav */
.fixed-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 4px;
  padding: 12px 8px 14px;
  background: linear-gradient(160deg, rgba(18, 12, 38, .98), rgba(8, 4, 20, .98));
  border-top: 2px solid rgba(255, 255, 255, .22);
  border-radius: 18px 18px 0 0;
  animation: navGlowBreathe 4s ease-in-out infinite;
}
.fixed-nav a {
  flex: 1;
  max-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #f4f2ff;
  font-family: var(--font);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fixed-nav img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .45));
  animation: textGlowBreathe 4s ease-in-out infinite;
}
.fixed-nav .core {
  max-width: 108px;
  padding: 10px 8px;
  border-radius: 999px;
  background: #ff0000;
  border: 2px solid #ff0000;
  transform: translateY(-8px) scale(1.12);
  animation: coreBreathe 3.6s ease-in-out infinite;
}
.fixed-nav .core img { width: 30px; height: 30px; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .seen-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-partner { grid-template-columns: 1fr; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-desktop-nav { display: none; }
  .mobile-account,
  .mobile-cart { display: flex; align-items: center; }
  .mobile-search { display: block; padding-bottom: 12px; }
  .mobile-cart { margin-left: auto; }
  .header-inner { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .reason-grid, .cta-pair, .auth-row, .stock { grid-template-columns: 1fr; }
  .seen-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .fixed-nav a { font-size: .55rem; }
  .button-text { flex-direction: column; align-items: flex-start; }
  .category-btn .label { display: none; }
  .gateway-link .label { font-size: .75rem; }
  .tabs-right .tab-btn { font-size: .62rem; padding: 10px 8px; }
  .app-table th, .app-table td { padding: 10px 8px; font-size: .8rem; }
}

/* Togel simulator (Ref2) */
.togel-container-v3 {
  display: flex;
  justify-content: center;
  padding: 14px 0 4px;
  font-family: var(--font);
}
.togel-machine-v3 {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 0%, rgba(64, 32, 253, .35), transparent 48%),
    radial-gradient(circle at 85% 100%, rgba(64, 32, 253, .28), transparent 55%),
    linear-gradient(145deg, #0c012d, #080021);
  border: 1px solid rgba(142, 108, 239, .55);
  color: var(--txt);
  animation: neonBreatheStrong 4s ease-in-out infinite;
}
.togel-machine-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 238, 0, .08), transparent 65%);
  animation: hudSweep 7s linear infinite;
  pointer-events: none;
  opacity: .8;
}
.togel-title-v3 {
  text-align: center;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  animation: textGlowBreathe 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.togel-controls-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(142, 108, 239, .45);
  position: relative;
  z-index: 1;
}
.togel-controls-v3 label {
  display: grid;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--neon3);
}
.togel-controls-v3 select,
.togel-controls-v3 input {
  background: rgba(0, 16, 32, .92);
  color: var(--txt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 9px;
  font-weight: 700;
  font-size: 12px;
  outline: none;
  font-family: inherit;
}
#btnTogelRandom {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #ff0000, #ff0000);
  border: none;
  color: #fff;
  font-weight: 900;
  letter-spacing: .8px;
  border-radius: 14px;
  cursor: pointer;
  padding: 10px 12px;
  font-size: 12px;
  font-family: inherit;
  animation: neonBreatheStrong 3.4s ease-in-out infinite;
  transition: .2s ease;
}
#btnTogelRandom:active { transform: scale(.98); }
#btnTogelRandom:disabled { opacity: .75; cursor: not-allowed; }
.togel-main-result-v3 {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(16, 8, 40, .88);
  border: 1px solid rgba(142, 108, 239, .4);
  position: relative;
  z-index: 1;
}
.togel-status-v3 {
  text-align: center;
  font-weight: 800;
  letter-spacing: .8px;
  color: var(--neon2);
  margin-bottom: 10px;
  font-size: 11px;
}
.togel-highlight-box {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(142, 108, 239, .3);
}
.k, .k-rtp {
  font-size: 10px;
  color: var(--neon2);
  text-transform: uppercase;
}
.v-game {
  font-size: 14px;
  font-weight: 900;
  color: var(--txt);
  margin-top: 6px;
  line-height: 1.2;
}
.provider-info {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}
.k-small { color: var(--neon3); font-size: 10px; }
.v-small { color: var(--txt); font-weight: 900; }
.v-rtp-huge {
  font-size: 2.4em;
  font-weight: 900;
  color: var(--neon2);
  animation: textGlowBreathe 3.6s ease-in-out infinite;
  line-height: 1;
  letter-spacing: 1px;
}
.togel-details-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, .28);
  padding: 10px;
  border-radius: 12px;
}
.k-detail {
  font-size: 9px;
  color: var(--neon2);
  text-transform: uppercase;
}
.v-detail {
  font-size: 12px;
  font-weight: 800;
  color: var(--txt);
  margin-top: 4px;
  letter-spacing: .8px;
}
.togel-tip-v3 {
  margin-top: 10px;
  font-size: 10px;
  color: var(--muted);
  opacity: .9;
  text-align: center;
}
.togel-alts-v3 {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(142, 108, 239, .4);
  position: relative;
  z-index: 1;
}
.togel-alts-title-v3 {
  font-weight: 900;
  color: var(--neon2);
  margin-bottom: 10px;
  font-size: 12px;
}
.togel-alt-list-v3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.togel-alt-item {
  background: rgba(12, 8, 28, .92);
  border-radius: 12px;
  padding: 10px;
  border-left: 3px solid var(--neon);
}
.togel-alt-item .g {
  font-weight: 900;
  color: var(--txt);
  font-size: 12px;
}
.togel-alt-item .p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.togel-alt-item .r {
  margin-top: 6px;
  font-weight: 900;
  color: var(--neon2);
  letter-spacing: .8px;
  font-size: 12px;
}
.togel-note-v3 {
  margin-top: 10px;
  font-size: 10px;
  color: var(--muted);
  opacity: .85;
  text-align: center;
  position: relative;
  z-index: 1;
}
.togel-cta-logo {
  display: block;
  margin: 12px auto 0;
  width: fit-content;
  position: relative;
  z-index: 1;
}
@keyframes hudSweep {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}
@keyframes togelPulse {
  0%, 100% {
    opacity: .72;
    text-shadow: 0 0 6px rgba(109, 77, 255, .22);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 16px rgba(109, 77, 255, .62);
  }
}
@media (max-width: 420px) {
  .togel-highlight-box { flex-direction: column; }
  .togel-details-v3 { grid-template-columns: 1fr; }
}

