:root {
  --bg: #0b0b14;
  --surface: rgba(20, 20, 35, 0.85);
  --gold: #ffd700;
  --gold2: #ffec80;
  --gold3: #c49b1a;
  --text: #fff;
  --dim: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 215, 0, 0.1);
  --radius: 18px;
}

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

body {
  font-family: "Noto Sans Myanmar", "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════ BACKGROUND (lightweight) ═══════ */
.bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.bg-orb {
  position: absolute; border-radius: 50%;
  will-change: transform;
  animation: drift 16s ease-in-out infinite alternate;
}
.orb-1 {
  width: 50vw; height: 50vw; max-width: 500px; max-height: 500px;
  top: -15%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,215,0,.08), transparent 70%);
}
.orb-2 {
  width: 30vw; height: 30vw; max-width: 350px; max-height: 350px;
  bottom: 10%; left: -5%;
  background: radial-gradient(circle, rgba(255,215,0,.04), transparent 70%);
  animation-delay: -6s; animation-duration: 20s;
}
@keyframes drift { to { transform: translate(15px,-10px) scale(1.08); } }

/* ═══════ SPARKLES (6 only, GPU composited) ═══════ */
.sparkles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.sparkles i {
  position: absolute; display: block; width: 2px; height: 2px;
  background: var(--gold); border-radius: 50%; opacity: 0;
  will-change: opacity, transform;
  animation: spark 6s infinite;
}
.sparkles i:nth-child(2n) { background: var(--gold2); }
.sparkles i:nth-child(1) { left:8%;  top:20%; animation-delay:0s;   animation-duration:5s; }
.sparkles i:nth-child(2) { left:25%; top:65%; animation-delay:1.2s; animation-duration:7s; }
.sparkles i:nth-child(3) { left:45%; top:10%; animation-delay:2.5s; animation-duration:5.5s; }
.sparkles i:nth-child(4) { left:60%; top:75%; animation-delay:.6s;  animation-duration:6s; }
.sparkles i:nth-child(5) { left:78%; top:30%; animation-delay:3s;   animation-duration:6.5s; }
.sparkles i:nth-child(6) { left:90%; top:55%; animation-delay:1.8s; animation-duration:5s; }
@keyframes spark {
  0%,100% { opacity:0; transform:scale(.5); }
  50%     { opacity:.6; transform:scale(1); }
}

/* ═══════ PAGE ═══════ */
.page {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  min-height: 100vh; padding: 2.5rem 1.25rem 2rem;
}

/* ═══════ ENTRANCE ═══════ */
.anim-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}
.anim-in.show { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ═══════ LOGO ═══════ */
.logo-area {
  position: relative;
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}

.logo-glow {
  position: absolute; inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,.15), transparent 65%);
  animation: glow-pulse 3s ease-in-out infinite;
  will-change: opacity;
}
@keyframes glow-pulse {
  0%,100% { opacity:.5; }
  50%     { opacity:.9; }
}

.logo {
  width: 130px; height: 130px;
  border-radius: 50%; object-fit: contain;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 20px rgba(255,215,0,.15));
}

/* ═══════ BRAND ═══════ */
.brand {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: .15rem;
  background: linear-gradient(135deg, var(--gold2), var(--gold), var(--gold3));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shift 4s ease-in-out infinite;
}
@keyframes gold-shift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

.tagline {
  font-family: "Inter", system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  margin-bottom: 1.75rem;
}

/* ═══════ SLOT REELS ═══════ */
.reels { text-align: center; margin-bottom: 1.5rem; }

.reel-strip {
  display: inline-flex; gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(145deg, rgba(255,215,0,.1), rgba(255,215,0,.02));
  border: 2px solid rgba(255,215,0,.18);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255,215,0,.04), inset 0 0 20px rgba(0,0,0,.3);
}

.reel {
  width: 60px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  background: rgba(8,8,18,.85);
  border-radius: 10px;
  border: 1px solid rgba(255,215,0,.08);
  text-shadow: 0 0 10px rgba(255,215,0,.25);
}
.reel.spin { animation: reel-jitter .09s linear infinite; will-change: transform; }
@keyframes reel-jitter {
  0%   { transform: translateY(-1px); }
  50%  { transform: translateY(1px); }
  100% { transform: translateY(-1px); }
}

.win-badge {
  margin-top: .6rem;
  font-family: "Inter", sans-serif;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .35em;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255,215,0,.4);
  opacity: 0; transform: scale(.4);
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.win-badge.pop { opacity: 1; transform: scale(1); }

/* ═══════ DESCRIPTION ═══════ */
.desc {
  font-size: .88rem; line-height: 1.8;
  color: var(--dim);
  text-align: center;
  max-width: 360px;
  margin-bottom: 1.75rem;
}

/* ═══════ BUTTONS ═══════ */
.btns {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: min(280px, 100%);
  margin-bottom: 2.25rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  font-family: "Noto Sans Myanmar", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .02em;
  padding: .6rem 1.25rem;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn-ico { width: 16px; height: 16px; flex-shrink: 0; }

/* Gold primary */
.btn-gold {
  color: #0b0b14;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 45%, var(--gold3) 100%);
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 16px rgba(255,215,0,.2), inset 0 1px 0 rgba(255,255,255,.2);
}

.btn-glow {
  position: absolute; inset: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold2), var(--gold), var(--gold3));
  filter: blur(12px);
  opacity: .25;
  z-index: -1;
  transition: opacity .3s;
  pointer-events: none;
}

.btn-shine {
  position: absolute;
  top: 0; left: -110%; z-index: 1;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.25) 50%, transparent 75%);
  animation: sweep 5s ease-in-out infinite;
  pointer-events: none;
  will-change: left;
}
@keyframes sweep {
  0%,100% { left: -110%; }
  35%,65% { left: 160%; }
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,215,0,.3), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-gold:hover .btn-glow { opacity: .45; }
.btn-gold:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(255,215,0,.15); }

/* Outline secondary */
.btn-outline {
  color: var(--gold);
  background: rgba(255,215,0,.04);
  border: 2px solid rgba(255,215,0,.18);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(255,215,0,.1);
  border-color: rgba(255,215,0,.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255,215,0,.06);
}
.btn-outline:active { transform: translateY(0); box-shadow: none; }

/* ═══════ STATS ═══════ */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  margin-bottom: 1.25rem;
  width: min(500px, 100%);
}

.stat {
  display: flex; flex-direction: column; align-items: center; gap: .1rem; flex: 1;
}
.stat-num {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.stat-plus {
  font-family: "Inter", sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--gold); opacity: .7;
}
.stat-lbl {
  font-size: .62rem; color: var(--dim); font-weight: 500;
  text-align: center; line-height: 1.3; margin-top: .15rem;
}
.stat-sep {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  flex-shrink: 0;
}

/* ═══════ PROVIDERS ═══════ */
.providers {
  width: 100%; max-width: 500px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  margin-bottom: 1.25rem;
}
.prov-track {
  display: flex; gap: 2rem;
  animation: scroll-left 20s linear infinite;
  width: max-content;
  will-change: transform;
}
.prov-track span {
  font-family: "Inter", sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--dim); white-space: nowrap; opacity: .6;
}
@keyframes scroll-left { to { transform: translateX(-50%); } }

/* ═══════ PAYMENTS ═══════ */
.payments {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; margin-bottom: 1.75rem;
}
.pay-label {
  font-size: .65rem; font-weight: 600;
  color: var(--dim); letter-spacing: .1em; text-transform: uppercase;
}
.pay-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; }
.pay-chip {
  font-family: "Inter", sans-serif;
  font-size: .65rem; font-weight: 600;
  color: var(--gold); opacity: .7;
  padding: .3rem .7rem;
  border: 1px solid rgba(255,215,0,.12);
  border-radius: 8px;
  background: rgba(255,215,0,.03);
}

/* ═══════ FOOTER ═══════ */
.footer {
  font-size: .65rem; color: var(--dim); opacity: .3; text-align: center;
}

/* ═══════ REDUCE MOTION ═══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════ RESPONSIVE ═══════ */

@media (max-width: 359px) {
  .brand { font-size: 2rem; }
  .tagline { font-size: .7rem; letter-spacing: .2em; }
  .reel { width: 50px; height: 58px; font-size: 1.5rem; }
  .btn { font-size: .75rem; padding: .55rem 1rem; }
  .btn-ico { width: 14px; height: 14px; }
  .stats { flex-direction: column; gap: .6rem; padding: 1rem; }
  .stat-sep { width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent); }
  .stat { flex-direction: row; gap: .4rem; }
  .stat-lbl { text-align: left; }
}

@media (min-width: 360px) and (max-width: 479px) {
  .brand { font-size: 2.4rem; }
  .reel { width: 56px; height: 64px; font-size: 1.6rem; }
}

@media (min-width: 480px) {
  .page { padding: 3rem 1.5rem 2rem; }
  .brand { font-size: 3.2rem; }
  .tagline { font-size: .9rem; }
  .reel { width: 72px; height: 82px; font-size: 2.2rem; }
  .reel-strip { gap: 8px; padding: 10px 14px; }
  .btns { flex-direction: row; width: auto; }
  .btn { font-size: .85rem; padding: .65rem 1.5rem; }
  .stats { gap: 2rem; padding: 1.5rem 2.5rem; }
  .stat-num { font-size: 1.85rem; }
}

@media (min-width: 768px) {
  .page { padding-top: 4.5rem; }
  .brand { font-size: 3.8rem; }
  .logo-area { width: 160px; height: 160px; }
  .logo { width: 150px; height: 150px; }
  .reel { width: 84px; height: 94px; font-size: 2.6rem; }
  .reel-strip { gap: 10px; padding: 12px 16px; border-radius: 20px; }
  .btn { font-size: .9rem; padding: .7rem 1.75rem; border-radius: 12px; }
  .btn-ico { width: 18px; height: 18px; }
}
