/* ===== RESET & VARS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---- Brand palette: "Royal Amethyst" — near-black indigo void +
     deep violet as the DOMINANT hue + polished gold as a secondary
     accent (inverse of dafabet's red-led/purple-secondary pairing).
     Distinct silhouette: tabbed duo hero, 2x2 feature grid, octagon
     bottom-nav badge. ---- */
  --black:    #08050f;
  --black-2:  #120a24;
  --black-hi: #1c1038;

  --purple:        #4c1d95;
  --purple-bright: #a78bfa;
  --purple-deep:   #2e1065;

  --gold:        #d4a017;
  --gold-bright: #ffd873;
  --gold-deep:   #8a660c;

  --text:  #f3eefc;
  --muted: #c9bce3;
  --dim:   #897aab;

  --border:      rgba(167,139,250,0.3);
  --border-soft: rgba(167,139,250,0.15);
  --border-gold: rgba(255,216,115,0.4);

  --glass:      rgba(18,10,36,0.72);
  --glass-soft: rgba(18,10,36,0.46);

  --grad-purple: linear-gradient(120deg, #c4b5fd 0%, #7c3aed 50%, #4c1d95 100%);
  --grad-cta:    linear-gradient(135deg, #ffe9ad 0%, #ffd873 45%, #d4a017 100%);
  --grad-tab:    linear-gradient(135deg, #a78bfa 0%, #7c3aed 55%, #4c1d95 100%);

  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow:    0 10px 28px rgba(0,0,0,0.65);
  --shadow-lg: 0 18px 46px rgba(0,0,0,0.7);
  --glow-gold: 0 0 0 1px rgba(255,216,115,0.4), 0 0 26px rgba(255,216,115,0.22), 0 14px 32px rgba(0,0,0,0.65);
  --glow-purp: 0 0 0 1px rgba(167,139,250,0.42), 0 0 26px rgba(167,139,250,0.26), 0 14px 32px rgba(0,0,0,0.65);

  --font-display: 'Kanit', sans-serif;
  --font-body:    'Prompt', 'Kanit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 92px;
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

/* Painted canvas backdrop: near-black indigo void with a violet glow
   rising from the bottom and a faint gold sheen top-right — cosmic,
   star-hairline texture, echoing the banner art. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 90% 6%, rgba(255,216,115,0.14) 0%, rgba(255,216,115,0) 36%),
    radial-gradient(circle at 8% 92%, rgba(124,58,237,0.32) 0%, rgba(124,58,237,0) 46%),
    radial-gradient(circle at 50% 42%, rgba(46,16,101,0.4) 0%, rgba(46,16,101,0) 55%),
    linear-gradient(180deg, #000000 0%, #120a24 24%, #1c1038 50%, #120a24 78%, #000000 100%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,216,115,0.5) 0, transparent 100%),
    radial-gradient(1px 1px at 70% 65%, rgba(167,139,250,0.55) 0, transparent 100%),
    radial-gradient(1px 1px at 85% 20%, rgba(255,216,115,0.4) 0, transparent 100%),
    radial-gradient(1px 1px at 35% 80%, rgba(167,139,250,0.4) 0, transparent 100%),
    repeating-linear-gradient(115deg, rgba(167,139,250,0.05) 0px, rgba(167,139,250,0.05) 1px, transparent 1px, transparent 68px);
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.5rem 1.25rem; position: relative; }
@media (max-width: 768px) { .section { padding: 3.25rem 1rem; } }
@media (max-width: 479px) { .section { padding: 2.75rem 0.875rem; } }
.bg-alt { background: rgba(18,10,36,0.5); }

/* ===== HEADINGS ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; text-wrap: balance; color: var(--text); }

/* ===== UTILS ===== */
.grad-text {
  background: var(--grad-cta);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.kw { color: var(--gold-bright); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-bright);
  border-radius: 9999px;
  padding: 0.45rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 8px var(--purple-bright); }

.section-head { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.35; margin: 0.9rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; }
@media (max-width: 479px) { .section-head { margin-bottom: 2rem; } .section-head p { font-size: 0.875rem; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  padding: 0.85rem 2.1rem; border-radius: 9999px; border: none; cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn-gold { background: var(--grad-cta); color: var(--black); box-shadow: var(--glow-gold); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:active { transform: translateY(1px); }
.btn-outline { background: var(--glass); color: var(--purple-bright); border: 1px solid var(--border); backdrop-filter: blur(10px); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--gold-bright); color: var(--gold-bright); }
.hbtn { padding: 0.6rem 1.35rem; font-size: 0.85rem; }

/* =====================================================================
   TICKER BAR
   ===================================================================== */
.ticker-bar {
  position: relative; z-index: 5;
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(90deg, #1a0e34, #2e1065, #1a0e34);
  border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border);
  box-shadow: 0 0 18px rgba(124,58,237,0.22) inset;
  padding: 0.7rem 0;
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 24s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 2.25rem; padding-right: 2.25rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--gold-bright); text-shadow: 0 0 12px rgba(255,216,115,0.4); white-space: nowrap;
}
.ticker-item b { color: var(--purple-bright); font-weight: 800; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
@media (max-width: 768px) { .ticker-item { font-size: 0.8rem; gap: 1.5rem; padding-right: 1.5rem; } }

/* =====================================================================
   HEADER — "Starlight Bar": deep-purple glass with a thin gold hairline
   underglow. Fixed flush at the very top.
   ===================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--glass);
  box-shadow: 0 1px 0 var(--border-gold), 0 8px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.header-inner { max-width: 1240px; margin: 0 auto; display: flex; flex-direction: column; padding: 0.6rem 1.25rem; }
.header-row1 { display: flex; align-items: center; gap: 1rem; width: 100%; }

.logo-link { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-img { height: 56px; width: auto; max-width: 200px; object-fit: contain; filter: drop-shadow(0 3px 10px rgba(124,58,237,0.4)); }

.nav-menu { display: flex; align-items: center; gap: 0.2rem; margin: 0 auto; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 1.05rem; border-radius: 9999px;
  font-size: 0.87rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--gold-bright); background: var(--black-hi); }

.ico-line {
  display: inline-flex; align-items: center; justify-content: center;
  background: #06C755; color: #fff; font-size: 0.55rem; font-weight: 700;
  border-radius: 4px; padding: 2px 4px; flex-shrink: 0; line-height: 1;
}

.header-btns { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; margin-left: auto; }
.header-row2 { display: none; }

@media (max-width: 768px) {
  .header-inner { padding: 0.5rem 0.85rem; }
  .header-row1 { gap: 0.5rem; }
  .nav-menu { display: none; }
  .logo-img { height: 44px; }
  .header-btns { gap: 0.4rem; }
  .hbtn { padding: 0.5rem 0.9rem; font-size: 0.76rem; }
  .header-row2 {
    display: flex; align-items: center; gap: 0.3rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-top: 0.45rem; margin-top: 0.45rem;
    border-top: 1px solid var(--border-soft);
  }
  .header-row2::-webkit-scrollbar { display: none; }
}
.mob-nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  background: var(--black-hi);
}
.mob-nav-link:active { color: var(--gold-bright); }

/* =====================================================================
   HERO — "Tabbed Duo": two pill tabs above the banner switch between
   Banner1/Banner2 with a fade — only one banner shown at full width at
   a time. Distinct from dafabet's stacked-card duo and PK9999's
   multi-slide carousel.
   ===================================================================== */
.hero { position: relative; padding-top: 96px; }
@media (max-width: 768px) { .hero { padding-top: 116px; } }

.hero-tabs { display: flex; justify-content: center; gap: 0.6rem; padding: 1.25rem 1.25rem 0; }
.hero-tab {
  padding: 0.6rem 1.5rem; border-radius: 9999px; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  background: var(--glass); border: 1px solid var(--border); color: var(--muted);
  cursor: pointer; transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.hero-tab.active, .hero-tab:hover { background: var(--grad-tab); color: #fff; box-shadow: var(--glow-purp); border-color: transparent; }

.hero-slider { position: relative; line-height: 0; max-width: 1280px; margin: 1.25rem auto 0; overflow: hidden; border-radius: var(--r-lg); }
@media (max-width: 768px) { .hero-slider { border-radius: 0; margin-top: 1rem; } }
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: hero-fade 0.5s ease; }
.hero-slide a { display: block; line-height: 0; }
.hero-slide img { width: 100%; height: auto; display: block; }
@keyframes hero-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero-slide.active { animation: none; } }

.hero-intro { max-width: 900px; margin: 0 auto; padding: 3rem 1.25rem 1rem; text-align: center; }
@media (max-width: 768px) { .hero-intro { padding: 2.25rem 1rem 0.5rem; } }
.hero-intro .eyebrow { margin-bottom: 1.2rem; }
.hero-intro h1 { font-size: clamp(1.6rem, 4.6vw, 2.5rem); line-height: 1.4; margin-bottom: 1.1rem; }
.hero-intro p { color: var(--muted); font-size: clamp(0.92rem, 2vw, 1.02rem); line-height: 1.95; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ===== 3ICON STRIP ===== */
.strip { padding: 1.5rem 1.25rem; }
.strip-frame { max-width: 900px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #43205a; }
.strip-frame img { width: 100%; }

/* =====================================================================
   2x2 FEATURE GRID — the 4 image-less H2 sections arranged as a compact
   grid (not a connected timeline, not scattered single-column cards).
   ===================================================================== */
.feature-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  position: relative; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow); overflow: hidden;
}
.feature-card::before {
  content: attr(data-num); position: absolute; top: -0.4rem; right: 0.5rem;
  font-family: var(--font-display); font-weight: 800; font-size: 4.5rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,216,115,0.25); opacity: 0.7; pointer-events: none;
}
.feature-card h2 { font-size: clamp(1.05rem, 2.6vw, 1.3rem); margin-bottom: 0.85rem; line-height: 1.4; position: relative; }
.feature-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.9; position: relative; }

/* ===== PROVIDER SHOWCASE (single 12-card grid) ===== */
.provider-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .provider-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 479px) { .provider-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }
.provider-card {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.6));
}
.provider-card:hover { transform: translateY(-4px); }
.provider-card img { width: 100%; height: auto; }

.provider-badges { position: absolute; top: 0.5rem; left: 0.5rem; right: 0.5rem; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; pointer-events: none; }
.badge-count {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: rgba(8,5,15,0.85); color: var(--gold-bright);
  font-size: 0.66rem; font-weight: 700; padding: 0.2rem 0.5rem 0.2rem 0.4rem;
  border-radius: 9999px; border: 1px solid var(--border-gold);
}
.badge-count::before {
  content: '';
  display: inline-block; width: 0.72em; height: 0.72em; flex-shrink: 0;
  background: var(--gold-bright);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0 2.5c-3.34 0-10 1.68-10 5v2.5h20v-2.5c0-3.32-6.66-5-10-5z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0 2.5c-3.34 0-10 1.68-10 5v2.5h20v-2.5c0-3.32-6.66-5-10-5z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.badge-hot {
  display: inline-flex; align-items: center; gap: 0.2rem;
  background: var(--grad-tab); color: #fff;
  font-size: 0.64rem; font-weight: 800; padding: 0.2rem 0.55rem 0.2rem 0.4rem;
  border-radius: 9999px;
}
.badge-hot::before { content: '✨'; font-size: 0.7rem; }
@media (max-width: 479px) { .badge-count, .badge-hot { font-size: 0.58rem; padding: 0.16rem 0.4rem; } }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--glass); border: 1px solid var(--border-soft); border-radius: var(--r); padding: 1.3rem 1.5rem; box-shadow: var(--shadow); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; margin-bottom: 0.55rem; color: var(--text); }
.faq-q::before { content: 'Q  '; color: var(--gold-bright); }
.faq-a { color: var(--muted); font-size: 0.865rem; line-height: 1.9; }
.faq-a::before { content: 'A  '; color: var(--purple-bright); font-weight: 700; }
@media (max-width: 479px) { .faq-item { padding: 1.05rem 1.15rem; } }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 1.25rem; }
.cta-panel {
  max-width: 1000px; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
  background: var(--glass); border: 1px solid var(--border-gold); border-radius: var(--r-xl);
  padding: 3.25rem 2rem; box-shadow: var(--glow-gold);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.cta-panel .eyebrow { margin-bottom: 1rem; }
.cta-panel h2 { font-size: clamp(1.5rem, 4vw, 2.15rem); margin-bottom: 0.75rem; }
.cta-panel p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-btns .btn { padding: 1rem 2.4rem; font-size: 1.02rem; }
@media (max-width: 768px) { .cta-panel { padding: 2.5rem 1.5rem; } }
@media (max-width: 479px) { .cta-panel { padding: 2rem 1.1rem; border-radius: var(--r-lg); } }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid var(--border-soft); color: var(--muted); padding: 3rem 1.25rem 2rem; text-align: center; }
.footer-logo { height: 88px; width: auto; margin: 0 auto 1rem; filter: drop-shadow(0 3px 10px rgba(124,58,237,0.4)); }
.footer-tagline { max-width: 660px; margin: 0 auto 2rem; font-size: 0.88rem; line-height: 1.85; }
.footer-tagline b { color: var(--gold-bright); }
.footer-partner { display: block; max-width: 1100px; margin: 0 auto 2rem; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: #150c28; border: 1px solid var(--border); padding: 1.25rem; }
.footer-partner img { width: 100%; }
.footer-copy { color: var(--dim); font-size: 0.76rem; }
.footer-copy b { color: var(--dim); }

/* =====================================================================
   BOTTOM MOBILE NAV — "Octagon Dock": flush dark glass dock with a gold
   top-edge glow, octagon-clipped center logo badge — a silhouette
   distinct from every earlier brand (circle/oval/rounded-square/diamond).
   ===================================================================== */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  align-items: center; justify-content: space-between;
  background: var(--glass);
  box-shadow: 0 -1px 0 var(--border-gold), 0 -10px 26px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 0.5rem 0.6rem;
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }
.mnav-item {
  flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  padding: 0.55rem 0.15rem; border-radius: var(--r); color: var(--muted);
  font-size: 0.66rem; font-weight: 600; text-align: center; line-height: 1.1;
  -webkit-tap-highlight-color: transparent; transition: color 0.2s, background 0.2s;
}
.mnav-item .mnav-emoji { font-size: 1.1rem; line-height: 1; }
.mnav-item .ico-line { transform: scale(1.35); margin-bottom: 0.1rem; }
.mnav-item:active { color: var(--gold-bright); background: var(--black-hi); }
.mnav-item.acc { color: var(--gold-bright); font-weight: 700; }

.mnav-center {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 78px; height: 78px; margin: 0 0.55rem; transform: translateY(-22px);
  background: var(--black-2);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  box-shadow: var(--glow-gold);
  border: 2px solid var(--gold-bright);
  -webkit-tap-highlight-color: transparent; transition: transform 0.15s ease;
}
.mnav-center:active { transform: translateY(-22px) scale(0.94); }
.mnav-center img { height: 48px; width: auto; max-width: 62px; object-fit: contain; }
@media (max-width: 360px) {
  .mnav-item { font-size: 0.6rem; }
  .mnav-center { width: 66px; height: 66px; transform: translateY(-18px); }
  .mnav-center:active { transform: translateY(-18px) scale(0.94); }
  .mnav-center img { height: 40px; max-width: 52px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =====================================================================
   TX TICKER — deposit/withdraw feed, right after hero. Pure-CSS vertical
   marquee (list duplicated once in the DOM, looped with translateY -50%)
   — distinct mechanism from the JS-interval insert-and-cap feeds used on
   Ufapixel/sp888/mega66vip/mega66win, but echoes this brand's own
   horizontal .ticker-bar technique applied vertically instead.
   ===================================================================== */
.tx-section { max-width: 640px; margin: 0 auto; }
.tx-frame {
  position: relative; height: 320px; overflow: hidden; border-radius: var(--r-xl);
  background: var(--glass); border: 1px solid var(--border-gold); box-shadow: var(--glow-purp);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.tx-frame::before, .tx-frame::after { content: ''; position: absolute; left: 0; right: 0; height: 44px; z-index: 2; pointer-events: none; }
.tx-frame::before { top: 0; background: linear-gradient(to bottom, var(--black-2), transparent); }
.tx-frame::after { bottom: 0; background: linear-gradient(to top, var(--black-2), transparent); }
.tx-track { display: flex; flex-direction: column; animation: tx-scroll 28s linear infinite; }
.tx-row { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1.5rem; border-bottom: 1px solid var(--border-soft); }
.tx-tag { flex-shrink: 0; font-size: 0.6rem; font-weight: 800; padding: 0.28rem 0.6rem; border-radius: 9999px; letter-spacing: 0.02em; }
.tx-row.dep .tx-tag { background: var(--grad-tab); color: #fff; }
.tx-row.wd .tx-tag { background: var(--grad-cta); color: var(--black); }
.tx-info { flex: 1; min-width: 0; }
.tx-name { font-size: 0.85rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-bank { font-size: 0.72rem; color: var(--dim); }
.tx-amount { font-size: 0.88rem; font-weight: 700; flex-shrink: 0; white-space: nowrap; }
.tx-row.dep .tx-amount { color: var(--purple-bright); }
.tx-row.wd .tx-amount { color: var(--gold-bright); }
@keyframes tx-scroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@media (prefers-reduced-motion: reduce) { .tx-track { animation: none; } }

/* =====================================================================
   GALLERY GRID / SCROLL — game & casino provider showcase
   ===================================================================== */
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.9rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; } }
.gallery-card {
  display: block; border-radius: var(--r); overflow: hidden;
  background: var(--glass); border: 1px solid var(--border-soft);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.55)); transition: transform 0.2s ease;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card img { width: 100%; height: auto; display: block; }
.gallery-card-label { padding: 0.5rem 0.6rem; font-size: 0.72rem; font-weight: 500; color: var(--muted); text-align: center; line-height: 1.3; }
.gallery-card-label b { color: var(--gold-bright); display: block; font-size: 0.78rem; margin-bottom: 0.1rem; font-family: var(--font-display); }

.gallery-scroll {
  display: flex; gap: 0.9rem; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 0.25rem 1.25rem 1rem; max-width: 1200px; margin: 0 auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll .gallery-card { flex: 0 0 122px; scroll-snap-align: start; }
@media (max-width: 479px) { .gallery-scroll .gallery-card { flex-basis: 100px; } }

/* =====================================================================
   PROMOTION CARDS — /promotion/, mirrors the 2x2 feature-card's
   decorative data-num watermark for brand consistency
   ===================================================================== */
.promo-list { display: flex; flex-direction: column; gap: 1.75rem; max-width: 820px; margin: 2.5rem auto 0; text-align: left; }
.promo-card {
  position: relative; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.promo-card img { width: 100%; display: block; }
.promo-card-body { padding: 1.5rem 1.75rem 1.75rem; position: relative; }
.promo-card-body::before {
  content: attr(data-num); position: absolute; top: -0.6rem; right: 0.75rem;
  font-family: var(--font-display); font-weight: 800; font-size: 4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,216,115,0.22); opacity: 0.65; pointer-events: none;
}
.promo-card-body h2 { font-size: clamp(1.1rem, 3vw, 1.4rem); margin-bottom: 0.75rem; line-height: 1.4; position: relative; }
.promo-card-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.9; margin-bottom: 1rem; position: relative; }
.promo-card-body ul { padding-left: 1.25rem; color: var(--muted); font-size: 0.88rem; line-height: 1.9; margin-bottom: 1.5rem; position: relative; }
.promo-card-body li { margin-bottom: 0.4rem; }
@media (max-width: 479px) { .promo-card-body { padding: 1.25rem 1.25rem 1.5rem; } }

/* ===== SUB-PAGES ===== */
body.page-body { overflow-x: hidden; }
.page-main { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 96px 1.25rem 7rem; text-align: center; gap: 1.75rem; position: relative; }
@media (max-width: 768px) { .page-main { padding-top: 116px; } }
.page-h1 { font-size: clamp(1.3rem, 3.6vw, 1.9rem); line-height: 1.4; }
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 96px 1.25rem 5rem; }
@media (max-width: 768px) { .article-main { padding-top: 116px; } }
.article-main h1 { font-size: clamp(1.5rem, 4.2vw, 2.1rem); line-height: 1.45; margin-bottom: 1rem; }
.article-main .article-meta { color: var(--dim); font-size: 0.8rem; margin-bottom: 2rem; }
.article-main p { color: var(--muted); font-size: 0.95rem; line-height: 1.95; margin-bottom: 1.25rem; }
.article-main h2 { font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 2rem 0 1rem; }

.article-cover { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--glow-purp); line-height: 0; }
.article-cover img { width: 100%; }

.article-tldr {
  background: var(--glass); border: 1px solid var(--border-gold); border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.article-tldr h2 { margin-top: 0; font-size: 1rem; color: var(--gold-bright); }
.article-tldr ul { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.95; }
.article-tldr li { margin-bottom: 0.35rem; }

.article-faq { margin-top: 2.5rem; }

.article-related { margin-top: 2.5rem; }
.article-related h2 { font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 0 0 1rem; }
.article-related-list { display: flex; flex-direction: column; gap: 0.9rem; }
.article-related-item {
  display: block; background: var(--glass); border: 1px solid var(--border-soft); border-radius: var(--r);
  padding: 1rem 1.25rem; transition: transform 0.2s ease, border-color 0.2s ease;
}
.article-related-item:hover { transform: translateY(-2px); border-color: var(--border-gold); }
.article-related-item .rel-title { font-family: var(--font-display); font-weight: 700; color: var(--gold-bright); font-size: 0.95rem; }
.article-related-item .rel-desc { color: var(--muted); font-size: 0.82rem; margin-top: 0.25rem; line-height: 1.7; }

/* ===== HOMEPAGE ARTICLE PREVIEW ===== */
.article-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr; max-width: 480px; } }
.article-card {
  display: block; background: var(--glass); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s ease;
}
.article-card:hover { transform: translateY(-4px); }
.article-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.article-card-body { padding: 1.1rem 1.25rem 1.4rem; }
.article-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.article-card-body p { color: var(--muted); font-size: 0.82rem; line-height: 1.75; }
