@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════
   GLOBAL VARIABLES
══════════════════════════════════════════ */
:root {
    --gc:        #f5c518;
    --gc-dim:    #b8920f;
    --sc:        #00c9ff;
    --sc-dim:    #0088b0;
    --bg:        #0a0b0f;
    --surface:   #12141a;
    --surface2:  #1a1d26;
    --border:    rgba(255,255,255,0.07);
    --text:      #e8eaf0;
    --muted:     #5a5f74;
    --success:   #4ade80;
    --danger:    #f87171;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
}

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
    background: var(--bg) !important;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.casino-wrap {
    min-height: 100vh;
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 80% 40% at 50% -10%, rgba(245,197,24,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 80% 90%,  rgba(0,201,255,0.05)  0%, transparent 50%);
}

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(18,20,26,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--gc);
    text-decoration: none;
}
.logo span   { color: var(--text); }
.logo-sub    { color: var(--muted); font-weight: 400; font-size: 0.8rem; }

/* ══════════════════════════════════════════
   CURRENCY TOGGLE
══════════════════════════════════════════ */
.currency-toggle {
    display: flex;
    align-items: center;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}

.currency-btn {
    padding: 6px 18px;
    border-radius: 50px;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: var(--muted);
}
.currency-btn.active-gc {
    background: linear-gradient(135deg, #f5c518, #e8a800);
    color: #000;
    box-shadow: 0 0 16px rgba(245,197,24,0.35);
}
.currency-btn.active-sc {
    background: linear-gradient(135deg, #00c9ff, #0088b0);
    color: #000;
    box-shadow: 0 0 16px rgba(0,201,255,0.35);
}

/* ══════════════════════════════════════════
   AVATAR
══════════════════════════════════════════ */
.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #2a2d3a, #1a1d26);
    border: 1.5px solid var(--border);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.avatar:hover { border-color: var(--gc); }

.avatar-menu-item {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s;
    font-family: 'DM Sans', sans-serif;
}
.avatar-menu-item:hover { background: var(--surface2); color: var(--text); }

/* ══════════════════════════════════════════
   MAIN CONTENT WRAPPER
══════════════════════════════════════════ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* ══════════════════════════════════════════
   SECTION HEADING
══════════════════════════════════════════ */
.section-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ══════════════════════════════════════════
   BALANCE HERO
══════════════════════════════════════════ */
.balance-hero {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.balance-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.balance-hero.gc-mode::before {
    background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(245,197,24,0.08) 0%, transparent 70%);
    opacity: 1;
}
.balance-hero.sc-mode::before {
    background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0,201,255,0.08) 0%, transparent 70%);
    opacity: 1;
}

.balance-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.balance-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    transition: color 0.3s;
}
.balance-amount.gc-color { color: var(--gc); }
.balance-amount.sc-color { color: var(--sc); }

.balance-unit {
    font-size: 1rem;
    color: var(--muted);
    margin-left: 8px;
    font-weight: 400;
}

/* ══════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 28px;
}

.stat-cell { background: var(--surface2); padding: 16px 20px; }

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}
.stat-value.positive { color: var(--success); }
.stat-value.negative { color: var(--danger); }

/* ══════════════════════════════════════════
   GAMES GRID
══════════════════════════════════════════ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

/* ── Game Card — image-only, no label ── */
.game-card {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;          /* portrait proportion like a game box art */
    background: var(--surface2);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(245,197,24,0.35);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,197,24,0.12);
    text-decoration: none;
    color: var(--text);
}

/* Subtle inner glow on hover */
.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45) 100%);
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
    z-index: 1;
}
.game-card:hover::after { opacity: 1; }

/* ── Game Icon container ── */
.game-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--surface2);
}

/* ── Game image — fills entire card ── */
.game-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.game-card:hover .game-icon-img {
    transform: scale(1.08);
}

/* Emoji fallback */
.game-icon-fallback {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* ── Hide game name label ── */
.game-name,
.game-desc,
.game-rtp { display: none; }

/* ══════════════════════════════════════════
   SLOT MACHINE REEL
══════════════════════════════════════════ */
.reel-window {
    position: relative;
    overflow: hidden;
    height: 80px;
    width: 72px;
    border-radius: 10px;
    background: #06060a;
    box-shadow:
        inset 0 0 0 1.5px rgba(255,255,255,0.06),
        inset 0 8px 24px rgba(0,0,0,0.7),
        inset 0 -8px 24px rgba(0,0,0,0.7),
        0 0 0 2px rgba(0,0,0,0.8);
}

.reel-window::before,
.reel-window::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 28px;
    z-index: 10;
    pointer-events: none;
}
.reel-window::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(6,6,10,0.95) 0%, rgba(6,6,10,0.6) 50%, transparent 100%);
}
.reel-window::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(6,6,10,0.95) 0%, rgba(6,6,10,0.6) 50%, transparent 100%);
}

.reel-window .payline {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to bottom,
        transparent                   0%,
        rgba(245,197,24,0.04)         20%,
        rgba(245,197,24,0.10)         45%,
        rgba(245,197,24,0.10)         55%,
        rgba(245,197,24,0.04)         80%,
        transparent                   100%);
    border-top:    1px solid rgba(245,197,24,0.18);
    border-bottom: 1px solid rgba(245,197,24,0.18);
    animation: payline-pulse 3s ease-in-out infinite;
}

@keyframes payline-pulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1;   }
}

.reel-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform;
}

.reel-symbol {
    width: 72px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
    user-select: none;
}

.reel-strip.reel-idle    { animation: reel-idle-breathe 4s ease-in-out infinite; }
@keyframes reel-idle-breathe {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-2px); }
}

.reel-strip.reel-spinup  { animation: reel-spinup 0.28s cubic-bezier(0.55,0,0.95,0.45) forwards; }
@keyframes reel-spinup {
    0%   { transform: translateY(0);     filter: blur(0px); }
    40%  { transform: translateY(-40px); filter: blur(2px); }
    100% { transform: translateY(-80px); filter: blur(6px); }
}

.reel-strip.reel-spinning { animation: reel-full-spin 90ms linear infinite; filter: blur(4px); }
@keyframes reel-full-spin {
    0%   { transform: translateY(0);     }
    100% { transform: translateY(-80px); }
}
.reel-strip.reel-spinning .reel-symbol {
    filter: blur(3px) drop-shadow(0 0 4px rgba(245,197,24,0.15));
}

.reel-strip.reel-spindown { animation: reel-spindown 0.55s cubic-bezier(0.22,1.4,0.58,1) forwards; filter: blur(0px); }
@keyframes reel-spindown {
    0%   { transform: translateY(var(--reel-stop-start,-80px));      filter: blur(3px);  }
    60%  { transform: translateY(var(--reel-stop-overshoot,8px));    filter: blur(0px);  }
    78%  { transform: translateY(var(--reel-stop-back,-4px)); }
    90%  { transform: translateY(2px);  }
    100% { transform: translateY(0);    }
}

.reel-strip.reel-landed   { animation: reel-land-bounce 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes reel-land-bounce {
    0%   { transform: translateY(0) scale(1);       }
    35%  { transform: translateY(-5px) scale(1.04); }
    65%  { transform: translateY(3px) scale(0.98);  }
    100% { transform: translateY(0) scale(1);       }
}

.reel-symbol.win-symbol { animation: symbol-win-pulse 0.6s ease-in-out 3; filter: drop-shadow(0 0 12px var(--gc)) drop-shadow(0 0 24px rgba(245,197,24,0.4)) !important; }
@keyframes symbol-win-pulse {
    0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 8px  var(--gc)) drop-shadow(0 0 18px rgba(245,197,24,0.3)); }
    50%       { transform: scale(1.15); filter: drop-shadow(0 0 20px var(--gc)) drop-shadow(0 0 40px rgba(245,197,24,0.6)); }
}

.reel-window.reel-shake { animation: reel-frame-shake 0.18s ease-in-out; }
@keyframes reel-frame-shake {
    0%   { transform: translateX(0);    }
    20%  { transform: translateX(-2px); }
    40%  { transform: translateX(2px);  }
    60%  { transform: translateX(-2px); }
    80%  { transform: translateX(1px);  }
    100% { transform: translateX(0);    }
}

.reel-strip.reel-nearmiss { animation: reel-nearmiss-shiver 0.4s ease-in-out; }
@keyframes reel-nearmiss-shiver {
    0%   { transform: translateY(0);    }
    15%  { transform: translateY(-6px); }
    30%  { transform: translateY(6px);  }
    50%  { transform: translateY(-3px); }
    70%  { transform: translateY(3px);  }
    100% { transform: translateY(0);    }
}

/* Reel stagger delays */
.reel-window.reel-delay-1 .reel-strip { animation-delay: 0.08s; }
.reel-window.reel-delay-2 .reel-strip { animation-delay: 0.18s; }
.reel-window.reel-delay-3 .reel-strip { animation-delay: 0.30s; }
.reel-window.reel-delay-4 .reel-strip { animation-delay: 0.44s; }

.reel-housing {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.reel-housing::before,
.reel-housing::after {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #5a5f74, #1a1d26);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.reel-sheen {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    pointer-events: none;
    z-index: 20;
    background: linear-gradient(115deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 40%, transparent 60%);
}

.reels-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: fit-content;
}

/* ══════════════════════════════════════════
   RECENT GAMES TABLE
══════════════════════════════════════════ */
.recent-table {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
}
.recent-table table  { width: 100%; border-collapse: collapse; }
.recent-table th {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 14px 20px;
    text-align: left;
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
}
.recent-table td {
    padding: 14px 20px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.recent-table tr:last-child td { border-bottom: none; }
.recent-table tr:hover td      { background: rgba(255,255,255,0.02); }

/* ══════════════════════════════════════════
   PILLS / BADGES
══════════════════════════════════════════ */
.pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.pill-gc   { background: rgba(245,197,24,0.12); color: var(--gc);     }
.pill-sc   { background: rgba(0,201,255,0.12);  color: var(--sc);     }
.pill-win  { background: rgba(74,222,128,0.12); color: var(--success); }
.pill-loss { background: rgba(248,113,113,0.12); color: var(--danger); }

/* ══════════════════════════════════════════
   CARDS / SURFACES
══════════════════════════════════════════ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}

/* ══════════════════════════════════════════
   FORM ELEMENTS
══════════════════════════════════════════ */
.casino-input {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.casino-input:focus       { border-color: rgba(245,197,24,0.4); }
.casino-input::placeholder { color: var(--muted); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.btn-primary { background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.35); }

.btn-gc { background: linear-gradient(135deg, #f5c518, #e8a800); color: #000; }
.btn-gc:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,197,24,0.35); }

.btn-sc { background: linear-gradient(135deg, #00c9ff, #0088b0); color: #000; }
.btn-sc:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,201,255,0.35); }

.btn-success { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }
.btn-success:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,0.3); }

.btn-danger { background: linear-gradient(135deg, #ef4444, #b91c1c); color: #fff; }
.btn-danger:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(239,68,68,0.3); }

.btn-lg   { padding: 14px 32px; font-size: 1.1rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════
   RANGE SLIDER
══════════════════════════════════════════ */
.casino-range {
    width: 100%;
    height: 6px;
    background: var(--surface2);
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    accent-color: var(--gc);
}
.casino-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gc);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(245,197,24,0.5);
}

/* ══════════════════════════════════════════
   ALERTS
══════════════════════════════════════════ */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; margin-top: 10px; }
.alert-success { background: rgba(74,222,128,0.1);  border: 1px solid rgba(74,222,128,0.2);  color: var(--success); }
.alert-danger  { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); color: var(--danger);  }
.alert-info    { background: rgba(0,201,255,0.1);   border: 1px solid rgba(0,201,255,0.2);   color: var(--sc);      }
.alert-warning { background: rgba(245,197,24,0.1);  border: 1px solid rgba(245,197,24,0.2);  color: var(--gc);      }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-gc      { color: var(--gc);      }
.text-sc      { color: var(--sc);      }
.text-muted   { color: var(--muted);   }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger);  }
.font-display { font-family: 'Rajdhani', sans-serif; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .games-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .top-bar      { padding: 12px 16px; }
    .main-content { padding: 24px 16px; }
    .balance-hero { padding: 24px 20px; }
    .balance-amount { font-size: 2.5rem; }
    .stats-row    { grid-template-columns: 1fr; }
    .games-grid   { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .logo         { font-size: 1.1rem; }
    .card         { padding: 20px; }
}

@media (max-width: 480px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .recent-table td, .recent-table th { padding: 10px 12px; font-size: 0.8rem; }
}

/* ══════════════════════════════════════════════════
   CASINO TOPBAR — SHARED ACROSS ALL GAMES
   High specificity to prevent game CSS leaks
══════════════════════════════════════════════════ */

/* Topbar container */
.casino-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 50;
    gap: 10px;
}

/* ── Currency Toggle ─────────────────────────────── */
.casino-topbar .currency-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 3px;
}

.casino-topbar .currency-toggle .cur-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 7px;              /* ← consistent radius */
    border: 1px solid transparent;
    background: transparent;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

/* Icon inside button */
.casino-topbar .currency-toggle .cur-btn .cur-icon {
    font-size: 0.85rem;
    line-height: 1;
}

/* ── GC Active State ── */
.casino-topbar .currency-toggle .cur-btn.gc-btn.active {
    background: rgba(245, 197, 24, 0.12);
    border-color: rgba(245, 197, 24, 0.35);
    color: #f5c518;
    box-shadow: 0 0 8px rgba(245, 197, 24, 0.15);
}

/* ── SC Active State ── */
.casino-topbar .currency-toggle .cur-btn.sc-btn.active {
    background: rgba(0, 201, 255, 0.12);
    border-color: rgba(0, 201, 255, 0.35);
    color: #00c9ff;
    box-shadow: 0 0 8px rgba(0, 201, 255, 0.15);
}

/* ── Inactive hover ── */
.casino-topbar .currency-toggle .cur-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
}

.casino-topbar .currency-toggle .cur-btn {
    border-radius: 7px !important;
    padding: 6px 14px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
}

.casino-topbar .currency-toggle .cur-btn.gc-btn.active {
    background: rgba(245, 197, 24, 0.12) !important;
    border-color: rgba(245, 197, 24, 0.35) !important;
    color: #f5c518 !important;
    border-radius: 7px !important;
}

.casino-topbar .currency-toggle .cur-btn.sc-btn.active {
    background: rgba(0, 201, 255, 0.12) !important;
    border-color: rgba(0, 201, 255, 0.35) !important;
    color: #00c9ff !important;
    border-radius: 7px !important;
}