/* =============================================
   Enpai-Dev — Global CSS (Night Blue Theme)
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #04071a;
  --bg-secondary: #070d2a;
  --bg-card: #0d1640;
  --bg-card-hover: #111c4e;
  --accent-blue: #4f8ef7;
  --accent-blue-glow: rgba(79,142,247,0.4);
  --accent-cyan: #00d4ff;
  --accent-gold: #ffd700;
  --accent-gold-glow: rgba(255,215,0,0.4);
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --text-primary: #e8eeff;
  --text-secondary: #7a90c8;
  --text-muted: #4a5a8a;
  --border-subtle: rgba(79,142,247,0.12);
  --border-glow: rgba(79,142,247,0.35);
  --gradient-accent: linear-gradient(135deg, #4f8ef7 0%, #8b5cf6 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #ffd700 50%, #f59e0b 100%);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(79,142,247,0.1) inset;
  --shadow-glow-blue: 0 0 20px rgba(79,142,247,0.3);
  --shadow-glow-gold: 0 0 30px rgba(255,215,0,0.5);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(79,142,247,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139,92,246,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.15), transparent),
    radial-gradient(1px 1px at 45% 10%, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 75% 55%, rgba(255,255,255,0.12), transparent),
    radial-gradient(1px 1px at 8%  75%, rgba(255,255,255,0.08), transparent),
    radial-gradient(1px 1px at 88% 18%, rgba(255,255,255,0.1), transparent),
    radial-gradient(2px 2px at 32% 62%, rgba(79,142,247,0.2), transparent),
    radial-gradient(2px 2px at 72% 38%, rgba(139,92,246,0.15), transparent),
    radial-gradient(1px 1px at 58% 82%, rgba(0,212,255,0.12), transparent);
  pointer-events: none;
  z-index: 0;
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%   { opacity: .6; }
  100% { opacity: 1; }
}

/* ── Layout ── */
#app { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }
.main-content { flex: 1; padding-top: 72px; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  background: rgba(4,7,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.navbar-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; gap: 20px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.navbar-logo-icon { width: 36px; height: 36px; background: var(--gradient-accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-glow-blue); }
.navbar-logo-text { font-size: 20px; font-weight: 800; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.navbar-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-sm); text-decoration: none; color: var(--text-secondary); font-size: 14px; font-weight: 500; transition: all .15s ease; border: 1px solid transparent; }
.nav-link:hover { color: var(--text-primary); background: rgba(79,142,247,0.08); border-color: var(--border-subtle); }
.nav-link.active { color: var(--accent-blue); background: rgba(79,142,247,0.12); border-color: rgba(79,142,247,0.2); }
.nav-link.soon { opacity: .5; pointer-events: none; cursor: default; }
.nav-badge { font-size: 10px; padding: 2px 6px; border-radius: var(--radius-full); background: var(--accent-purple); color: #fff; font-weight: 600; }
.navbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.coin-display { display: flex; align-items: center; gap: 6px; padding: 7px 14px; background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.22); border-radius: var(--radius-full); font-size: 14px; font-weight: 700; color: var(--accent-gold); }
.nav-username { font-size: 13px; color: var(--text-secondary); max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  font-family: 'Outfit', sans-serif; border: none; cursor: pointer; transition: all .15s ease;
  text-decoration: none; white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent); pointer-events: none; }
.btn-primary { background: var(--gradient-accent); color: #fff; box-shadow: 0 4px 15px rgba(79,142,247,0.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,142,247,0.45); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-glow); background: rgba(79,142,247,0.08); }
.btn-gold { background: var(--gradient-gold); color: #1a1000; font-weight: 800; box-shadow: 0 4px 15px rgba(255,215,0,0.25); }
.btn-gold:hover:not(:disabled) { transform: translateY(-1px); box-shadow: var(--shadow-glow-gold); }
.btn-gold:disabled { opacity: .5; cursor: not-allowed; }
.btn-danger { background: rgba(239,68,68,0.15); color: var(--accent-red); border: 1px solid rgba(239,68,68,0.3); }
.btn-danger:hover { background: rgba(239,68,68,0.25); }
.btn-success { background: rgba(16,185,129,0.15); color: var(--accent-green); border: 1px solid rgba(16,185,129,0.3); }
.btn-success:hover { background: rgba(16,185,129,0.25); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.w-full { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Cards ── */
.card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.card-glow { box-shadow: var(--shadow-card), var(--shadow-glow-blue); border-color: var(--border-glow); }
.card-header { padding: 18px 22px; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-title { font-size: 15px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.card-body { padding: 20px; }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-input {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14px;
  font-family: 'Outfit', sans-serif; color: var(--text-primary); outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(79,142,247,0.15); }
.form-input::placeholder { color: var(--text-muted); }
.form-error { margin-top: 6px; font-size: 12px; color: var(--accent-red); display: none; }
.form-error.show { display: block; }
.form-hint { margin-top: 6px; font-size: 12px; color: var(--text-muted); }

/* ── Auth Pages ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-card { width: 100%; max-width: 420px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-card), var(--shadow-glow-blue); }
.auth-logo { text-align: center; margin-bottom: 30px; }
.auth-logo-icon { width: 60px; height: 60px; background: var(--gradient-accent); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 12px; box-shadow: var(--shadow-glow-blue); }
.auth-logo h1 { font-size: 26px; font-weight: 800; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-logo p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.auth-footer { text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-muted); }
.auth-footer a { color: var(--accent-blue); text-decoration: none; font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }
.auth-divider { text-align: center; margin: 18px 0; position: relative; color: var(--text-muted); font-size: 12px; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border-subtle); }
.auth-divider span { position: relative; background: var(--bg-card); padding: 0 12px; }
.global-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--accent-red); font-size: 13px; margin-bottom: 16px; display: none; }
.global-error.show { display: block; }
.global-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--accent-green); font-size: 13px; margin-bottom: 16px; display: none; }
.global-success.show { display: block; }

/* ── Age Gate ── */
.age-gate {
  position: fixed; inset: 0; background: rgba(4,7,26,0.97);
  backdrop-filter: blur(20px); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.age-gate-card { max-width: 460px; width: 100%; text-align: center; background: var(--bg-card); border: 1px solid var(--border-glow); border-radius: var(--radius-xl); padding: 48px 40px; box-shadow: var(--shadow-card), var(--shadow-glow-blue); }
.age-gate-icon { font-size: 56px; margin-bottom: 20px; display: block; }
.age-gate-card h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.age-gate-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.age-gate-buttons { display: flex; gap: 12px; }
.age-gate-warning { font-size: 11px; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }

/* ── Hero / Lobby ── */
.hero { padding: 56px 0 32px; text-align: center; }
.hero h1 { font-size: clamp(32px,5vw,60px); font-weight: 900; line-height: 1.1; margin-bottom: 14px; letter-spacing: -1px; }
.hero-gradient { background: linear-gradient(135deg,var(--accent-cyan),var(--accent-blue),var(--accent-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 17px; color: var(--text-secondary); max-width: 480px; margin: 0 auto 28px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(210px,1fr)); gap: 18px; padding: 20px 0 40px; }
.game-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px 18px; text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 12px; cursor: pointer; transition: all .25s ease; position: relative; overflow: hidden; }
.game-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-accent); opacity: 0; transition: opacity .25s ease; }
.game-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: var(--shadow-card), var(--shadow-glow-blue); }
.game-card:hover::before { opacity: 1; }
.game-card.disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
.game-icon { font-size: 50px; line-height: 1; filter: drop-shadow(0 4px 12px rgba(79,142,247,0.3)); transition: transform .25s ease; }
.game-card:hover .game-icon { transform: scale(1.1) rotate(-3deg); }
.game-name { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.game-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
.game-status { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-full); }
.status-live { background: rgba(16,185,129,0.15); color: var(--accent-green); border: 1px solid rgba(16,185,129,0.3); }
.status-soon { background: rgba(139,92,246,0.15); color: var(--accent-purple); border: 1px solid rgba(139,92,246,0.3); }

/* ── Slot Machine ── */
.slot-page { display: grid; grid-template-columns: 1fr 340px; gap: 22px; padding: 28px 0; align-items: start; }
.slot-left { display: flex; flex-direction: column; gap: 20px; }
.slot-machine { background: linear-gradient(145deg,#0d1640,#080f30); border: 2px solid rgba(79,142,247,0.25); border-radius: 24px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(79,142,247,0.1), inset 0 1px 0 rgba(79,142,247,0.15); position: relative; overflow: hidden; max-width: 460px; margin: 0 auto; }
.slot-machine::before { content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 2px; background: var(--gradient-accent); border-radius: 0 0 4px 4px; opacity: .7; }
.slot-title { text-align: center; margin-bottom: 24px; }
.slot-title h1 { font-size: 26px; font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.slot-title p { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.reel-container { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 0 auto 20px auto; padding: 12px; background: rgba(0,0,0,0.3); border-radius: var(--radius-lg); border: 1px solid rgba(79,142,247,0.1); max-width: 320px; }
.reel-container.win-flash { animation: winFlash .5s ease-in-out 3; }
@keyframes winFlash { 0%,100%{box-shadow:none;border-color:rgba(79,142,247,0.1)} 50%{box-shadow:0 0 40px rgba(255,215,0,0.5);border-color:rgba(255,215,0,0.6)} }
.reel { aspect-ratio: 1; background: linear-gradient(145deg,#040b24,#080e28); border-radius: var(--radius-md); border: 1px solid rgba(79,142,247,0.15); display: flex; align-items: center; justify-content: center; font-size: 42px; position: relative; overflow: hidden; box-shadow: inset 0 2px 8px rgba(0,0,0,0.4); transition: border-color .25s, box-shadow .25s; user-select: none; }
.reel.spinning { animation: reelBounce .12s linear infinite; }
.reel.win-cell { border-color: var(--accent-gold) !important; animation: winPulse 1s ease-in-out infinite; }
@keyframes winPulse { 0%,100%{box-shadow:inset 0 2px 8px rgba(0,0,0,0.4),0 0 15px rgba(255,215,0,0.3)} 50%{box-shadow:inset 0 2px 8px rgba(0,0,0,0.4),0 0 30px rgba(255,215,0,0.6)} }
@keyframes reelBounce { 0%{transform:translateY(0) scale(1)} 25%{transform:translateY(-6px) scale(0.95)} 75%{transform:translateY(6px) scale(0.95)} 100%{transform:translateY(0) scale(1)} }
.reel-symbol { transition: transform .15s ease; line-height: 1; }
.reel.spinning .reel-symbol { animation: symbolFlip .1s linear infinite; }
@keyframes symbolFlip { 0%{opacity:1;transform:scaleY(1)} 49%{opacity:0;transform:scaleY(0)} 50%{opacity:0;transform:scaleY(0)} 100%{opacity:1;transform:scaleY(1)} }
.bet-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.bet-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.bet-btn { flex: 1; min-width: 56px; padding: 8px 4px; background: rgba(79,142,247,0.08); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 13px; font-weight: 600; font-family: 'Outfit',sans-serif; cursor: pointer; transition: all .15s ease; text-align: center; }
.bet-btn:hover { border-color: var(--border-glow); color: var(--text-primary); background: rgba(79,142,247,0.15); }
.bet-btn.selected { background: rgba(79,142,247,0.2); border-color: var(--accent-blue); color: var(--accent-blue); box-shadow: 0 0 12px rgba(79,142,247,0.2); }
.spin-btn { width: 100%; padding: 16px; font-size: 18px; font-weight: 900; letter-spacing: 1px; border-radius: var(--radius-md); text-transform: uppercase; position: relative; overflow: hidden; }
.spin-btn::after { content: ''; position: absolute; top:-50%; left:-100%; width:60%; height:200%; background: linear-gradient(to right,transparent,rgba(255,255,255,0.1),transparent); transform: skewX(-20deg); transition: left .5s ease; }
.spin-btn:not(:disabled):hover::after { left: 150%; }
.result-display { text-align: center; padding: 14px; border-radius: var(--radius-md); min-height: 60px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 18px; font-weight: 800; transition: all .25s ease; margin-top: 16px; }
.result-win { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: var(--accent-green); animation: resultPop .3s cubic-bezier(0.34,1.56,0.64,1); }
.result-loss { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.15); color: var(--text-muted); font-size: 14px; }
.result-idle { background: rgba(79,142,247,0.04); border: 1px dashed var(--border-subtle); color: var(--text-muted); font-size: 13px; }
@keyframes resultPop { 0%{transform:scale(0.88);opacity:0} 100%{transform:scale(1);opacity:1} }
.slot-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 16px; }
.stat-box { background: rgba(0,0,0,0.2); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 10px; text-align: center; }
.stat-value { font-size: 17px; font-weight: 800; color: var(--text-primary); }
.stat-value.up { color: var(--accent-green); }
.stat-value.down { color: var(--accent-red); }
.stat-label { font-size: 10px; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: .4px; }
.payout-table { width: 100%; border-collapse: collapse; }
.payout-table th { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; padding: 7px 10px; text-align: left; border-bottom: 1px solid var(--border-subtle); }
.payout-table td { padding: 8px 10px; font-size: 13px; border-bottom: 1px solid rgba(79,142,247,0.04); }
.payout-table tr:last-child td { border-bottom: none; }
.payout-mult { font-weight: 700; color: var(--accent-gold); }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }

/* ── Active Users ── */
.active-users-list { display: flex; flex-direction: column; gap: 6px; max-height: 190px; overflow-y: auto; }
.user-item { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: var(--radius-sm); background: rgba(0,0,0,0.12); transition: background .15s; }
.user-item:hover { background: rgba(79,142,247,0.06); }
.user-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; border: 1px solid rgba(79,142,247,0.2); }
.user-name { font-size: 13px; font-weight: 500; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-green); flex-shrink: 0; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.4)} 50%{box-shadow:0 0 0 4px rgba(16,185,129,0)} }
.online-count { display: flex; align-items: center; gap: 6px; padding: 5px 10px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: var(--radius-full); font-size: 12px; font-weight: 600; color: var(--accent-green); }

/* ── Chat ── */
.chat-panel { display: flex; flex-direction: column; height: 370px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border-glow); border-radius: 2px; }
.chat-message { display: flex; flex-direction: column; gap: 2px; animation: msgSlide .2s ease; }
@keyframes msgSlide { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.chat-message.own .chat-bubble { background: rgba(79,142,247,0.14); border-color: rgba(79,142,247,0.2); }
.chat-meta { display: flex; align-items: center; gap: 6px; }
.chat-username { font-size: 11px; font-weight: 700; color: var(--accent-blue); }
.chat-username.is-admin { color: var(--accent-gold); }
.chat-time { font-size: 10px; color: var(--text-muted); }
.chat-bubble { background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle); border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm); padding: 7px 11px; font-size: 13px; color: var(--text-primary); line-height: 1.5; word-break: break-word; }
.chat-system-msg { text-align: center; font-size: 11px; color: var(--text-muted); font-style: italic; padding: 3px 0; }
.chat-input-row { padding: 10px; border-top: 1px solid var(--border-subtle); display: flex; gap: 8px; }
.chat-input { flex: 1; background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 8px 11px; font-size: 13px; font-family: 'Outfit',sans-serif; color: var(--text-primary); outline: none; transition: border-color .15s; }
.chat-input:focus { border-color: var(--border-glow); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-input:disabled { opacity: .45; cursor: not-allowed; }
.muted-notice { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 10px; background: rgba(239,68,68,0.1); border-top: 1px solid rgba(239,68,68,0.2); color: var(--accent-red); font-size: 12px; font-weight: 600; }

/* ── Admin Panel ── */
.admin-page { padding: 28px 0; }
.admin-header { margin-bottom: 28px; }
.admin-header h1 { font-size: 30px; font-weight: 900; background: linear-gradient(135deg,var(--accent-gold),var(--accent-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.admin-header p { color: var(--text-muted); margin-top: 4px; font-size: 13px; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 18px; }
.stat-card-value { font-size: 26px; font-weight: 800; color: var(--text-primary); }
.stat-card-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-section-title { font-size: 14px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { text-align: left; padding: 9px 10px; font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border-subtle); white-space: nowrap; }
.admin-table td { padding: 10px; border-bottom: 1px solid rgba(79,142,247,0.04); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(79,142,247,0.03); }
.role-badge { padding: 2px 8px; border-radius: var(--radius-full); font-size: 10px; font-weight: 700; }
.role-admin { background: rgba(255,215,0,0.15); color: var(--accent-gold); border: 1px solid rgba(255,215,0,0.3); }
.role-user { background: rgba(79,142,247,0.1); color: var(--accent-blue); border: 1px solid rgba(79,142,247,0.2); }
.tag-muted { display: inline-block; padding: 1px 6px; border-radius: var(--radius-full); font-size: 10px; font-weight: 600; background: rgba(239,68,68,0.15); color: var(--accent-red); border: 1px solid rgba(239,68,68,0.3); margin-top: 2px; }
.tag-disabled { display: inline-block; padding: 1px 6px; border-radius: var(--radius-full); font-size: 10px; font-weight: 600; background: rgba(100,100,100,0.15); color: #888; border: 1px solid rgba(100,100,100,0.3); margin-top: 2px; }
.action-row { display: flex; gap: 5px; flex-wrap: wrap; }
.search-bar { background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 9px 14px; font-size: 13px; font-family: 'Outfit',sans-serif; color: var(--text-primary); outline: none; transition: border-color .15s; width: 100%; max-width: 280px; margin-bottom: 14px; }
.search-bar:focus { border-color: var(--border-glow); }
.search-bar::placeholder { color: var(--text-muted); }

/* ── Modal ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(4px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; animation: fadeIn .15s ease; }
.modal-overlay.hidden { display: none; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal { background: var(--bg-card); border: 1px solid var(--border-glow); border-radius: var(--radius-xl); padding: 30px; max-width: 420px; width: 100%; box-shadow: 0 25px 50px rgba(0,0,0,0.7), var(--shadow-glow-blue); animation: modalPop .2s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes modalPop { from{transform:scale(0.95);opacity:0} to{transform:scale(1);opacity:1} }
.modal-title { font-size: 18px; font-weight: 800; margin-bottom: 18px; color: var(--text-primary); }
.modal-subtitle { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.modal-actions { display: flex; gap: 10px; margin-top: 22px; justify-content: flex-end; }

/* ── Toast ── */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { padding: 13px 18px; border-radius: var(--radius-md); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 9px; pointer-events: all; animation: toastSlide .3s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 8px 25px rgba(0,0,0,0.4); max-width: 290px; }
@keyframes toastSlide { from{transform:translateX(100px);opacity:0} to{transform:translateX(0);opacity:1} }
.toast-success { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--accent-green); }
.toast-error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: var(--accent-red); }
.toast-info { background: rgba(79,142,247,0.15); border: 1px solid rgba(79,142,247,0.3); color: var(--accent-blue); }

/* ── Verification Prompt ── */
.verify-prompt { background: rgba(255,215,0,0.07); border: 1px solid rgba(255,215,0,0.25); border-radius: var(--radius-md); padding: 16px 18px; color: var(--accent-gold); font-size: 13px; line-height: 1.6; display: none; }
.verify-prompt.show { display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(79,142,247,0.28); border-radius: 3px; }

/* ── Utilities ── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.gap-2 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ── Footer ── */
.site-footer { text-align: center; padding: 28px 0 36px; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-subtle); margin-top: 40px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .slot-page { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .sidebar { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .age-gate-buttons { flex-direction: column; }
}
@media (max-width: 480px) {
  .auth-card { padding: 28px 20px; }
  .reel { font-size: 30px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 14px; }
}

/* ── Snowflakes ── */
.snowflakes {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 50; overflow: hidden;
}
.snowflake {
  position: absolute; top: -10px;
  color: #fff; font-size: 1.2em; font-family: Arial, sans-serif;
  text-shadow: 0 0 5px rgba(255,255,255,0.8);
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}
.snowflake:nth-of-type(1) { left: 5%; animation-delay: 0s, 0s; }
.snowflake:nth-of-type(2) { left: 15%; animation-delay: 1s, 1s; }
.snowflake:nth-of-type(3) { left: 25%; animation-delay: 4s, 0.5s; font-size: 1.5em; }
.snowflake:nth-of-type(4) { left: 35%; animation-delay: 2s, 2s; }
.snowflake:nth-of-type(5) { left: 45%; animation-delay: 8s, 3s; }
.snowflake:nth-of-type(6) { left: 55%; animation-delay: 6s, 2s; font-size: 1.4em; }
.snowflake:nth-of-type(7) { left: 65%; animation-delay: 2.5s, 1s; }
.snowflake:nth-of-type(8) { left: 75%; animation-delay: 1s, 0s; }
.snowflake:nth-of-type(9) { left: 85%; animation-delay: 3s, 1.5s; font-size: 1.3em; }
.snowflake:nth-of-type(10) { left: 95%; animation-delay: 5s, 2.5s; }
.snowflake:nth-of-type(11) { left: 10%; animation-delay: 3s, 0.5s; font-size: 0.9em; }
.snowflake:nth-of-type(12) { left: 30%; animation-delay: 7s, 2.5s; }
.snowflake:nth-of-type(13) { left: 50%; animation-delay: 2s, 1.5s; font-size: 1.1em; }
.snowflake:nth-of-type(14) { left: 70%; animation-delay: 9s, 0.5s; }
.snowflake:nth-of-type(15) { left: 90%; animation-delay: 4s, 2s; font-size: 1.6em; }
.snowflake:nth-of-type(16) { left: 20%; animation-delay: 6.5s, 1.2s; }
.snowflake:nth-of-type(17) { left: 40%; animation-delay: 1.5s, 0.8s; font-size: 0.8em; }
.snowflake:nth-of-type(18) { left: 60%; animation-delay: 8.5s, 1.8s; }
.snowflake:nth-of-type(19) { left: 80%; animation-delay: 0.5s, 2.8s; font-size: 1.2em; }
.snowflake:nth-of-type(20) { left: 100%; animation-delay: 5.5s, 0.2s; }

@keyframes snowflakes-fall {
  0% { top: -10% }
  100% { top: 100% }
}
@keyframes snowflakes-shake {
  0%, 100% { transform: translateX(0) }
  50% { transform: translateX(80px) }
}

/* ── Şeker Patlatmaca ── */
.seker-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: rgba(0,0,0,0.4);
  border-radius: 16px;
  padding: 12px;
  margin: 0 auto;
  max-width: 400px;
  aspect-ratio: 6/5;
  border: 1px solid rgba(255,255,255,0.05);
}

.seker-container.shake {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

.seker-cell {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.6), 0 0 10px rgba(79, 142, 247, 0.05);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  user-select: none;
  animation: cellSpawn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes cellSpawn {
  0% { transform: scale(0.4) translateY(-30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.seker-cell.empty {
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: scale(0.5);
}

.seker-cell.popping {
  animation: popOut 0.45s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
  z-index: 10;
}

@keyframes popOut {
  0% { transform: scale(1) rotate(0deg); opacity: 1; filter: brightness(1); }
  40% { transform: scale(1.35) rotate(15deg); opacity: 0.9; filter: brightness(1.8) drop-shadow(0 0 15px currentColor); }
  100% { transform: scale(0) rotate(-45deg); opacity: 0; filter: brightness(2); }
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

/* Ekstra Kazanç Efektleri */
.result-jackpot {
  background: linear-gradient(45deg, #FFD700, #FF8C00);
  color: #000;
  box-shadow: 0 0 20px rgba(255,215,0,0.8);
  font-weight: 800;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


/* ── Blackjack ── */
.blackjack-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blackjack-hand-section {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  min-height: 180px;
}
.hand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}
.hand-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cards-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-height: 110px;
  align-items: center;
}
.card-bj {
  width: 76px;
  height: 108px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  border-radius: 8px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 0 4px rgba(255,255,255,0.6);
  position: relative;
  font-family: 'Outfit', sans-serif;
  user-select: none;
  animation: cardDeal 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
.card-bj.back {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--accent-gold);
  color: transparent;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}
.card-bj.back::after {
  content: '♣♠\A♣♠';
  white-space: pre;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 158, 11, 0.4);
  font-size: 14px;
  text-align: center;
}
.card-bj .card-suit-big {
  font-size: 28px;
  text-align: center;
  align-self: center;
  line-height: 1;
}
.card-bj.red { color: #dc2626; }
.card-bj.black { color: #1e293b; }

@keyframes cardDeal {
  0% { transform: translateY(-40px) rotate(-15deg); opacity: 0; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}

.score-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-gold);
}

/* ── Roulette ── */
.roulette-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.roulette-top-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.wheel-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.wheel-outer {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 8px solid #c5a880; /* Gold/Bronze metallic border */
  box-shadow: 0 12px 36px rgba(0,0,0,0.9), 0 0 24px rgba(197, 168, 128, 0.2), inset 0 4px 10px rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
  background: #000;
}
.wheel-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  transition: transform 5s cubic-bezier(0.1, 0.8, 0.1, 1);
  background: conic-gradient(
    #22c55e 0deg 9.7deg,    /* 0 */
    #ef4444 9.7deg 19.4deg,  /* 32 */
    #1e293b 19.4deg 29.1deg, /* 15 */
    #ef4444 29.1deg 38.8deg, /* 19 */
    #1e293b 38.8deg 48.5deg, /* 4 */
    #ef4444 48.5deg 58.2deg, /* 21 */
    #1e293b 58.2deg 67.9deg, /* 2 */
    #ef4444 67.9deg 77.6deg, /* 25 */
    #1e293b 77.6deg 87.3deg, /* 17 */
    #ef4444 87.3deg 97deg,   /* 34 */
    #1e293b 97deg 106.7deg,  /* 6 */
    #ef4444 106.7deg 116.4deg, /* 27 */
    #1e293b 116.4deg 126.1deg, /* 13 */
    #ef4444 126.1deg 135.8deg, /* 36 */
    #1e293b 135.8deg 145.5deg, /* 11 */
    #ef4444 145.5deg 155.2deg, /* 30 */
    #1e293b 155.2deg 164.9deg, /* 8 */
    #ef4444 164.9deg 174.6deg, /* 23 */
    #1e293b 174.6deg 184.3deg, /* 10 */
    #ef4444 184.3deg 194deg,   /* 5 */
    #1e293b 194deg 203.7deg,  /* 24 */
    #ef4444 203.7deg 213.4deg, /* 16 */
    #1e293b 213.4deg 223.1deg, /* 33 */
    #ef4444 223.1deg 232.8deg, /* 1 */
    #1e293b 232.8deg 242.5deg, /* 20 */
    #ef4444 242.5deg 252.2deg, /* 14 */
    #1e293b 252.2deg 261.9deg, /* 31 */
    #ef4444 261.9deg 271.6deg, /* 9 */
    #1e293b 271.6deg 281.3deg, /* 22 */
    #ef4444 281.3deg 291deg,   /* 18 */
    #1e293b 291deg 300.7deg,  /* 29 */
    #ef4444 300.7deg 310.4deg, /* 7 */
    #1e293b 310.4deg 320.1deg, /* 28 */
    #ef4444 320.1deg 329.8deg, /* 12 */
    #1e293b 329.8deg 339.5deg, /* 35 */
    #ef4444 339.5deg 349.2deg, /* 3 */
    #1e293b 349.2deg 358.9deg, /* 26 */
    #22c55e 358.9deg 360deg
  );
}
.wheel-pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid #f59e0b; /* Metallic gold pointer */
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6));
  z-index: 5;
}
.wheel-center-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, #f3f4f6 0%, #9ca3af 50%, #374151 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.6), inset 0 2px 2px rgba(255,255,255,0.6);
  border: 3px solid #111827;
  z-index: 4;
}

.roulette-board-wrapper {
  flex-grow: 1;
  max-width: 600px;
}
.roulette-board-grid {
  display: grid;
  grid-template-columns: 50px repeat(12, 1fr);
  grid-template-rows: repeat(3, 40px) 40px;
  gap: 4px;
  background: rgba(0,0,0,0.4);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  user-select: none;
}
.board-cell {
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  border: 1px solid rgba(255,255,255,0.03);
}
.board-cell:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--accent-gold);
  border-color: rgba(255,255,255,0.3);
}
.board-cell.green { background: #22c55e; color: #fff; }
.board-cell.red { background: #ef4444; color: #fff; }
.board-cell.black { background: #1e293b; color: #fff; }
.board-cell.dozen-cell {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-size: 11px;
}
.board-cell.zero-cell {
  grid-row: 1 / span 3;
  grid-column: 1;
  font-size: 16px;
}
.board-cell.bet-indicator::after {
  content: none !important;
}
.board-chip-badge {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #f59e0b 60%, #b45309 100%);
  color: #000;
  font-size: 8px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.7), inset 0 1px 1px rgba(255,255,255,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
  animation: chipPlace 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@keyframes chipPlace {
  0% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.outside-bets-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 4px;
  grid-column: 2 / span 12;
}

.active-bets-display {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid var(--border-subtle);
}
.active-bets-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.active-bets-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.active-bet-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.active-bet-tag-remove {
  cursor: pointer;
  color: var(--accent-red);
  font-weight: 700;
}

/* ── Roulette Chips Selector ── */
.roulette-container .bet-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.roulette-container .bet-options .bet-btn {
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  border: 3px dashed rgba(255,255,255,0.7) !important;
  box-shadow: 0 6px 12px rgba(0,0,0,0.6), inset 0 2px 2px rgba(255,255,255,0.3) !important;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28) !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #111;
}
.roulette-container .bet-options .bet-btn[data-bet="10"] {
  background: radial-gradient(circle, #3b82f6 60%, #1d4ed8 100%) !important;
}
.roulette-container .bet-options .bet-btn[data-bet="50"] {
  background: radial-gradient(circle, #ef4444 60%, #b91c1c 100%) !important;
}
.roulette-container .bet-options .bet-btn[data-bet="100"] {
  background: radial-gradient(circle, #10b981 60%, #047857 100%) !important;
}
.roulette-container .bet-options .bet-btn[data-bet="500"] {
  background: radial-gradient(circle, #8b5cf6 60%, #6d28d9 100%) !important;
}
.roulette-container .bet-options .bet-btn[data-bet="1000"] {
  background: radial-gradient(circle, #f59e0b 60%, #b45309 100%) !important;
}
.roulette-container .bet-options .bet-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.7), 0 0 10px rgba(255,255,255,0.2) !important;
}
.roulette-container .bet-options .bet-btn.selected {
  transform: scale(1.2) translateY(-6px) !important;
  border-color: #fff !important;
  box-shadow: 0 0 18px rgba(255,255,255,0.8), 0 10px 20px rgba(0,0,0,0.8) !important;
}
