/* FANTA55 â€” readable system UI */
:root {
  --o: #ff4a1a;
  --a: #ff6e3c;
  --g: #ff8f66;
  --d: #c41e12;
  --ink: #ffffff;
  --text: #f3f3f3;
  --muted: #d6d0c8;
  --bg: #07060a;
  --s1: rgba(22, 18, 16, 0.72);
  --s2: rgba(36, 28, 22, 0.78);
  --line: rgba(255, 74, 26, 0.32);
  --r: 12px;
  --max: 1200px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: #07060a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
}

/* ===== Space room / galaxy background ===== */
.space-room {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #04030a;
  --gx: 0px;
  --gy: 0px;
  --gburst: 0;
}
.space-room__void {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(70, 30, 90, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 25%, rgba(40, 70, 140, 0.32), transparent 50%),
    radial-gradient(ellipse 65% 50% at 10% 70%, rgba(255, 74, 26, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(20, 40, 90, 0.35), transparent 60%),
    linear-gradient(180deg, #070512 0%, #05040c 40%, #0a070c 100%);
  will-change: transform;
}
.space-room__milky {
  position: absolute;
  inset: -20% -30%;
  background:
    linear-gradient(
      118deg,
      transparent 28%,
      rgba(180, 160, 255, 0.06) 42%,
      rgba(255, 120, 80, 0.1) 50%,
      rgba(140, 180, 255, 0.07) 58%,
      transparent 72%
    );
  filter: blur(18px);
  opacity: 0.85;
  mix-blend-mode: screen;
  will-change: transform;
}
.space-room__nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform, opacity, filter;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.space-room__nebula--a {
  width: min(72vw, 640px);
  height: min(72vw, 640px);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 74, 26, 0.42) 0%, rgba(196, 30, 18, 0.16) 42%, transparent 70%);
  animation: space-drift-a 28s ease-in-out infinite alternate;
}
.space-room__nebula--b {
  width: min(80vw, 720px);
  height: min(80vw, 720px);
  right: -18%;
  top: 18%;
  background: radial-gradient(circle, rgba(120, 92, 255, 0.28) 0%, rgba(56, 90, 180, 0.16) 40%, transparent 68%);
  animation: space-drift-b 34s ease-in-out infinite alternate;
}
.space-room__nebula--c {
  width: min(90vw, 780px);
  height: min(60vw, 520px);
  left: 18%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(255, 90, 40, 0.22) 0%, rgba(90, 140, 255, 0.1) 45%, transparent 70%);
  animation: space-drift-c 40s ease-in-out infinite alternate;
}
.space-room__stars,
.space-room__dust,
.space-room__warp {
  position: absolute;
  inset: 0;
}
.space-room__stars--far,
.space-room__stars--mid,
.space-room__stars--near {
  background-repeat: repeat;
  will-change: transform, opacity;
}
.space-room__stars--far {
  opacity: 0.55;
  background-size: 280px 280px;
  background-image: radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 80px 120px, rgba(255, 236, 200, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 160px 60px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 220px 180px, rgba(255, 140, 90, 0.55), transparent),
    radial-gradient(1px 1px at 40px 200px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 190px 240px, rgba(200, 220, 255, 0.55), transparent);
  animation: space-twinkle 6s ease-in-out infinite alternate, space-pan 120s linear infinite;
}
.space-room__stars--mid {
  opacity: 0.45;
  background-size: 360px 360px;
  background-image:
    radial-gradient(1.2px 1.2px at 40px 90px, rgba(200, 210, 255, 0.9), transparent),
    radial-gradient(1px 1px at 180px 40px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 260px 200px, rgba(255, 160, 120, 0.75), transparent),
    radial-gradient(1px 1px at 120px 280px, rgba(180, 200, 255, 0.65), transparent);
  animation: space-twinkle 5s ease-in-out infinite alternate, space-pan 95s linear infinite reverse;
}
.space-room__stars--near {
  opacity: 0.75;
  background-size: 420px 420px;
  background-image: radial-gradient(1.5px 1.5px at 60px 80px, #fff, transparent),
    radial-gradient(2px 2px at 200px 40px, rgba(255, 143, 102, 0.95), transparent),
    radial-gradient(1.5px 1.5px at 320px 220px, #fff, transparent),
    radial-gradient(2px 2px at 140px 300px, rgba(255, 74, 26, 0.85), transparent),
    radial-gradient(1px 1px at 380px 160px, rgba(255, 255, 255, 0.7), transparent);
  animation: space-twinkle 4.5s ease-in-out infinite alternate-reverse, space-pan 80s linear infinite reverse;
}
.space-room__dust {
  background-image: radial-gradient(circle, rgba(255, 143, 102, 0.35) 0 1px, transparent 1.5px);
  background-size: 140px 140px;
  opacity: 0.28;
  animation: space-dust 48s linear infinite;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  will-change: transform;
}
.space-room__beam {
  position: absolute;
  inset: -10% -20%;
  background: conic-gradient(from 210deg at 50% 30%, transparent 0deg, rgba(255, 74, 26, 0.07) 40deg, transparent 90deg, rgba(120, 160, 255, 0.06) 160deg, transparent 220deg);
  animation: space-beam 22s ease-in-out infinite alternate;
  opacity: 0.75;
  will-change: transform, opacity;
}
.space-room__warp {
  opacity: 0;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0 38px,
      rgba(255, 200, 170, 0.045) 38px 39px,
      transparent 39px 78px
    ),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 74, 26, 0.12), transparent 70%);
  mix-blend-mode: screen;
  transform: scaleY(1.15);
  transition: opacity 0.18s ease;
  pointer-events: none;
}

/* Scroll burst — galaxy reacts while scrolling */
.space-room.is-scrolling .space-room__warp {
  opacity: calc(0.35 + var(--gburst) * 0.45);
}
.space-room.is-scrolling .space-room__nebula {
  filter: blur(34px) brightness(1.28) saturate(1.2);
  opacity: 0.72;
}
.space-room.is-scrolling .space-room__stars--near {
  opacity: 0.95;
}
.space-room.is-scrolling .space-room__milky {
  opacity: 1;
  filter: blur(14px) brightness(1.2);
}

@keyframes space-drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8%, 10%, 0) scale(1.12); }
}
@keyframes space-drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.05); }
  to { transform: translate3d(-10%, 8%, 0) scale(1.18); }
}
@keyframes space-drift-c {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-6%, -8%, 0) scale(1.1); }
}
@keyframes space-twinkle {
  from { opacity: 0.35; }
  to { opacity: 0.85; }
}
@keyframes space-pan {
  from { background-position: 0 0; }
  to { background-position: 280px 140px; }
}
@keyframes space-dust {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-70px, -120px, 0); }
}
@keyframes space-beam {
  from { transform: rotate(0deg) scale(1); opacity: 0.45; }
  to { transform: rotate(12deg) scale(1.08); opacity: 0.8; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--a); text-underline-offset: 0.15em; }
a:hover { color: var(--g); }
:focus-visible { outline: 2px solid var(--a); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 3000;
  background: var(--o); color: #111; padding: 0.55rem 0.9rem;
  border-radius: 8px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
}

/* ===== Header ===== */
.site-masthead {
  position: sticky;
  top: 0;
  z-index: 400;
  overflow: visible;
}

.site-header {
  background: rgba(10, 8, 14, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  overflow: visible;
  position: relative;
}

.header-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
}

.brand-link {
  display: inline-flex;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-link img {
  height: 40px;
  width: auto;
}

.page-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-nav::-webkit-scrollbar { display: none; }
.page-nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
}
.page-nav-desktop a {
  color: #eee;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
}
.page-nav-desktop a:hover {
  color: #111;
  background: linear-gradient(135deg, var(--g), var(--o));
}
.page-nav-dropdown { display: none; width: 100%; }
.page-nav-group { margin: 0 0 0.85rem; }
.page-nav-group:last-child { margin-bottom: 0.25rem; }
.page-nav-heading {
  margin: 0 0 0.35rem;
  padding: 0.35rem 0.85rem 0.15rem;
  color: var(--o);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-nav-dropdown a {
  display: block;
  color: #eee;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
}
.page-nav-dropdown a:hover {
  color: #111;
  background: linear-gradient(135deg, var(--g), var(--o));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--s2);
  color: #fff;
  cursor: pointer;
}
.nav-burger .lucide { width: 20px; height: 20px; }

.page-nav.is-open {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  z-index: 450;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.55rem 0.65rem 0.85rem;
  background: rgba(10, 8, 14, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  overflow: auto;
  max-height: min(70vh, 420px);
}
.page-nav.is-open .page-nav-desktop { display: none; }
.page-nav.is-open .page-nav-dropdown { display: block; }

.provider-nav-wrap {
  background: rgba(16, 12, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 74, 26), 0.16);
  position: relative;
  z-index: 500;
  overflow: visible;
}

.menu-slide {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0;
  position: relative;
  overflow: visible;
}

.slide-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--s2);
  color: var(--g);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.slide-btn .lucide { width: 16px; height: 16px; }
.slide-btn:hover { background: rgba(255, 74, 26, 0.18); }

.top-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  flex: 1;
}
.top-menu::-webkit-scrollbar { display: none; }

.nav-item {
  position: static;
  flex-shrink: 0;
}

.nav-label {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.7rem 0.85rem;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-label::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.55);
  margin-left: 0.2rem;
}
.nav-item:not(.has-mega) > .nav-label::after { display: none; }

.nav-label:hover,
.nav-item.is-open > .nav-label,
.nav-item:hover > .nav-label {
  color: #111;
  background: linear-gradient(135deg, var(--g), var(--o));
}
.nav-item:hover > .nav-label::after,
.nav-item.is-open > .nav-label::after {
  border-top-color: #111;
}

/* Desktop mega: fixed flush under provider nav */
.mega-panel {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: var(--mega-top, 110px);
  z-index: 600;
  width: min(960px, calc(100vw - 1.25rem));
  max-height: min(52vh, 420px);
  overflow: auto;
  padding: 0.65rem 0.7rem;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(255, 74, 26), 0.35);
  border-top: 2px solid var(--o);
  background: rgba(22, 18, 16, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
  overscroll-behavior: contain;
}

.nav-item.has-mega.is-open > .mega-panel,
.mega-panel.is-open {
  display: block;
}

#mega-portal {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 700;
  pointer-events: none;
}
#mega-portal .mega-panel {
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.35rem;
}

.mega-item {
  display: grid;
  gap: 0.2rem;
  text-decoration: none;
  color: #fff;
  padding: 0.3rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
}
.mega-item:hover {
  border-color: rgba(255, 74, 26), 0.4);
  background: rgba(255, 74, 26, 0.12);
  color: #fff;
}
.mega-item img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
}
.mega-item span {
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  color: #eee;
}

.provider-nav-mobile {
  background: rgba(16, 12, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 74, 26), 0.14);
  position: relative;
  z-index: 40;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.05rem;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn .lucide { width: 16px; height: 16px; }
.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--g), var(--o));
}
.btn-primary:hover { color: #111; filter: brightness(1.05); }
.btn-ghost {
  color: var(--g);
  background: transparent;
  border-color: rgba(255, 74, 26), 0.45);
}
.btn-ghost:hover { color: #fff; background: rgba(255, 74, 26, 0.12); }
.btn-lg { padding: 0.8rem 1.2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Banner */
.banner-hero { position: relative; background: #0a0806; }
.banner-slider { position: relative; overflow: hidden; }
.banner-slide { display: none; margin: 0; }
.banner-slide.is-active { display: block; }
.banner-slide a { display: block; line-height: 0; }
.banner-slide picture { display: block; }
.banner-slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #0a0806;
  vertical-align: middle;
}
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.banner-nav:hover { background: var(--o); color: #111; }
.banner-nav .lucide { width: 20px; height: 20px; }
.banner-prev { left: 10px; }
.banner-next { right: 10px; }
.banner-dots {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.banner-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.banner-dot.is-active { background: var(--o); }

.banner-mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(12, 10, 16, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sections */
.section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 74, 26), 0.1);
}
.section-panel {
  background: rgba(22, 18, 24, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 74, 26), 0.16);
  border-radius: 14px;
  padding: 1.25rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.section-head { max-width: 46rem; margin-bottom: 1.35rem; }
.section-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.4rem;
  color: var(--a);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-label .lucide { width: 14px; height: 14px; }

.entity-intro { padding: 2.4rem 0 1.2rem; }
.entity-hero { max-width: 40rem; }

/* Pengumuman marquee â€” di atas mengenai FANTA55 */
.announce-marquee {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: min(100% - 2rem, var(--max));
  margin: 0.35rem auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 14, 12, 0.78);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.announce-marquee__badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.6rem;
  background: linear-gradient(135deg, rgba(255, 143, 102, 0.22), rgba(255, 74, 26, 0.18));
  border-right: 1px solid var(--line);
  color: var(--g);
}
.announce-marquee__badge .lucide {
  width: 18px;
  height: 18px;
}
.announce-marquee__viewport {
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.announce-marquee__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.55rem 0;
  animation: announce-marquee 28s linear infinite;
}
.announce-marquee__item {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0 0.75rem;
  color: var(--g);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.announce-marquee:hover .announce-marquee__track {
  animation-play-state: paused;
}
@keyframes announce-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.entity-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
  color: var(--a);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.entity-brand {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--g);
}
.entity-lead {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #fff;
}
.entity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}
.providers-copy-mobile { display: none; }

.prose { max-width: 70ch; color: var(--text); }
.prose p { margin: 0 0 0.95rem; }
.prose strong { color: var(--g); font-weight: 700; }
.prose ul {
  margin: 0 0 0.95rem;
  padding-left: 1.2rem;
  color: var(--muted);
}
.prose li { margin-bottom: 0.35rem; }

.games-marquee {
  display: grid;
  gap: 0.55rem;
  margin: 0.35rem -0.85rem 0;
  overflow: hidden;
}
.marquee-row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0.5rem;
}
.marquee-left .marquee-track {
  animation: marquee-left 48s linear infinite;
}
.marquee-right .marquee-track {
  animation: marquee-right 52s linear infinite;
}
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  flex: 0 0 auto;
  width: 88px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 74, 26), 0.22);
  background: #1a1613;
  text-decoration: none;
}
.marquee-item img,
.marquee-item picture {
  width: 88px;
  height: 88px;
  display: block;
}
.marquee-item img {
  object-fit: cover;
  max-width: none;
  height: 88px;
}
.marquee-item:hover {
  border-color: rgba(255, 74, 26), 0.55);
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (min-width: 768px) {
  .marquee-item,
  .marquee-item img,
  .marquee-item picture {
    width: 108px;
    height: 108px;
  }
  .games-marquee {
    gap: 0.7rem;
    margin: 0.5rem -0.35rem 0;
  }
}

.intent-grid { display: grid; gap: 0.55rem; }
.intent-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 74, 26, 0.1);
  border-left: 3px solid var(--o);
  border-radius: 0 10px 10px 0;
}
.intent-item:hover { background: rgba(255, 74, 26, 0.18); color: #fff; }
.intent-item .lucide { color: var(--a); width: 18px; height: 18px; }
.intent-item span { font-weight: 700; color: #fff; }
.intent-item small {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
}

.article { padding: 1.35rem 0; }
.article + .article { border-top: 1px solid rgba(255, 74, 26), 0.14); }
.article-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--o);
  margin: 0 0 0.4rem;
}
.article h2, .article h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}
.article h2 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
.article h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
.article-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--a);
}
.article-cta:hover { color: #fff; }

.access-corridor {
  background: linear-gradient(180deg, rgba(28, 20, 16, 0.55), rgba(10, 8, 12, 0.35));
}
.access-split { display: grid; gap: 0.75rem; }
.access-path {
  padding: 1.25rem 1.1rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 74, 26, 0.08);
  text-decoration: none;
  color: #fff;
}
.access-path:hover { border-color: rgba(255, 74, 26), 0.55); color: #fff; }
.access-path h3 {
  margin: 0.35rem 0;
  font-size: 1.3rem;
  color: #fff;
}
.access-path p { margin: 0; color: var(--muted); }
.access-path .lucide { color: var(--a); width: 24px; height: 24px; }
.path-go {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  font-weight: 700;
  color: var(--g);
}

/* Download APK */
.download-apk {
  background:
    linear-gradient(180deg, rgba(255, 74, 26, 0.08), transparent 40%),
    rgba(12, 10, 16, 0.35);
}
.download-panel {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 74, 26), 0.2);
  background:
    linear-gradient(135deg, rgba(255, 74, 26, 0.1), rgba(20, 16, 12, 0.92)),
    url("../images/home-download-apk-background-dana55.webp") center / cover no-repeat;
}
.download-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 74, 26), 0.2);
  background: #000;
}
.download-media img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
.download-copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  color: #fff;
  line-height: 1.3;
}
.download-copy > p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 54ch;
}
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.download-actions .btn img {
  display: inline-block;
  width: 18px;
  height: 18px;
}
.apk-guide {
  border: 1px solid rgba(255, 74, 26), 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  padding: 0.2rem 0.85rem 0.2rem;
}
.apk-guide summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  padding: 0.7rem 0;
}
.apk-guide ol {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  color: var(--muted);
}
.apk-guide li { margin-bottom: 0.3rem; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 74, 26), 0.14);
  background: rgba(255, 74, 26, 0.05);
}
.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 74, 26, 0.12);
  border: 1px solid var(--line);
  color: var(--a);
}
.step h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #fff;
}
.step p { margin: 0; color: var(--muted); }

.trust-grid { display: grid; gap: 0.75rem; }
.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
}
.trust-item .lucide { color: var(--a); width: 20px; height: 20px; margin-top: 0.15rem; }
.trust-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #fff;
}
.trust-item p { margin: 0; color: var(--muted); }

.disclaimer {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 74, 26), 0.22);
  background: rgba(255, 74, 26, 0.07);
  color: var(--text);
  font-size: 0.95rem;
}
.disclaimer strong { color: var(--g); }

.faq-list { display: grid; gap: 0.5rem; }
.faq-item {
  border: 1px solid rgba(255, 74, 26), 0.18);
  border-radius: 10px;
  background: #1a1613;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .lucide {
  width: 18px; height: 18px; color: var(--a);
  transition: transform 0.2s;
}
.faq-item[open] summary .lucide { transform: rotate(45deg); }
.faq-body { padding: 0 1rem 1rem; color: var(--muted); }
.faq-body p { margin: 0; }

/* ===== Info panel table (above FAQ) ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.info-panel {
  border: 1px solid rgba(255, 74, 26, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 74, 26, 0.12), transparent 55%),
    rgba(12, 9, 14, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: 0.95rem;
}
.info-table th,
.info-table td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 74, 26, 0.14);
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}
.info-table th {
  width: 38%;
  max-width: 16rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.info-table th .lucide {
  width: 16px;
  height: 16px;
  color: var(--a);
  margin-right: 0.45rem;
  vertical-align: -0.2em;
  display: inline-block;
}
.info-table td {
  color: var(--muted);
  line-height: 1.55;
}
.info-table td strong {
  color: var(--g);
  font-weight: 700;
}
.info-table td a {
  color: var(--a);
  text-decoration: none;
  font-weight: 600;
}
.info-table td a:hover {
  color: #fff;
  text-decoration: underline;
}
.info-table tr:hover th,
.info-table tr:hover td {
  background: rgba(255, 74, 26, 0.06);
}

@media (max-width: 699px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    max-width: none;
  }
  .info-table thead {
    display: none;
  }
  .info-table tr {
    padding: 0.85rem 0.95rem;
    border-bottom: 1px solid rgba(255, 74, 26, 0.14);
  }
  .info-table tr:last-child {
    border-bottom: 0;
  }
  .info-table th,
  .info-table td {
    padding: 0.15rem 0;
    border-bottom: 0;
    background: transparent !important;
    white-space: normal;
  }
  .info-table th {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #fff;
    margin-bottom: 0.2rem;
  }
  .info-table td {
    font-size: 0.92rem;
    color: var(--muted);
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 6, 12, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 0 1.4rem;
}

.footer-info-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.footer-info-card {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 74, 26), 0.14);
  background: rgba(255, 74, 26, 0.04);
}
.card-head {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.card-head .lucide { color: var(--a); width: 22px; height: 22px; }
.footer-info-card h3 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--a);
}
.card-head p { margin: 0.1rem 0 0; color: var(--muted); font-size: 0.88rem; }
.footer-info-card h4 {
  margin: 0.55rem 0 0.2rem;
  font-size: 0.9rem;
  color: #fff;
}
.footer-info-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.progress-wrap {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 0.25rem;
}
.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--o), var(--g));
}
.progress-fill.deposit { width: 85%; }
.progress-fill.withdraw { width: 45%; }

.footer-badges {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 74, 26), 0.12);
}
.footer-badge-block h3,
.footer-providers h3,
.footer-col h3 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--a);
  font-weight: 700;
}
.badge-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.badge-row li {
  display: flex;
  align-items: center;
}
.badge-row picture {
  display: block;
  line-height: 0;
}
.badge-row img { height: 34px; width: auto; }

.provider-logos {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.45rem;
}
.provider-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 74, 26), 0.1);
}
.provider-logos picture {
  display: block;
  line-height: 0;
}
.provider-logos img {
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-bottom-grid {
  display: grid;
  gap: 1.15rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 74, 26), 0.12);
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 0.55rem; }
.footer-brand p { margin: 0; color: var(--muted); max-width: 36ch; font-size: 0.92rem; }
.footer-col ul,
.footer-acc-panel { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.3rem; }
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.footer-col a:hover { color: var(--g); }

.footer-acc-toggle {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 0.15rem;
  border: 0;
  border-top: 1px solid rgba(255, 74, 26), 0.14);
  border-bottom: 1px solid rgba(255, 74, 26), 0.45);
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.footer-acc-toggle .lucide {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--g);
  transition: transform 0.25s var(--ease);
}
.footer-acc.is-open > .footer-acc-toggle .lucide {
  transform: rotate(180deg);
}
.footer-providers .footer-acc-toggle {
  margin-bottom: 0.65rem;
}

.footer-legal {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 74, 26), 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

@media (max-width: 991px) {
  .provider-nav-desktop { display: none; }

  .provider-nav-mobile {
    position: relative;
    z-index: 30;
  }
  .provider-nav-mobile .menu-slide {
    padding: 0.35rem 0.5rem;
  }
  .provider-nav-mobile .top-menu {
    gap: 0.25rem;
  }
  .provider-nav-mobile .nav-label {
    font-size: 0.8rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 74, 26), 0.16);
  }
  .provider-nav-mobile .nav-item.is-open > .nav-label,
  .provider-nav-mobile .nav-label:hover {
    color: #111;
    background: linear-gradient(135deg, var(--g), var(--o));
    border-color: transparent;
  }
  .provider-nav-mobile .mega-panel {
    position: absolute;
    left: 0.35rem;
    right: 0.35rem;
    top: calc(100% + 2px);
    z-index: 40;
    width: auto;
    max-height: min(38vh, 320px);
    margin: 0;
    transform: none;
    overflow: auto;
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 74, 26), 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    background: rgba(22, 18, 16, 0.98);
  }
  .provider-nav-mobile .nav-item.has-mega {
    display: block;
    position: static;
  }
  .provider-nav-mobile .mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem;
  }
  .provider-nav-mobile .mega-item { padding: 0.25rem; }
  .provider-nav-mobile .mega-item span { font-size: 0.64rem; }
  .provider-nav-mobile .mega-item img { height: 38px; }

  .banner-mobile-cta {
    padding: 0.65rem 0.75rem;
    gap: 0.45rem;
  }
  .banner-nav {
    width: 32px;
    height: 32px;
  }
  .container {
    width: min(100% - 1.1rem, var(--max));
  }
  html { scroll-padding-top: 108px; }
  body {
    font-size: 1rem;
    line-height: 1.65;
  }
  .section { padding: 1.75rem 0; }
  .section-panel {
    padding: 0.95rem 0.8rem;
    border-radius: 12px;
  }
  .section-head { margin-bottom: 0.85rem; max-width: none; }
  .section-head h2 { font-size: 1.28rem; line-height: 1.35; }
  .section-head p { font-size: 0.92rem; line-height: 1.55; }
  .providers-copy-desktop { display: none; }
  .providers-copy-mobile { display: block; margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

  .entity-intro { padding: 1.25rem 0 0.35rem; }
  .announce-marquee {
    width: calc(100% - 1.5rem);
    margin-top: 0.15rem;
    border-radius: 12px;
  }
  .announce-marquee__badge { width: 2.35rem; }
  .announce-marquee__badge .lucide { width: 16px; height: 16px; }
  .announce-marquee__item { font-size: 0.74rem; }
  .announce-marquee__track { animation-duration: 22s; }
  .entity-kicker { font-size: 0.72rem; margin-bottom: 0.35rem; }
  .entity-brand { font-size: 2.35rem; letter-spacing: -0.02em; }
  .entity-lead {
    margin-top: 0.55rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .entity-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.95rem;
  }
  .entity-actions .btn-lg {
    width: 100%;
    padding: 0.72rem 0.55rem;
    font-size: 0.88rem;
  }

  .article h2,
  .article h3 {
    font-size: 1.18rem;
    line-height: 1.35;
  }
  .prose { font-size: 0.95rem; line-height: 1.6; }
  .prose p { margin-bottom: 0.75rem; }
  .intent-item {
    padding: 0.8rem 0.85rem;
    gap: 0.55rem;
  }
  .intent-item span { font-size: 0.92rem; }
  .intent-item small { font-size: 0.78rem; }

  .article { padding: 1rem 0; }
  .article-cta { font-size: 0.92rem; }
  .access-path { padding: 1rem 0.9rem; }
  .footer-info-card { padding: 0.9rem; }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 0;
    padding-top: 0.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 0.75rem;
  }
  .footer-acc > .footer-acc-panel {
    display: none;
    padding: 0.55rem 0.1rem 0.75rem;
  }
  .footer-acc.is-open > .footer-acc-panel {
    display: grid;
  }
  .footer-col.footer-acc.is-open > .footer-acc-panel {
    display: block;
  }
  .games-marquee {
    margin-left: -0.8rem;
    margin-right: -0.8rem;
  }
}

@media (min-width: 992px) {
  .provider-nav-mobile { display: none; }
  .nav-burger { display: none; }
  .page-nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    overflow: visible;
    max-height: none;
  }
  .page-nav-desktop { display: flex; }
  .page-nav-dropdown { display: none; }
  .brand-link img { height: 44px; }
}

@media (min-width: 768px) {
  .banner-mobile-cta { display: none; }
  .intent-grid { grid-template-columns: 1fr 1fr; }
  .access-split { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-info-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-badges { grid-template-columns: 1.1fr 1fr 1.1fr; }
  .footer-bottom-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .section-panel { padding: 1.5rem; }
  .download-panel {
    grid-template-columns: 1fr 1.05fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .entity-intro .container {
    display: block;
  }
  .providers-copy-mobile { display: none; }
  .providers-copy-desktop { display: block; margin: 0; color: var(--muted); }
  .footer-acc-toggle {
    pointer-events: none;
    cursor: default;
    border: 0;
    padding: 0 0 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--a);
  }
  .footer-acc-toggle .lucide { display: none; }
  .footer-acc > .footer-acc-panel { display: grid !important; }
  .footer-col.footer-acc > .footer-acc-panel { display: block !important; }
  .footer-providers .footer-acc-toggle { margin-bottom: 0.5rem; }
}

@media (max-width: 479px) {
  .header-actions .btn-ghost { display: none; }
  .btn-sm { padding: 0.42rem 0.7rem; font-size: 0.8rem; }
  .brand-link img { height: 34px; }
  .entity-brand { font-size: 2.15rem; }
  .entity-actions {
    grid-template-columns: 1fr;
  }
  .entity-actions .btn-lg { font-size: 0.92rem; padding: 0.78rem 1rem; }
  .banner-nav { width: 30px; height: 30px; }
  .marquee-item,
  .marquee-item img,
  .marquee-item picture {
    width: 78px;
    height: 78px;
  }
  .footer-bottom-grid { grid-template-columns: 1fr; }
  .provider-nav-mobile .mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .space-room__nebula {
    filter: blur(28px);
    opacity: 0.34;
  }
  .space-room__nebula--c,
  .space-room__beam,
  .space-room__dust {
    display: none;
  }
  .space-room__stars--near {
    animation: space-twinkle 5s ease-in-out infinite alternate-reverse;
  }
  .space-room__stars--far {
    animation: space-twinkle 7s ease-in-out infinite alternate;
  }
}

.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* Floating live chat launcher (opens official LiveChat widget) */
:root {
  --lc-fab: 56px;
  --lc-gap: 0.4rem;
  --lc-edge: max(0.85rem, env(safe-area-inset-right, 0px));
  --lc-bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  --lc-widget-bottom: calc(var(--lc-fab) + var(--lc-bottom) + 0.65rem);
}

.live-chat-widget {
  position: fixed;
  right: var(--lc-edge);
  bottom: var(--lc-bottom);
  z-index: 2147483001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lc-gap);
  max-width: calc(100vw - (var(--lc-edge) * 2));
  pointer-events: none;
}
.live-chat-widget > * { pointer-events: auto; }

/* Desktop/tablet: geser widget resmi di atas FAB */
@media (min-width: 640px) {
  html.nami55-chat-open #chat-widget-container {
    bottom: var(--lc-widget-bottom) !important;
    right: var(--lc-edge) !important;
    left: auto !important;
    z-index: 2147483000 !important;
  }
}

/* Mobile: biarkan LiveChat native, pastikan terlihat & ada ruang FAB */
@media (max-width: 639px) {
  html.nami55-chat-open #chat-widget-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2147483000 !important;
    bottom: var(--lc-widget-bottom) !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: calc(100vh - var(--lc-widget-bottom)) !important;
    height: calc(100dvh - var(--lc-widget-bottom)) !important;
    max-height: none !important;
    top: auto !important;
  }

  html.nami55-chat-open #chat-widget-container iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    max-height: none !important;
  }
}

/* Sembunyikan HANYA bubble minimized default (jangan sentuh maximized) */
#chat-widget-minimized,
iframe#chat-widget-minimized {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.live-chat-label-blink {
  display: inline-block;
  max-width: 100%;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.88);
  border: 1px solid rgba(255, 74, 26), 0.35);
  color: var(--g);
  font-family: var(--font);
  font-size: clamp(0.62rem, 2.4vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  animation: livechat-blink 1.2s ease-in-out infinite;
}

.live-chat-fab {
  position: relative;
  width: var(--lc-fab);
  height: var(--lc-fab);
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--g), var(--o));
  color: #111;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  overflow: visible;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}
.live-chat-fab .lucide {
  width: clamp(20px, 5vw, 24px);
  height: clamp(20px, 5vw, 24px);
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.live-chat-fab__icon-close { display: none; }
.live-chat-widget.is-open .live-chat-fab__icon-open { display: none; }
.live-chat-widget.is-open .live-chat-fab__icon-close { display: block; }
.live-chat-widget.is-open .live-chat-label-blink,
.live-chat-widget.is-open .live-chat-fab__pulse,
.live-chat-widget.is-open .live-chat-fab__dot {
  display: none;
}

.live-chat-fab__dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  border: 1.5px solid #fff;
  z-index: 2;
  animation: livechat-blink 1.4s ease-in-out infinite;
}
.live-chat-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  animation: livechat-pulse 2.2s ease-out infinite;
}
.live-chat-fab:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.live-chat-fab:active {
  transform: scale(0.96);
}
.live-chat-fab:focus-visible {
  outline: 2px solid var(--a);
  outline-offset: 3px;
}

@keyframes livechat-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.22; }
}
@keyframes livechat-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 74, 26, 0.5);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 74, 26, 0);
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 74, 26, 0);
    opacity: 0;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --lc-fab: 54px;
    --lc-edge: max(0.8rem, env(safe-area-inset-right, 0px));
    --lc-bottom: max(0.8rem, env(safe-area-inset-bottom, 0px));
  }
}

/* Mobile */
@media (max-width: 639px) {
  :root {
    --lc-fab: 52px;
    --lc-edge: max(0.7rem, env(safe-area-inset-right, 0px));
    --lc-bottom: max(0.7rem, env(safe-area-inset-bottom, 0px));
    --lc-widget-bottom: calc(var(--lc-fab) + var(--lc-bottom) + 0.55rem);
  }
}

/* Very small phones */
@media (max-width: 379px) {
  :root {
    --lc-fab: 48px;
    --lc-edge: max(0.55rem, env(safe-area-inset-right, 0px));
    --lc-bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
  }
  .live-chat-label-blink {
    padding: 0.22rem 0.45rem;
    letter-spacing: 0.04em;
  }
  .live-chat-fab__dot {
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
  }
}

/* Landscape phones / short viewports */
@media (max-height: 520px), (orientation: landscape) and (max-width: 900px) {
  :root {
    --lc-fab: 48px;
    --lc-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
    --lc-widget-bottom: calc(var(--lc-fab) + var(--lc-bottom) + 0.4rem);
  }
  .live-chat-widget:not(.is-open) .live-chat-label-blink {
    font-size: 0.6rem;
    padding: 0.18rem 0.4rem;
  }
}

/* Large desktop */
@media (min-width: 1280px) {
  :root {
    --lc-fab: 58px;
    --lc-edge: max(1.15rem, env(safe-area-inset-right, 0px));
    --lc-bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .marquee-item,
  .marquee-item img,
  .marquee-item picture {
    width: 118px;
    height: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-left .marquee-track,
  .marquee-right .marquee-track,
  .announce-marquee__track { animation: none; }
  .space-room__nebula,
  .space-room__stars--far,
  .space-room__stars--mid,
  .space-room__stars--near,
  .space-room__dust,
  .space-room__beam,
  .space-room__milky,
  .space-room__warp {
    animation: none !important;
    transition: none !important;
  }
  .space-room__stars--far,
  .space-room__stars--mid,
  .space-room__stars--near { opacity: 0.55; }
  .space-room__dust { opacity: 0.15; }
  .space-room__warp { display: none; }
  .live-chat-fab__pulse,
  .live-chat-fab__dot,
  .live-chat-label-blink {
    animation: none !important;
  }
  .live-chat-fab__dot,
  .live-chat-label-blink { opacity: 1; }
}

/* ===== Entity stage + foundation (app-like, light CSS) ===== */
.entity-stage {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
.entity-hud {
  border: 1px solid rgba(255, 74, 26, 0.28);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background:
    linear-gradient(145deg, rgba(255, 74, 26, 0.12), transparent 55%),
    rgba(14, 10, 12, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.35);
}
.entity-hud__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--a);
}
.entity-hud__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.entity-hud__list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 74, 26, 0.14);
}
.entity-hud__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.entity-hud__list span {
  color: var(--muted);
  font-size: 0.85rem;
}
.entity-hud__list strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: right;
}

.entity-brand {
  text-shadow: 0 0 42px rgba(255, 74, 26, 0.35);
}
.entity-actions .btn-primary {
  box-shadow: 0 0 0 1px rgba(255, 143, 102, 0.35), 0 10px 28px rgba(196, 30, 18, 0.35);
}
.entity-actions .btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(255, 143, 102, 0.55), 0 14px 36px rgba(196, 30, 18, 0.45);
}

.foundation-panel {
  border-color: rgba(255, 74, 26, 0.22);
}
.relation-map {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}
.relation-map a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 74, 26, 0.28);
  background: rgba(255, 74, 26, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.relation-map a:hover {
  background: rgba(255, 74, 26, 0.2);
  border-color: rgba(255, 74, 26, 0.5);
  transform: translateY(-1px);
}
.foundation-doc {
  border-top: 1px solid rgba(255, 74, 26, 0.14);
  padding-top: 0.35rem;
}
.prose-foundation {
  max-width: 72ch;
}
.prose-foundation h3 {
  margin: 1.55rem 0 0.55rem;
  scroll-margin-top: 130px;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.35;
  color: #fff;
  font-weight: 750;
}
.prose-foundation h3:first-child { margin-top: 0.4rem; }
.pay-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 1.1rem;
}
.pay-rail span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 74, 26, 0.22);
  background: rgba(12, 10, 14, 0.7);
  color: var(--g);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.foundation-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 74, 26, 0.14);
}

/* Mobile app dock */
.app-dock {
  position: fixed;
  left: 50%;
  bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  width: min(360px, calc(100vw - 1.2rem));
  padding: 0.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 74, 26, 0.32);
  background: rgba(10, 8, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.app-dock__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 3rem;
  padding: 0.35rem 0.25rem;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
}
.app-dock__btn .lucide { width: 18px; height: 18px; color: var(--a); }
.app-dock__btn--primary {
  background: linear-gradient(135deg, var(--o), var(--d));
  box-shadow: 0 6px 18px rgba(196, 30, 18, 0.4);
}
.app-dock__btn--primary .lucide { color: #fff; }

.games-marquee,
.footer-providers,
.foundation-panel {
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

@media (max-width: 899px) {
  .app-dock { display: grid; }
  body { padding-bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px)); }
  .live-chat-widget {
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)) !important;
  }
  html.nami55-chat-open .app-dock { opacity: 0.35; pointer-events: none; }
}

@media (min-width: 900px) {
  .entity-stage {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
    gap: 1.5rem;
    align-items: end;
  }
  .entity-hero { max-width: none; }
  .relation-map a { font-size: 0.86rem; }
}

@media (prefers-reduced-motion: reduce) {
  .relation-map a:hover { transform: none; }
}

/* ===== AAA FX layer: canvas / cursor / vignette ===== */
.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.fx-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 65% at 50% 40%, transparent 35%, rgba(4, 3, 6, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 6, 10, 0.15), transparent 28%, rgba(7, 6, 10, 0.35) 100%);
}
.space-room { z-index: -1; }
main,
.site-footer {
  position: relative;
  z-index: 2;
}
.app-dock { z-index: 60; }

.fx-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 143, 102, 0.85);
  background: rgba(255, 74, 26, 0.12);
  box-shadow: 0 0 24px rgba(255, 74, 26, 0.35);
  pointer-events: none;
  z-index: 5000;
  mix-blend-mode: screen;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.fx-cursor.is-hot {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  background: rgba(255, 74, 26, 0.22);
}

html.js-fx:not(.fx-reduced) .entity-kicker,
html.js-fx:not(.fx-reduced) .entity-brand,
html.js-fx:not(.fx-reduced) .entity-lead,
html.js-fx:not(.fx-reduced) .select-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js-fx:not(.fx-reduced):not(.is-entered) .entity-kicker,
html.js-fx:not(.fx-reduced):not(.is-entered) .entity-brand,
html.js-fx:not(.fx-reduced):not(.is-entered) .entity-lead,
html.js-fx:not(.fx-reduced):not(.is-entered) .select-stage {
  /* Soft settle under opening — still painted for Speed Index */
  transform: translate3d(0, 10px, 0);
}

/* Pause heavy galaxy CSS until page entered (faster first paint) */
html:not(.is-entered):not(.fx-reduced) .space-room__nebula,
html:not(.is-entered):not(.fx-reduced) .space-room__stars,
html:not(.is-entered):not(.fx-reduced) .space-room__dust,
html:not(.is-entered):not(.fx-reduced) .space-room__milky,
html:not(.is-entered):not(.fx-reduced) .space-room__beam,
html:not(.is-entered):not(.fx-reduced) .space-room__warp {
  animation-play-state: paused !important;
}

html.has-webgl-fx .space-room__nebula,
html.has-webgl-fx .space-room__beam,
html.has-webgl-fx .space-room__dust {
  opacity: 0.45;
}
html.has-webgl-fx .space-room__stars--near,
html.has-webgl-fx .space-room__stars--mid {
  opacity: 0.5;
}
html.has-webgl-fx .space-room__milky {
  opacity: 0.7;
}

html.fx-gsap .reveal {
  opacity: 0;
}
html.fx-gsap .reveal.is-visible {
  /* GSAP owns visibility; keep class for a11y hooks */
}

html.fx-reduced .fx-canvas,
html.fx-reduced .fx-cursor,
html.fx-reduced .fx-vignette {
  display: none !important;
}
html.fx-reduced .opening-scene {
  display: none !important;
}
html.fx-reduced .entity-kicker,
html.fx-reduced .entity-brand,
html.fx-reduced .entity-lead,
html.fx-reduced .select-stage,
html.fx-reduced .reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

/* ===== Opening scene ===== */
html.is-booting {
  overflow: hidden;
}
/* Overlay covers content — do not hide main (Speed Index / LCP) */
html.is-booting .site-masthead,
html.is-booting main,
html.is-booting .app-dock,
html.is-booting .site-footer,
html.is-booting .live-chat-widget {
  visibility: visible;
}
.opening-scene {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07060a;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.55s step-end;
  will-change: opacity;
}
.opening-scene.is-done {
  pointer-events: none;
}
.opening-scene.is-leaving {
  opacity: 0;
  visibility: hidden;
}
.opening-scene__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(255, 74, 26, 0.22), transparent 62%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(196, 30, 18, 0.18), transparent 55%),
    #07060a;
}
.opening-scene__glow {
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 74, 26, 0.35), transparent 68%);
  filter: blur(8px);
  opacity: 0.85;
}
.opening-scene__ring {
  position: absolute;
  width: min(280px, 58vw);
  height: min(280px, 58vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 143, 102, 0.35);
  box-shadow:
    0 0 40px rgba(255, 74, 26, 0.25),
    inset 0 0 30px rgba(255, 74, 26, 0.12);
}
.opening-scene__mark {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
}
.opening-scene__logo {
  width: min(280px, 72vw);
  height: auto;
  display: block;
  opacity: 1;
  filter: drop-shadow(0 12px 36px rgba(255, 74, 26, 0.45));
}
.opening-scene__tag {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 196, 168, 0.85);
  opacity: 1;
}
.opening-scene__skip {
  position: absolute;
  left: 50%;
  bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 11.5rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 160, 110, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 110, 60, 0.95), rgba(196, 30, 18, 0.92));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 74, 26, 0.25),
    0 12px 36px rgba(255, 74, 26, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.opening-scene__skip-glow {
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: opening-skip-shine 2.4s ease-in-out infinite;
  pointer-events: none;
}
.opening-scene__skip-label,
.opening-scene__skip-icon {
  position: relative;
  z-index: 1;
}
.opening-scene__skip-icon {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.opening-scene__skip:hover {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 74, 26, 0.4),
    0 16px 44px rgba(255, 74, 26, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.opening-scene__skip:hover .opening-scene__skip-icon {
  transform: translateX(3px);
}
.opening-scene__skip:active {
  transform: translateX(-50%) scale(0.97);
}

@keyframes opening-skip-shine {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@media (max-width: 479px) {
  .opening-scene__skip {
    min-width: 10.5rem;
    padding: 0.78rem 1.25rem;
    font-size: 0.85rem;
    bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-scene {
    display: none !important;
  }
}

@media (pointer: coarse) {
  .fx-cursor { display: none !important; }
}

@media (max-width: 700px) {
  html.has-webgl-fx .space-room__nebula--b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-canvas,
  .fx-cursor {
    display: none !important;
  }
}

/* ===== Character-select command deck ===== */
.site-header--slim .header-row {
  min-height: 58px;
}
.command-deck {
  padding: 1.25rem 0 2.5rem;
  position: relative;
  z-index: 2;
  overflow-x: clip;
  scroll-margin-top: 5.5rem;
}
.command-deck > .container {
  max-width: 100%;
}
#menu {
  scroll-margin-top: 5.5rem;
}
.deck-hero {
  max-width: 40rem;
  margin-bottom: 1.35rem;
}
.deck-hero .entity-brand {
  margin: 0.15rem 0 0.55rem;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
}
.deck-hero .entity-lead {
  margin: 0;
  max-width: 38rem;
}

.select-stage {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  min-height: 520px;
  width: 100%;
  max-width: 100%;
}

/* Below-fold: skip layout/paint until near viewport (no visual change when shown) */
#keunggulan,
#informasi,
#faq,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.info-table thead th {
  padding: 0.85rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted, #bdb6ae);
  background: rgba(255, 74, 26, 0.08);
  border-bottom: 1px solid rgba(255, 74, 26, 0.22);
}
.select-stage.is-browse {
  min-height: 520px;
}
.select-stage.is-detail {
  overflow: hidden;
  min-height: 0;
}

/* ----- Browse mode ----- */
.char-browse {
  padding: 1.75rem clamp(0.5rem, 2vw, 0.85rem) 1.35rem;
  perspective: none;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.char-browse__prompt {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  text-align: center;
  font-size: clamp(0.7rem, 2.4vw, 0.78rem);
  letter-spacing: 0.04em;
  color: rgba(232, 228, 240, 0.78);
  padding: 0.35rem 0.5rem;
  position: relative;
  z-index: 20;
  line-height: 1.45;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.char-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.25rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.char-nav {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  border: none;
  background: rgba(255, 74, 26, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.char-nav:hover {
  background: rgba(255, 74, 26, 0.28);
  transform: scale(1.05);
}
.char-nav .lucide {
  width: 20px;
  height: 20px;
}
.char-viewport {
  position: relative;
  height: 320px;
  min-width: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.char-viewport:active {
  cursor: grabbing;
}
.char-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1100px;
}

.char-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(140px, 42vw, 210px);
  height: clamp(190px, 56vw, 255px);
  margin: 0;
  padding: 0.85rem 0.7rem 1rem;
  border: none;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(40, 22, 20, 0.92), rgba(14, 10, 12, 0.94));
  color: #fff;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.char-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 120, 60, 0.45), transparent 65%);
  transition: opacity 0.3s var(--ease);
}
.char-card.is-focus {
  border: none;
  box-shadow:
    0 0 40px rgba(255, 74, 26, 0.35),
    0 22px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(255, 74, 26, 0.12);
  z-index: 30;
}
.char-card.is-focus .char-card__glow {
  opacity: 1;
}
.char-card.is-near {
  z-index: 20;
}
.char-card.is-far {
  z-index: 5;
}
.char-card__art {
  width: clamp(52px, 16vw, 72px);
  height: clamp(52px, 16vw, 72px);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  background: none;
  border: none;
}
.char-card__art .lucide {
  width: clamp(26px, 8vw, 34px);
  height: clamp(26px, 8vw, 34px);
  color: #ff9a6a;
  stroke-width: 1.6;
}
.char-card__art--logo {
  width: 100%;
  height: auto;
  min-height: 48px;
  padding: 0.35rem 0.4rem;
  background: none;
}
.char-card__art--logo img {
  width: 100%;
  max-width: 110px;
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 4px 12px rgba(255, 74, 26, 0.35));
}
.char-card.is-focus .char-card__art {
  transform: scale(1.06);
  border: none;
  box-shadow: 0 0 24px rgba(255, 74, 26, 0.3);
}
.char-card__code {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--a);
}
.char-card__name {
  font-size: clamp(0.92rem, 3.2vw, 1.05rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.char-card__tag {
  font-size: clamp(0.65rem, 2.4vw, 0.72rem);
  color: var(--muted);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.char-card.is-focus .char-card__tag {
  color: #ffc4a8;
}

.char-browse__focus {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: none;
  font-size: clamp(0.8rem, 2.8vw, 0.9rem);
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
.char-browse__focus strong {
  color: #fff;
  font-weight: 800;
  margin-right: 0.35rem;
}

/* ----- Detail mode ----- */
.char-detail {
  padding: clamp(0.7rem, 2.5vw, 1rem) clamp(0.7rem, 2.5vw, 1.15rem) clamp(1rem, 3vw, 1.35rem);
}
.char-detail__bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: none;
}
.char-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 74, 26, 0.16);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.char-back:hover {
  background: rgba(255, 74, 26, 0.28);
  transform: translateX(-3px);
  box-shadow: 0 0 20px rgba(255, 74, 26, 0.25);
}
.char-back .lucide {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.char-detail__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a);
}
.char-detail__grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}
.char-detail__copy {
  min-width: 0;
}
.char-detail__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.35rem 0;
  border-radius: 0;
  border: none;
  background: none;
  overflow: visible;
  transform-style: preserve-3d;
}
.char-visual__ring {
  display: none;
}
.char-visual__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-bottom: 0.55rem;
}
.char-visual__icon img {
  max-width: min(150px, 55vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(255, 74, 26, 0.4));
}
.char-visual__icon .lucide {
  width: clamp(42px, 12vw, 64px);
  height: clamp(42px, 12vw, 64px);
  color: #ff9a6a;
  stroke-width: 1.4;
  filter: drop-shadow(0 0 18px rgba(255, 74, 26, 0.55));
}
.char-visual__name {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
}
.char-visual__tag {
  position: relative;
  z-index: 1;
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

@keyframes char-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.select-panel {
  display: none !important;
  opacity: 1;
  visibility: visible;
}
.select-panel.is-active {
  display: block !important;
}
.char-detail[hidden] {
  display: none !important;
}
.char-detail:not([hidden]) {
  display: block;
}
.select-panel__head {
  margin-bottom: 0.85rem;
}
.select-panel__meta {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--a);
}
.select-panel__head h2 {
  margin: 0;
  font-size: clamp(1.15rem, 4.5vw, 1.65rem);
  color: #fff;
  line-height: 1.3;
}
.select-panel .prose {
  max-width: 70ch;
}
.select-panel .prose ol {
  padding-left: 1.15rem;
}
.select-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.select-panel__split {
  margin-top: 0.85rem;
}
.select-panel__marquee {
  margin: 0.9rem 0 0.35rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 74, 26, 0.14);
}

/* ----- Responsive: phone ----- */
@media (max-width: 699px) {
  .command-deck {
    padding: 0.85rem 0 1.5rem;
  }
  .deck-hero {
    margin-bottom: 1rem;
  }
  .deck-hero .entity-brand {
    font-size: clamp(2rem, 11vw, 2.6rem);
  }
  .deck-hero .entity-lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .select-stage {
    border-radius: 14px;
    min-height: 460px;
  }
  .select-stage.is-browse {
    min-height: 460px;
  }

  .char-browse {
    padding: 1.5rem 0.55rem 1.2rem;
  }
  .char-browse__prompt {
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
  }

  .char-carousel {
    display: block;
    position: relative;
  }
  .char-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    z-index: 40;
    background: rgba(12, 8, 10, 0.72);
    backdrop-filter: blur(8px);
  }
  .char-nav:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .char-nav--prev { left: 0.15rem; }
  .char-nav--next { right: 0.15rem; }
  .char-nav .lucide {
    width: 16px;
    height: 16px;
  }

  .char-viewport {
    height: 280px;
    overflow: hidden;
  }
  .char-card {
    width: min(156px, 46vw);
    height: 200px;
    padding: 0.7rem 0.55rem;
    border-radius: 14px;
  }
  .char-card__art--logo {
    min-height: 44px;
    padding: 0.45rem 0.5rem;
  }

  .char-detail__bar {
    gap: 0.45rem;
  }
  .char-back {
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
  }
  .char-back span {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .char-detail__grid {
    gap: 0.9rem;
  }
  .char-detail__visual {
    order: -1;
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.85rem;
    padding: 0.15rem 0;
    text-align: left;
    background: none;
  }
  .char-visual__ring {
    display: none;
  }
  .char-visual__icon {
    margin: 0;
    min-height: 0;
    flex-shrink: 0;
  }
  .char-visual__icon img {
    max-width: 100px;
  }
  .char-visual__icon .lucide {
    width: 40px;
    height: 40px;
  }
  .char-visual__name,
  .char-visual__tag {
    text-align: left;
  }
  .char-visual__name {
    font-size: 1.05rem;
  }

  .select-panel__actions {
    flex-direction: column;
  }
  .select-panel__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .select-panel .access-split {
    grid-template-columns: 1fr;
  }
  .pay-rail {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .pay-rail span {
    font-size: 0.72rem;
    padding: 0.35rem 0.55rem;
  }
}

@media (max-width: 379px) {
  .select-stage.is-browse {
    min-height: 420px;
  }
  .char-viewport {
    height: 260px;
  }
  .char-card {
    width: min(138px, 52vw);
    height: 180px;
  }
  .char-browse__prompt {
    font-size: 0.68rem;
  }
  .char-back span {
    display: none;
  }
  .char-visual__ring {
    display: none;
  }
}

/* ----- Responsive: tablet ----- */
@media (min-width: 700px) and (max-width: 899px) {
  .select-stage.is-browse {
    min-height: 500px;
  }
  .char-viewport {
    height: 300px;
  }
  .char-card {
    width: 180px;
    height: 230px;
  }
  .char-detail__grid {
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 1.15rem;
  }
  .char-detail__visual {
    min-height: 0;
    position: sticky;
    top: 5rem;
    background: none;
  }
}

/* ----- Responsive: desktop ----- */
@media (min-width: 900px) {
  .command-deck {
    padding-top: 1.75rem;
  }
  .select-stage.is-browse {
    min-height: 560px;
  }
  .char-browse {
    padding: 2rem 1rem 1.5rem;
  }
  .char-browse__prompt {
    margin-bottom: 2rem;
  }
  .char-viewport {
    height: 340px;
    overflow: visible;
  }
  .char-card {
    width: 210px;
    height: 255px;
  }
  .char-detail__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.75fr);
    gap: 1.75rem;
  }
  .char-detail__visual {
    min-height: 0;
    position: sticky;
    top: 5.5rem;
    background: none;
  }
}

/* Landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
  .deck-hero .entity-lead {
    display: none;
  }
  .char-viewport {
    height: 180px;
  }
  .char-card {
    height: 160px;
    width: 130px;
  }
  .char-card__tag {
    display: none;
  }
  .char-detail__visual {
    min-height: 0;
    padding: 0.15rem 0;
    background: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .char-visual__ring {
    animation: none;
  }
  .char-card,
  .char-nav,
  .char-back {
    transition: none;
  }
}

/* ===== No decorative borders — blend with galaxy background ===== */
.site-header,
.site-masthead,
.site-footer,
.section,
.section-panel,
.announce-bar,
.announce-marquee,
.announce-marquee__inner,
.faq-item,
.info-panel,
.info-table,
.info-table th,
.info-table td,
.info-table tr,
.footer-info-card,
.footer-info-grid,
.footer-acc-toggle,
.footer-acc-panel,
.footer-legal,
.footer-badges,
.footer-badge-block,
.footer-col,
.access-path,
.btn,
.btn-ghost,
.btn-primary,
.btn-sm,
.btn-lg,
.btn-block,
.header-actions .btn,
.entity-hud,
.entity-hud__list li,
.relation-map a,
.pay-rail span,
.step,
.steps .step,
.article,
.article + .article,
.download-card,
.download-actions .btn,
.app-dock,
.app-dock__btn,
.app-dock__btn--primary,
.char-card,
.char-card__art,
.char-card__art--logo,
.char-nav,
.char-back,
.char-detail,
.char-detail__bar,
.char-detail__visual,
.char-visual__ring,
.char-browse__prompt,
.char-browse__focus,
.select-stage,
.select-panel__marquee,
.games-marquee,
.marquee-row,
.progress-wrap,
.badge-row li,
.live-chat-fab,
.live-chat-label-blink,
.opening-scene__skip,
.opening-scene__ring,
.prose-foundation h3,
.foundation-doc,
.card-head,
.path-go,
.faq-item summary,
.faq-body,
.section-head,
.deck-hero,
.command-deck,
.header-row,
.brand-link,
.nav-more,
.nav-dropdown,
.nav-dropdown-panel,
.mega-menu,
.banner,
.banner-slide,
.banner-dot,
.provider-rail,
.platform-chip,
.access-split,
.select-panel__actions .btn {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none;
}

/* Keep keyboard focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--a) !important;
  outline-offset: 3px !important;
}

/* Soften panels so they sit in the galaxy without framed boxes */
.info-panel,
.faq-item,
.footer-info-card,
.section-panel,
.access-path,
.app-dock__btn {
  background: rgba(8, 6, 12, 0.35) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header {
  background: rgba(10, 8, 14, 0.55) !important;
  border-bottom: none !important;
}
.site-footer {
  background: rgba(8, 6, 12, 0.45) !important;
}
.info-table th {
  background: transparent !important;
}
.info-table tr:hover th,
.info-table tr:hover td {
  background: rgba(255, 74, 26, 0.05) !important;
}

.char-card.is-focus {
  box-shadow:
    0 0 40px rgba(255, 74, 26, 0.35),
    0 22px 48px rgba(0, 0, 0, 0.45),
    inset 0 0 30px rgba(255, 74, 26, 0.12) !important;
}
.opening-scene__skip {
  box-shadow:
    0 12px 36px rgba(255, 74, 26, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}
.btn-primary {
  box-shadow: 0 8px 24px rgba(255, 74, 26, 0.28) !important;
}
