/* ============ SLOTARA — dark casino theme ============ */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
:root {
  --bg: #12141c;
  --panel: #1b1e29;
  --panel2: #232736;
  --line: #2e3346;
  --text: #e8eaf2;
  --muted: #8b91a7;
  --gold: #f5c518;
  --gold2: #ffdf6e;
  --green: #00e701;
  --red: #ff4d5e;
  --purple: #7b5cff;
}
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; }
input { font-family: inherit; }
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; appearance: textfield; }

.screen { min-height: 100vh; }
.gold { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  padding: 13px 22px; border-radius: 12px; font-size: 15px; font-weight: 700;
  transition: transform .08s, filter .15s; color: #1a1a1a;
}
.btn:active { transform: scale(.96); }
.btn-gold { background: linear-gradient(180deg, var(--gold2), var(--gold)); box-shadow: 0 4px 14px rgba(245,197,24,.25); }
.btn-green { background: linear-gradient(180deg, #4dff50, var(--green)); box-shadow: 0 4px 14px rgba(0,231,1,.22); color: #052b05; }
.btn-ghost { background: var(--panel2); color: var(--text); border: 1px solid var(--line); }
.btn-danger { background: rgba(255,77,94,.12); color: var(--red); border: 1px solid rgba(255,77,94,.4); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 10px; }
.btn:disabled { filter: grayscale(.7); opacity: .55; pointer-events: none; }

/* ---------- auth ---------- */
.auth-screen {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(1000px 500px at 50% -10%, rgba(123,92,255,.25), transparent),
              radial-gradient(800px 400px at 90% 110%, rgba(245,197,24,.12), transparent), var(--bg);
  padding: 20px;
}
.auth-card {
  width: 100%; max-width: 400px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 22px; padding: 30px 24px;
}
.auth-logo { text-align: center; font-size: 46px; }
.auth-logo h1 {
  font-size: 30px; letter-spacing: 4px;
  background: linear-gradient(90deg, var(--gold2), var(--gold), var(--gold2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.auth-tag { text-align: center; color: var(--muted); font-size: 12.5px; margin: 6px 0 20px; }
.auth-tabs { display: flex; background: var(--bg); border-radius: 12px; padding: 4px; margin-bottom: 18px; }
.auth-tab {
  flex: 1; padding: 10px; border-radius: 9px; background: transparent;
  color: var(--muted); font-weight: 700; font-size: 14px;
}
.auth-tab.active { background: var(--panel2); color: var(--gold); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.field input {
  width: 100%; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font-size: 15px; outline: none;
}
.field input:focus { border-color: var(--gold); }
.auth-error { color: var(--red); font-size: 13px; min-height: 18px; margin-bottom: 8px; text-align: center; }
.auth-note { color: var(--muted); font-size: 12px; margin-top: 16px; }
.auth-note b { color: var(--gold); }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: rgba(18,20,28,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-logo { font-size: 18px; font-weight: 800; letter-spacing: 1px; }
.topbar-logo span { color: var(--gold); }
.balance-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--panel2); border: 1px solid var(--line);
  padding: 7px 12px; border-radius: 999px; font-weight: 800; font-size: 14px;
}
.balance-pill .coin { font-size: 15px; }
.balance-plus {
  background: var(--gold); color: #1a1a1a; border-radius: 50%;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; margin-left: 2px;
}

/* ---------- content & nav ---------- */
.content { max-width: 520px; margin: 0 auto; padding: 16px 16px 90px; }
.bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; max-width: 520px; margin: 0 auto;
  background: var(--panel); border-top: 1px solid var(--line);
  padding: 6px 8px calc(8px + env(safe-area-inset-bottom));
}
.nav-btn {
  flex: 1; background: transparent; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 18px; padding: 6px 0; border-radius: 10px;
}
.nav-btn span { font-size: 10.5px; font-weight: 700; }
.nav-btn.active { color: var(--gold); }

.view { display: none; animation: fadeIn .18s ease; }
.view.active { display: block; }
@keyframes fadeIn { from { opacity: .4; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.section-title { font-size: 16px; margin: 20px 0 12px; }
.view > .section-title:first-child { margin-top: 4px; }

/* ---------- promo & game grid ---------- */
.promo-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: linear-gradient(120deg, rgba(123,92,255,.35), rgba(245,197,24,.15));
  border: 1px solid rgba(123,92,255,.4);
  border-radius: 16px; padding: 16px;
}
.promo-text h3 { font-size: 15px; margin-bottom: 3px; }
.promo-text p { font-size: 12px; color: var(--muted); }

.game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.game-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .1s; }
.game-card:active { transform: scale(.97); }
.game-thumb {
  position: relative; height: 110px;
  display: flex; align-items: center; justify-content: center; font-size: 44px;
}
.olympus-bg { background: radial-gradient(circle at 50% 30%, rgba(245,197,24,.4), rgba(123,92,255,.35)), #26203a; }
.tower-bg { background: radial-gradient(circle at 50% 30%, rgba(0,231,1,.25), rgba(46,51,70,.6)), #1e2a24; }
.dice-bg { background: radial-gradient(circle at 50% 30%, rgba(255,77,94,.3), rgba(46,51,70,.6)), #2a1f26; }
.soon-bg { background: var(--panel2); filter: grayscale(.6); }
.game-badge {
  position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 900;
  background: var(--red); color: #fff; padding: 3px 8px; border-radius: 6px; letter-spacing: 1px;
}
.badge-blue { background: #2d9cff; }
.game-name { font-weight: 800; font-size: 14px; padding: 10px 12px 2px; }
.game-sub { font-size: 11.5px; color: var(--muted); padding: 0 12px 12px; }
.game-soon { opacity: .55; pointer-events: auto; }

.mini-history { display: flex; flex-direction: column; gap: 6px; }
.mini-txn { display: flex; justify-content: space-between; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 12.5px; }
.mini-txn .t { color: var(--muted); }

/* ---------- game views ---------- */
.game-view { max-width: 520px; }
.game-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.game-title { font-size: 18px; font-weight: 800; }
.btn-back {
  width: 38px; height: 38px; border-radius: 12px; background: var(--panel2);
  color: var(--text); font-size: 20px; border: 1px solid var(--line);
}
.turbo-toggle span {
  font-size: 12px; font-weight: 800; color: var(--muted);
  border: 1px solid var(--line); background: var(--panel2);
  padding: 8px 12px; border-radius: 999px;
}
.turbo-toggle.on span { color: #1a1a1a; background: var(--gold); border-color: var(--gold); }

.bet-box { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 12px; margin-bottom: 12px; }
.bet-box label { font-size: 11.5px; color: var(--muted); font-weight: 700; display: block; margin-bottom: 8px; }
.bet-row { display: flex; gap: 8px; }
.bet-row input {
  flex: 1; text-align: center; font-size: 17px; font-weight: 800; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 10px; outline: none;
}
.bet-adj { width: 46px; border-radius: 10px; background: var(--panel2); color: var(--gold); font-weight: 900; font-size: 16px; border: 1px solid var(--line); }
.chip-row { display: flex; gap: 6px; margin-top: 8px; }
.chip {
  flex: 1; padding: 7px 0; font-size: 11.5px; font-weight: 700; border-radius: 8px;
  background: var(--panel2); color: var(--muted); border: 1px solid var(--line);
}
.chip:active { color: var(--gold); border-color: var(--gold); }
.btn-spin { width: 100%; font-size: 18px; letter-spacing: 2px; padding: 16px; }
.oly-payinfo { margin-top: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.oly-payinfo summary { cursor: pointer; font-weight: 800; color: var(--text); font-size: 12.5px; list-style: none; }
.oly-payinfo summary::before { content: "▸ "; }
.oly-payinfo[open] summary::before { content: "▾ "; }
.oly-payinfo > div { margin-top: 8px; }
.payinfo-title { font-weight: 800; color: var(--text); margin-bottom: 6px; font-size: 12.5px; }

/* layar lebar/pendek: grid lebih kompak biar SPIN tetap terlihat */
@media (min-width: 700px) {
  .olympus-grid { max-width: 430px; margin: 0 auto; }
  .olympus-stage { padding: 10px; }
  .content { padding-top: 10px; }
}

/* ---------- olympus ---------- */
.olympus-stage {
  position: relative; background: radial-gradient(600px 300px at 50% 0%, rgba(123,92,255,.28), transparent),
  linear-gradient(180deg, #241f38, #171a26); border: 1px solid var(--line);
  border-radius: 18px; padding: 12px; overflow: hidden;
}
.olympus-banner {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%) scale(0);
  z-index: 10; text-align: center; font-weight: 900; pointer-events: none;
  transition: transform .25s cubic-bezier(.2,1.6,.4,1);
}
.olympus-banner.show { transform: translate(-50%,-50%) scale(1); }
.olympus-banner .big { font-size: 26px; color: var(--gold); text-shadow: 0 2px 18px rgba(245,197,24,.65); }
.olympus-banner .small { font-size: 13px; color: #fff; opacity: .85; }
.olympus-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
}
.oly-cell {
  position: relative; aspect-ratio: 1; border-radius: 10px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center; font-size: clamp(16px, 5.2vw, 30px);
}
.oly-cell.win { background: rgba(245,197,24,.18); border-color: var(--gold); animation: pulseWin .5s infinite alternate; }
.oly-cell.drop { animation: dropIn .3s ease; }
@keyframes pulseWin { from { box-shadow: 0 0 0 0 rgba(245,197,24,.5); } to { box-shadow: 0 0 14px 2px rgba(245,197,24,.55); } }
@keyframes dropIn { from { transform: translateY(-14px); opacity: 0; } to { transform: none; opacity: 1; } }
.oly-mult {
  position: absolute; z-index: 5; font-size: clamp(9px, 2.6vw, 13px); font-weight: 900; color: #fff;
  background: linear-gradient(180deg, #a48cff, var(--purple)); border: 2px solid #c9b8ff;
  border-radius: 999px; padding: 2px 7px; animation: orbPop .3s cubic-bezier(.2,1.8,.4,1);
  box-shadow: 0 2px 10px rgba(123,92,255,.6);
}
@keyframes orbPop { from { transform: scale(0); } to { transform: scale(1); } }
.olympus-controls { margin-top: 12px; }
.olympus-controls .free-mode .btn-spin { background: linear-gradient(180deg, #b28bff, var(--purple)); color: #fff; }

/* ---------- tower ---------- */
.diff-row { display: flex; gap: 8px; margin-bottom: 12px; }
.diff-btn {
  flex: 1; padding: 12px 4px; border-radius: 12px; font-size: 13.5px; font-weight: 800;
  background: var(--panel); color: var(--text); border: 1.5px solid var(--line); line-height: 1.35;
}
.diff-btn small { font-weight: 600; color: var(--muted); font-size: 10.5px; }
.diff-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(245,197,24,.08); }
.tower-board { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 12px; }
.tower-topbar { display: flex; justify-content: space-between; margin-bottom: 12px; }
.tower-info { text-align: center; flex: 1; }
.tower-info small { display: block; color: var(--muted); font-size: 10.5px; }
.tower-info b { font-size: 15px; }
#tower-rows { display: flex; flex-direction: column; gap: 7px; }
.tower-row { display: flex; gap: 7px; }
.tower-row.done { opacity: .45; }
.tower-row.active .tower-tile { border-color: var(--gold); box-shadow: 0 0 12px rgba(245,197,24,.18); }
.tower-row.locked { pointer-events: none; }
.tower-tile {
  flex: 1; height: 44px; border-radius: 10px; font-size: 21px;
  background: var(--panel2); border: 1.5px solid var(--line); color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.tower-tile.safe-pick { background: rgba(0,231,1,.14); border-color: var(--green); }
.tower-tile.boom-pick { background: rgba(255,77,94,.16); border-color: var(--red); }
.tower-tile.reveal-trap { opacity: .9; }
.tower-actions { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
#tower-cashout-val { display: block; font-size: 12px; font-weight: 700; opacity: .85; }

/* ---------- dice ---------- */
.dice-result-display {
  text-align: center; font-size: 52px; font-weight: 900; padding: 18px 0 10px;
  font-variant-numeric: tabular-nums;
}
.dice-result-display.win { color: var(--green); }
.dice-result-display.lose { color: var(--red); }
.dice-panel { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.dice-track { position: relative; height: 34px; border-radius: 999px; background: linear-gradient(90deg, var(--red), #b33); overflow: hidden; border: 1px solid var(--line); }
.dice-zone { position: absolute; top: 0; bottom: 0; background: linear-gradient(90deg, var(--green), #0a3); }
.dice-marker {
  position: absolute; top: 50%; transform: translate(-50%,-50%); z-index: 5;
  color: #fff; font-size: 15px; text-shadow: 0 1px 4px rgba(0,0,0,.7); transition: left .12s;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.8));
}
.dice-toggle { display: flex; gap: 8px; margin: 14px 0; }
.dice-mode {
  flex: 1; padding: 11px; border-radius: 10px; font-weight: 800; font-size: 13.5px;
  background: var(--panel2); color: var(--muted); border: 1.5px solid var(--line);
}
.dice-mode.active { color: var(--green); border-color: var(--green); background: rgba(0,231,1,.07); }
.dice-stats { display: flex; justify-content: space-between; text-align: center; margin-bottom: 12px; }
.dice-stats small { display: block; color: var(--muted); font-size: 11px; }
.dice-stats b { font-size: 16px; }
input[type=range] { width: 100%; accent-color: var(--gold); margin-bottom: 14px; }

/* ---------- topup ---------- */
.topup-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.method-card {
  display: flex; align-items: center; gap: 10px; padding: 14px;
  background: var(--panel); border: 1.5px solid var(--line); border-radius: 14px; font-weight: 700; font-size: 13.5px;
}
.method-card.active { border-color: var(--gold); background: rgba(245,197,24,.07); }
.topup-amounts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.amount-card {
  position: relative; text-align: center; padding: 15px 8px;
  background: var(--panel); border: 1.5px solid var(--line); border-radius: 14px;
}
.amount-card b { font-size: 15.5px; display: block; }
.amount-card.active { border-color: var(--gold); background: rgba(245,197,24,.07); }
.amount-bonus {
  position: absolute; top: -9px; right: 8px; font-size: 10px; font-weight: 900;
  background: var(--green); color: #052b05; border-radius: 999px; padding: 2px 8px;
}
.topup-summary {
  background: var(--panel); border: 1px dashed var(--line); border-radius: 12px;
  padding: 12px; font-size: 13px; color: var(--muted); margin-bottom: 12px; text-align: center;
}
.topup-summary b { color: var(--gold); }
.topup-success { text-align: center; padding: 26px 0 6px; }
.success-icon { font-size: 54px; animation: orbPop .4s cubic-bezier(.2,1.8,.4,1); }
.topup-success h3 { margin: 8px 0 4px; }
.topup-success p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }

/* ---------- history ---------- */
.history-list { display: flex; flex-direction: column; gap: 8px; }
.txn-row { display: flex; align-items: center; gap: 12px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.txn-icon { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.txn-main { flex: 1; min-width: 0; }
.txn-main b { display: block; font-size: 13.5px; }
.txn-main small { color: var(--muted); font-size: 11px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.txn-amt { font-weight: 800; font-size: 14px; text-align: right; white-space: nowrap; }
.txn-amt small { display: block; color: var(--muted); font-weight: 500; font-size: 10.5px; }
.amt-plus { color: var(--green); }
.amt-minus { color: var(--red); }

/* ---------- profile ---------- */
.profile-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 24px; text-align: center; }
.profile-avatar {
  width: 72px; height: 72px; margin: 0 auto 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 900; color: #fff;
}
.profile-since { color: var(--muted); font-size: 12px; margin-bottom: 16px; }
.profile-balance { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 12px; margin-bottom: 12px; }
.profile-balance small { display: block; color: var(--muted); font-size: 11px; }
.profile-balance b { font-size: 21px; color: var(--gold); }
.profile-stats { display: flex; gap: 10px; margin-bottom: 16px; }
.profile-stats > div { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.profile-stats small { display: block; font-size: 16px; font-weight: 800; }
.profile-stats span { font-size: 11px; color: var(--muted); }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #2c3040; color: var(--text); border: 1px solid var(--line);
  padding: 11px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: all .25s; z-index: 99; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { border-color: var(--red); color: #ffb3ba; }
.toast.ok { border-color: var(--green); color: #b3ffd4; }

/* ============ OLYMPUS v2 — Pragmatic-style symbols ============ */
.olympus-stage {
  background: radial-gradient(700px 350px at 50% -10%, rgba(123,92,255,.35), transparent),
              radial-gradient(500px 250px at 100% 110%, rgba(245,197,24,.15), transparent),
              linear-gradient(180deg, #1d1730, #14161f);
  border: 1px solid #3a2f5e;
  box-shadow: inset 0 0 40px rgba(0,0,0,.4), 0 6px 24px rgba(0,0,0,.35);
}

/* grid layout dengan gap lebih rapat */
.olympus-grid { grid-template-columns: repeat(6, 1fr); gap: 5px; }
.olympus-grid.settle { animation: gridSettle .35s cubic-bezier(.2,1.4,.4,1); }
@keyframes gridSettle { from { transform: scale(.985); } to { transform: none; } }

/* sel dasar: beri kedalaman */
.oly-cell {
  position: relative; aspect-ratio: 1; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(15px, 4.6vw, 26px);
  border: 1.5px solid rgba(255,255,255,.08);
  box-shadow: inset 0 2px 5px rgba(255,255,255,.07), 0 2px 6px rgba(0,0,0,.4);
  overflow: visible;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  transition: transform .15s, box-shadow .2s;
}
.oly-cell.drop { animation: symDrop .38s cubic-bezier(.2,1.5,.4,1); }
@keyframes symDrop { from { transform: translateY(-22px) scale(.7); opacity: 0; } to { transform: none; opacity: 1; } }

/* simbol ikon di dalam sel */
.oly-sym-icon { display: inline-flex; filter: drop-shadow(0 2px 3px rgba(0,0,0,.5)); font-size: 1em; line-height: 1; }

/* warna per simbol — gaya gem Pragmatic */
.oly-cell.crown { background: linear-gradient(150deg, #ffe9a8, #f5c518 45%, #a67c00); border-color: #ffdf6e; }
.oly-cell.gem   { background: linear-gradient(150deg, #b9f7ff, #4fd8f0 45%, #0e7f96); border-color: #9df0ff; }
.oly-cell.hour  { background: linear-gradient(150deg, #ffd3a0, #ff9f43 45%, #b05e0e); border-color: #ffc68f; }
.oly-cell.ring  { background: linear-gradient(150deg, #e8e8ff, #9aa3ff 45%, #4a52c9); border-color: #c9ccff; }
.oly-cell.cup   { background: linear-gradient(150deg, #d6ffe3, #5ee08a 45%, #1d8a4a); border-color: #a8ffc6; }
.oly-cell.red-g { background: linear-gradient(150deg, #ffd0d0, #ff4d5e 50%, #9c1220); border-color: #ff9aa4; }
.oly-cell.purple-g { background: linear-gradient(150deg, #e4d8ff, #a06bff 50%, #5a2ab0); border-color: #cdb0ff; }
.oly-cell.yellow-g { background: linear-gradient(150deg, #fff3c4, #ffd23d 50%, #b08a00); border-color: #ffe9a0; }
.oly-cell.green-g { background: linear-gradient(150deg, #d2ffe0, #3ddc7e 50%, #0d8a44); border-color: #a2ffc8; }
.oly-cell.blue-g { background: linear-gradient(150deg, #d4eaff, #4d9df0 50%, #1d4a9c); border-color: #a8ccff; }

/* scatter Zeus */
.oly-cell.scatter {
  background: radial-gradient(circle at 50% 35%, rgba(255,223,110,.85), rgba(255,255,255,.35) 40%, transparent 70%),
              radial-gradient(circle at 50% 50%, rgba(123,92,255,.9), #3d2a8f 70%);
  border: 2px solid #ffdf6e;
  box-shadow: 0 0 18px rgba(245,197,24,.45), inset 0 0 14px rgba(255,223,110,.35);
  animation: scatterPulse 1.4s ease-in-out infinite alternate;
}
@keyframes scatterPulse { from { box-shadow: 0 0 10px rgba(245,197,24,.35), inset 0 0 10px rgba(255,223,110,.25); } to { box-shadow: 0 0 26px rgba(245,197,24,.65), inset 0 0 18px rgba(255,223,110,.5); } }
.oly-scatter-icon { font-size: 1.25em; filter: drop-shadow(0 0 8px rgba(255,223,110,.9)); }
.oly-scatter-glow { position: absolute; inset: -4px; border-radius: 14px; border: 1px solid rgba(255,223,110,.4); animation: scatterRing 1.6s ease-in-out infinite; }
@keyframes scatterRing { 0%,100% { transform: scale(.92); opacity: .3; } 50% { transform: scale(1.08); opacity: .8; } }

/* sel kosong (tumble) */
.oly-cell.empty { background: transparent; border-color: transparent; box-shadow: none; visibility: hidden; }

/* sel menang: glow emas */
.oly-cell.win {
  border-color: var(--gold) !important;
  box-shadow: 0 0 18px rgba(245,197,24,.6), inset 0 0 12px rgba(245,197,24,.3) !important;
  animation: pulseWin .5s ease-in-out infinite alternate;
}
@keyframes pulseWin { from { transform: scale(1); } to { transform: scale(1.12); } }

/* sel dihapus (tumble explode) */
.oly-cell.removing { animation: symRemove .35s forwards; }
@keyframes symRemove {
  0% { transform: scale(1); opacity: 1; }
  60% { transform: scale(1.25) rotate(8deg); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

/* orb multiplier — badge melayang */
.oly-orb-badge {
  position: absolute; z-index: 6; top: 0; right: 0;
  min-width: 26px; height: 26px; padding: 2px 6px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, #d9c8ff, #7b5cff 60%, #4a2f9e);
  border: 1.5px solid #e4d8ff;
  color: #fff; font-size: 11px; font-weight: 900;
  box-shadow: 0 0 12px rgba(123,92,255,.8), 0 2px 6px rgba(0,0,0,.5);
  opacity: 0; transform: scale(0);
  transition: transform .3s cubic-bezier(.2,1.8,.4,1), opacity .2s;
  animation: orbFloat 1.2s ease-in-out infinite alternate;
}
.oly-orb-badge.show { opacity: 1; transform: scale(1); }
.orb-glow { position: absolute; inset: -4px; border-radius: 999px; border: 1px solid rgba(200,180,255,.5); animation: orbRing 1.2s ease-in-out infinite; }
@keyframes orbFloat { from { margin-top: 0; } to { margin-top: -4px; } }
@keyframes orbRing { 0%,100% { transform: scale(.85); opacity: .4; } 50% { transform: scale(1.15); opacity: .9; } }

/* banner win */
.olympus-banner { background: rgba(10,8,20,.65); border-radius: 16px; padding: 14px 26px; backdrop-filter: blur(4px); border: 1px solid rgba(245,197,24,.35); }
.olympus-banner .big { font-size: 30px; color: var(--gold2); text-shadow: 0 0 26px rgba(245,197,24,.8); }

/* payinfo renamed infobox */
.infobox { margin-top: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.infobox summary { cursor: pointer; font-weight: 800; color: var(--text); font-size: 12.5px; list-style: none; }
.infobox summary::before { content: "▸ "; }
.infobox[open] summary::before { content: "▾ "; }
.infobox > div { margin-top: 8px; }
.infobox b { color: var(--gold); }

/* ============ TOPUP MANUAL ============ */
.pi-box {
  background: linear-gradient(160deg, var(--panel2), var(--panel));
  border: 1px solid var(--gold);
  border-radius: 16px; padding: 20px 16px; text-align: center;
  box-shadow: 0 4px 20px rgba(245,197,24,.12);
}
.pi-icon { font-size: 40px; }
.pi-title { font-size: 17px; font-weight: 900; margin: 6px 0 10px; color: var(--gold); }
.pi-method, .pi-amount { font-size: 14px; color: var(--muted); margin: 3px 0; }
.pi-method b, .pi-amount b { color: var(--text); }
.pi-info {
  margin: 12px 0; padding: 12px; border-radius: 10px;
  background: var(--bg); border: 1px dashed var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--gold2);
  word-break: break-word;
}
.pi-note { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.pi-status {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 800;
}
.pi-status.pending { background: rgba(245,197,24,.15); color: var(--gold); border: 1px solid rgba(245,197,24,.4); }

/* ============ ADMIN PANEL ============ */
.admin-pin-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 20px; text-align: center; margin-top: 20px;
}
.admin-pin-icon { font-size: 44px; margin-bottom: 8px; }
.admin-pin-card p { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 12px; }
.admin-header h3 { font-size: 15px; }
.admin-request-list { display: flex; flex-direction: column; gap: 10px; }
.admin-request { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.admin-req-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.admin-req-user { font-weight: 800; font-size: 14.5px; }
.admin-req-mid { color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.admin-req-actions { display: flex; gap: 8px; }
.admin-req-actions .btn { flex: 1; }

/* ============ TOPUP / WITHDRAW TABS ============ */
.topup-tabs {
  display: flex;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 16px;
}
.topup-tab {
  flex: 1;
  padding: 11px;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: all .15s;
}
.topup-tab.active {
  background: var(--panel2);
  color: var(--gold);
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
