:root {
    /* Gece mavisi / Derin lacivert paleti */
    --bg: #07070c;
    --surface: #11111d;
    --surface-elevated: #1a1a2e;
    --border: rgba(255, 255, 255, 0.06);
    --gold: #ca8a04;
    /* Daha oturaklı altın */
    --gold-bright: #f5c400;
    --gold-deep: #a16207;
    --gold-dim: rgba(212, 175, 55, 0.4);
    --gold-glow: rgba(212, 175, 55, 0.2);
    --text: #ffffff;
    --text-muted: #94a3b8;
    --success: #2ecc71;
    --danger: #ef4444;
    --accent: #a855f7;
    /* Purple glow */
    --font-main: 'Inter', sans-serif;
}

/* Keep Telegram and other touch webviews responsive during continuous browsing. */
@media (hover: none) and (pointer: coarse) {
    .ticker-scroll,
    .mb-img,
    .booster-banner-box *,
    .sl-notif-dot {
        animation: none !important;
    }

    .main-header,
    .bottom-nav,
    .tp-modal-overlay,
    #support-overlay,
    #sl-upsell-modal {
        /* removed backdrop-filter */
        -webkit-/* removed backdrop-filter */
    }
}

.sl-modal-overlay {
    pointer-events: none;
}

.sl-modal-overlay.show {
    pointer-events: auto;
}

.tp-modal-overlay,
#support-overlay {
    pointer-events: none;
}

.tp-modal-overlay[style*="display: flex"],
#support-overlay[style*="display: flex"] {
    pointer-events: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #050508;
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: none;
    padding-bottom: 120px;
    /* Alt menünün içeriği kapatmasını engellemek için */
}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    /* removed backdrop-filter */
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo .gold {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.balance-pill {
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    border-radius: 14px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #d1d5db;
}

.balance-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.5), rgba(255, 255, 255, 0.05) 50%, rgba(245, 196, 0, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.balance-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 260px;
    background: rgba(17, 17, 29, 0.98);
    /* removed backdrop-filter */
    border-radius: 16px;
    padding: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.balance-dropdown.show {
    display: flex;
}

.balance-dropdown::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.4), rgba(255, 255, 255, 0.05) 50%, rgba(245, 196, 0, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bd-search {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.bd-search i {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}

.bd-search input {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.bd-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bd-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.bd-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.bd-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-item-left img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
}

.tg-star-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    background: #facc15;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}

.bd-item-left span {
    font-size: 14px;
    font-weight: 700;
    color: #cbd5e1;
}

.bd-item-right {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.lang-wrapper {
    position: relative;
}

.lang-btn {
    width: 28px;
    height: 28px;
    background: var(--surface);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(202, 138, 4, 0.2);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 160px;
    background: rgba(17, 17, 29, 0.95);
    /* removed backdrop-filter */
    border-radius: 16px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 2000;
}

.lang-dropdown::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.4), rgba(255, 255, 255, 0.05) 50%, rgba(245, 196, 0, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.lang-dropdown.show {
    display: flex;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.lang-item.active {
    background: rgba(255, 255, 255, 0.08);
}

.lang-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
}

.avatar-wrap {
    position: relative;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-dim);
}


.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: -40px;
    width: 250px;
    background: rgba(17, 17, 29, 0.98);
    /* removed backdrop-filter */
    border-radius: 24px;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.user-dropdown-scroll {
    max-height: 80vh;
    overflow-y: auto;
    padding: 24px 18px;
    scrollbar-width: none;
}

.user-dropdown-scroll::-webkit-scrollbar {
    display: none;
}

.user-dropdown::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(202, 138, 4, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.user-dropdown.show {
    display: flex;
}

.user-drop-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.user-drop-avatar {
    width: 64px;
    height: 64px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    border: 3px solid var(--surface-elevated);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.user-drop-level-badge {
    background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    margin-top: -12px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.user-drop-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.user-drop-progress {
    margin-bottom: 20px;
}

.up-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.up-bar-wrap {
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 7px;
    position: relative;
    overflow: hidden;
}

.up-bar {
    position: absolute;
    inset: 0;
    width: 5%;
    background: linear-gradient(90deg, #eab308, #ca8a04);
}

.up-gift {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 400;
    color: #facc15;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-drop-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    margin-top: 16px;
    width: 100%;
}

.ud-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.2s;
    border: none !important;
    outline: none !important;
}

.ud-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.ud-item i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.ud-item span {
    font-size: 15px;
    font-weight: 700;
    color: #cbd5e1;
}

/* CONTENT */
.content {
    padding: 0 16px 16px 16px;
}

/* VIP CARD */
.vip-card {
    background: #070617;
    position: relative;
    border-radius: 24px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
    overflow: hidden;
}

.vip-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    /* En ince ve zarif hale getirildi */
    background: linear-gradient(135deg, #3f2152, #916477 50%, #3f2152);
    -webkit-mask: linear-gradient(#3f2152 0 0) content-box, linear-gradient(#94a3b8 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vip-badge-wrap {
    position: relative;
    width: 48px;
    /* 56'dan 48'e d\u00FC\u015F\u00FCr\u00FCld\u00FC */
    height: 48px;
}

.vip-crown-glow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-crown-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vip-crown-img {
    width: 100%;
    /* 80'den 100'e çıkarıldı */
    height: 100%;
    object-fit: contain;
}

.wallet-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.vip-info {
    flex: 1;
}

.vip-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 6px;
}

.vip-gold-text {
    color: #ffd700;
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.55);
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.vip-header i.vip-gold-text {
    width: 14px;
    height: 14px;
}

.progress-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.progress-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(234, 179, 8, 0.4);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #eab308 0%, #f5c400 50%, #ffd700 100%);
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
}

/* ⚡ 2x XP Booster - Büyülü Altın Su Akış Animasyonu ⚡ */
.booster-active-fill {
    background: linear-gradient(90deg, #eab308, #ca8a04, #facc15, #ca8a04, #eab308) !important;
    background-size: 200% 100% !important;
    animation: goldWaterFlow 2s linear infinite, goldWaterGlow 1.5s ease-in-out infinite alternate !important;
    position: relative;
    overflow: hidden;
}

/* Kayan Parlayan Su Dalgası/Işıltısı (Glint effect) */
.booster-active-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: goldGlint 3s infinite;
}

@keyframes goldWaterFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes goldWaterGlow {
    0% {
        box-shadow: 0 0 5px rgba(234, 179, 8, 0.6), inset 0 0 5px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(234, 179, 8, 0.95), inset 0 0 10px rgba(255, 255, 255, 0.4);
    }
}

@keyframes goldGlint {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.percent {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 24px;
}

.next-level {
    font-size: 10px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════
   VIP SEVİYE TEMATIK STİLLER
   .vip-theme-bronze / silver / gold / platinum
══════════════════════════════════════════ */

/* ── BRONZE ── */
.vip-theme-bronze .vip-card::before {
    background: linear-gradient(135deg, #6b3a1f, #c47a3a 50%, #6b3a1f) !important;
}

.vip-theme-bronze .vip-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 20px rgba(150, 80, 20, .15) !important;
}

.vip-theme-bronze .vip-gold-text {
    color: #f0944a !important;
    text-shadow: 0 0 12px rgba(240, 148, 74, .55), 0 0 24px rgba(240, 148, 74, .25) !important;
    font-weight: 800 !important;
}

.vip-theme-bronze .progress-fill {
    background: linear-gradient(90deg, #8b4513 0%, #cd7f32 50%, #d2691e 100%) !important;
    box-shadow: 0 0 8px rgba(205, 127, 50, .3) !important;
}

.vip-theme-bronze .progress-bg {
    border-color: rgba(205, 127, 50, .35) !important;
}

/* ── SILVER ── */
.vip-theme-silver .vip-card::before {
    background: linear-gradient(135deg, #4a4a5a, #a0a0b8 50%, #4a4a5a) !important;
}

.vip-theme-silver .vip-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 25px rgba(160, 160, 200, .12) !important;
}

.vip-theme-silver .vip-gold-text {
    color: #dcdcf0 !important;
    text-shadow: 0 0 12px rgba(220, 220, 240, .55), 0 0 24px rgba(220, 220, 240, .25) !important;
    font-weight: 800 !important;
}

.vip-theme-silver .progress-fill {
    background: linear-gradient(90deg, #708090 0%, #c0c0d8 50%, #a8a8c8 100%) !important;
    box-shadow: 0 0 8px rgba(192, 192, 216, .25) !important;
}

.vip-theme-silver .progress-bg {
    border-color: rgba(192, 192, 216, .3) !important;
}

/* ── GOLD (mevcut + animasyon) ── */
.vip-theme-gold .vip-card::before {
    background: linear-gradient(135deg, #3f2152, #916477 50%, #3f2152) !important;
    animation: goldBorderPulse 3s ease-in-out infinite !important;
}

.vip-theme-gold .vip-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 30px rgba(234, 179, 8, .18) !important;
}

@keyframes goldBorderPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.65;
    }
}

/* ── PLATINUM ── */
.vip-theme-platinum .vip-card::before {
    background: linear-gradient(135deg, #0a1628, #00d4ff 50%, #0a1628) !important;
    animation: platinumGlow 2s ease-in-out infinite !important;
}

.vip-theme-platinum .vip-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6), 0 0 40px rgba(0, 212, 255, .25) !important;
}

.vip-theme-platinum .vip-gold-text {
    color: #00eaff !important;
    text-shadow: 0 0 14px rgba(0, 234, 255, .75), 0 0 30px rgba(0, 234, 255, .35) !important;
    font-weight: 800 !important;
}

.vip-theme-platinum .progress-fill {
    background: linear-gradient(90deg, #0066cc 0%, #00d4ff 50%, #7df9ff 100%) !important;
    box-shadow: 0 0 12px rgba(0, 212, 255, .5) !important;
}

.vip-theme-platinum .progress-bg {
    border-color: rgba(0, 212, 255, .4) !important;
}

@keyframes platinumGlow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .6), 0 0 40px rgba(0, 212, 255, .25);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .6), 0 0 60px rgba(0, 212, 255, .45);
    }
}

/* Platinum kart arka plan parlama efekti */
.vip-theme-platinum .vip-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, .04) 0%, transparent 70%);
    pointer-events: none;
    animation: platinumSweep 4s linear infinite;
}

@keyframes platinumSweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.vip-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(202, 138, 4, 0.02) 50%, rgba(255, 255, 255, 0.01) 100%);
    position: relative;
    border-radius: 12px;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.4), rgba(255, 255, 255, 0.05) 50%, rgba(202, 138, 4, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stat-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.stat-icon {
    width: 16px;
    height: 16px;
}

.stat-icon.flame {
    color: #facc15;
    fill: #facc15;
}

.stat-emoji {
    font-size: 16px;
    line-height: 1;
}

.stat-icon.star {
    color: #facc15;
    fill: #facc15;
}

.stat-val {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.stat-lbl {
    font-size: 10px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* TICKER */
.ticker-box {
    background: #070617;
    position: relative;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ticker-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.6) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(202, 138, 4, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    height: 18px;
    /* Tek satır yüksekliği */
}

/* ⚡ Slim 2X XP Booster Active Banner ⚡ */
.booster-banner-box {
    background: linear-gradient(135deg, #070617 0%, #150d30 50%, #070617 100%);
    background-size: 200% 200%;
    position: relative;
    border-radius: 12px;
    padding: 10px 12px;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: -8px;
    /* Snugs perfectly under the ticker box */
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.95);
    opacity: 0;
    overflow: hidden;
    /* Sweeping light sheen remains safely within borders */
}

.booster-banner-box.active {
    display: flex !important;
    transform: scale(1);
    opacity: 1;
    animation: bgGradientMove 4s ease infinite;
}

/* Flowing Golden Water Border on the Active Banner */
.booster-banner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(90deg, #eab308, #ca8a04, #facc15, #ca8a04, #eab308);
    background-size: 200% 100%;
    animation: goldWaterFlow 2s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* Sweeping Light Sheen (Glint effect) across the banner surface */
.booster-banner-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 3;
}

.booster-banner-box.active::after {
    animation: goldGlint 3.5s infinite ease-in-out;
}

/* ⚡ Enerjik Elektrik Arka Plan Hareketi ⚡ */
@keyframes bgGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ⚡ Altın Neon Nefes Alma Efekti (Metin için) ⚡ */
@keyframes text-neon-breath {
    0% {
        text-shadow: 0 0 3px rgba(250, 204, 21, 0.4), 0 0 8px rgba(250, 204, 21, 0.2);
        color: #facc15;
    }

    100% {
        text-shadow: 0 0 10px rgba(250, 204, 21, 0.95), 0 0 20px rgba(250, 204, 21, 0.4), 0 0 30px rgba(250, 204, 21, 0.2);
        color: #fff;
    }
}

/* ⚡ Şimşek İkonu Elektrik Titremesi (Electric Shake) ⚡ */
@keyframes electric-shake {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 2px #facc15);
    }

    10% {
        transform: scale(1.15) rotate(-6deg);
        filter: drop-shadow(0 0 5px #facc15);
    }

    20% {
        transform: scale(0.9) rotate(6deg);
    }

    30% {
        transform: scale(1.2) rotate(-4deg);
        filter: drop-shadow(0 0 8px #facc15);
    }

    40% {
        transform: scale(1.0) rotate(4deg);
    }

    50% {
        transform: scale(1.05) rotate(0deg);
        filter: drop-shadow(0 0 3px #facc15);
    }
}

/* ⚡ Sayacın Canlı Atışı ⚡ */
@keyframes time-pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
        color: #facc15;
        text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
    }
}

.ticker-scroll {
    display: flex;
    flex-direction: column;
    animation: ticker-up 6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes ticker-up {

    0%,
    45% {
        transform: translateY(0);
    }

    50%,
    95% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}

.ticker-text {
    font-size: 11px;
    /* Daha zarif olması için hafif küçültüldü */
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    height: 18px;
    line-height: 18px;
    white-space: nowrap;
}

.gold-amount {
    color: #ffb300;
    /* İstediğin turuncumsu altın sarısı */
    font-weight: 700;
}

.ticker-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.online-users {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.online-status .dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: blink-status 1.5s infinite;
    /* Yanıp sönme animasyonu */
}

@keyframes blink-status {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Yeni ikon boyutları ve renkleri */
.ticker-speaker {
    width: 14px !important;
    height: 14px !important;
    color: #cbd5e1 !important;
    fill: #cbd5e1 !important;
}

.ticker-users {
    width: 12px !important;
    height: 12px !important;
    color: var(--text-muted);
}

/* BALANCE CARD */
.balance-card {
    background: #070617;
    position: relative;
    border-radius: 20px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.balance-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #3f2152, #916477 50%, #3f2152);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.balance-lbl {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.balance-main {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin: 2px 0;
}

.balance-bonus {
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bonus-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.balance-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.action-btn i {
    width: 16px;
    /* 18'den 16'ya düşürüldü */
    height: 16px;
}

.action-btn {
    width: 52px;
    height: 52px;
    background: var(--surface);
    border: 1.5px solid rgba(234, 179, 8, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #eab308;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn.primary {
    background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
    border-color: #ca8a04;
    color: #1a1a1a;
    /* Görseldeki gibi koyu yazı */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.action-btn span {
    font-size: 9.5px;
    font-weight: 600;
}

.mystery-box-section {
    background: #070617;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mystery-box-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(145, 100, 119, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mystery-box-section::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #3f2152, #916477 50%, #3f2152);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.mb-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.mb-visual {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.3));
    animation: float-box 3s ease-in-out infinite;
}

@keyframes float-box {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.mb-count-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.4);
    border: 2px solid #0a0a1a;
}

.mb-info {
    flex: 1;
}

.mb-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.mb-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.mb-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.mb-open-btn {
    position: relative;
    height: 46px;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    border: none;
    border-radius: 12px;
    padding: 0 24px;
    color: #111;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(202, 138, 4, 0.4), inset 0 1px rgba(255, 255, 255, 0.3);
}

.mb-open-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.mb-open-btn:disabled {
    background: #2a2a3a;
    color: #555;
    box-shadow: none;
    cursor: not-allowed;
}

.mb-open-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(202, 138, 4, 0.6);
}

.mb-open-btn:hover:not(:disabled)::after {
    left: 100%;
}

/* PROMO GRID */
.promo-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 8px;
    margin-bottom: 16px;
}

.jackpot-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 155px;
}

.mini-jackpot {
    flex: 1;
    background: #070617;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

a.mini-jackpot {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.15s ease;
}

a.mini-jackpot:hover {
    filter: brightness(1.12);
    transform: scale(1.02);
}

a.mini-jackpot:active {
    transform: scale(0.99);
}

a.mini-jackpot:focus-visible {
    outline: 2px solid rgba(234, 179, 8, 0.75);
    outline-offset: 2px;
}

.mini-jackpot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
}

.mini-jackpot.mega {
    border: 1px solid rgba(234, 179, 8, 0.4);
    background-image: url('/images/banner/tombalaj.jpg');
    background-size: cover;
    background-position: center;
}

.mini-jackpot.major {
    border: 1px solid rgba(148, 163, 184, 0.4);
    background-image: url('/images/banner/kenoj.jpg');
    background-size: cover;
    background-position: center;
}

.mini-jackpot.minor {
    border: 1px solid rgba(180, 83, 9, 0.4);
    background-image: url('/images/banner/777j.jpg');
    background-size: cover;
    background-position: center;
}

.mini-jackpot.mega::before {
    background: #eab308;
    box-shadow: 0 0 10px #eab308;
}

.mini-jackpot.major::before {
    background: #94a3b8;
    box-shadow: 0 0 10px #94a3b8;
}

.mini-jackpot.minor::before {
    background: #b45309;
    box-shadow: 0 0 10px #b45309;
}

.mj-lbl {
    font-size: 8px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.mj-val {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.mini-jackpot.mega .mj-val {
    color: #facc15;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.4);
}

.banner-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 155px;
    background: #0f0c29;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(202, 138, 4, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bn-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.bn-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    z-index: 1;
}

.bn-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.banner-card:active {
    transform: scale(0.98);
}

.banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg,
            rgba(202, 138, 4, 0.8) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(168, 85, 247, 0.8) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 15;
}

.bn-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(0.9) contrast(1.1);
    transform: scale(1.1);
    transition: transform 10s linear;
}

.banner-card:hover .bn-bg {
    transform: scale(1.2);
}

.bn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 7, 12, 0.7) 0%, rgba(7, 7, 12, 0) 60%),
        linear-gradient(to top, rgba(7, 7, 12, 0.4), transparent);
    z-index: 5;
}

.bn-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 55%,
            transparent 100%);
    transform: skewX(-25deg);
    z-index: 12;
    animation: bn-shine-anim 6s infinite ease-in-out;
}

@keyframes bn-shine-anim {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.bn-particles .p {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-bright);
    border-radius: 50%;
    opacity: 0;
    z-index: 8;
    filter: blur(1px);
}

.bn-particles .p1 {
    top: 20%;
    left: 10%;
    animation: bn-float 4s infinite 0s;
}

.bn-particles .p2 {
    top: 60%;
    left: 80%;
    animation: bn-float 5s infinite 1s;
}

.bn-particles .p3 {
    top: 40%;
    left: 50%;
    animation: bn-float 6s infinite 2s;
}

@keyframes bn-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-30px) scale(0.5);
        opacity: 0;
    }
}

.bn-content {
    position: relative;
    z-index: 20;
    padding: 16px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bn-top {
    margin-bottom: 12px;
}

.bn-sub {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bn-title {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(202, 138, 4, 0.4));
    line-height: 1.1;
}

.bn-title .highlight {
    background: linear-gradient(135deg, #facc15, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1em;
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.6));
}

.bn-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    font-weight: 500;
}

/* Slider Nav Arrows */
.bn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    /* removed backdrop-filter */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 35;
    transition: all 0.3s;
    opacity: 0;
}

.banner-card:hover .bn-nav {
    opacity: 1;
}

.bn-nav:hover {
    background: var(--gold-bright);
    color: #000;
    border-color: var(--gold-bright);
    box-shadow: 0 0 15px var(--gold-glow);
}

.bn-nav-prev {
    left: 10px;
}

.bn-nav-next {
    right: 10px;
}

.bn-nav i {
    width: 16px;
    height: 16px;
}

.bn-btn {
    position: relative;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 800;
    color: #111;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(202, 138, 4, 0.4), inset 0 1px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bn-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.bn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(202, 138, 4, 0.6);
}

.bn-btn:hover::after {
    left: 100%;
}

.bn-dots {
    position: absolute;
    bottom: 12px;
    right: 16px;
    display: flex;
    gap: 6px;
    z-index: 30;
}

.bn-dots .dot {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.bn-dots .dot.active {
    background: var(--gold);
    width: 16px;
}

/* CAT NAV */
.cat-nav {
    margin: 16px 0;
    position: relative;
    background: #070617;
    border-radius: 12px;
    padding: 2px;
    border: 1px solid rgba(234, 179, 8, 0.2);
    /* Direkt, sade \u00E7er\u00E7eve */
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.cat-list {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 8px;
    position: relative;
}

.cat-list {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 8px;
    position: relative;
    z-index: 2;
}

.cat-list::-webkit-scrollbar {
    display: none;
}

.cat-item {
    background: transparent;
    border: none;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
}

.cat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(168, 85, 247, 0.5);
    /* G\u00F6r\u00FCn\u00FCrl\u00FCk art\u0131r\u0131ld\u0131 */
}

.cat-item i {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.cat-item.active {
    background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
    color: #1a1a1a;
    border-radius: 8px;
    padding: 6px 12px;
}

.cat-item.active i {
    color: #1a1a1a;
    opacity: 1;
}

.cat-badge {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
}

/* GAME GRID */
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.game-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.game-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.35;
    /* Dikeyde daha uzun, poster formunda */
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-thumb img {
    transform: scale(1.05);
}

.game-badges {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rtp {
    background: rgba(10, 10, 10, 0.7);
    /* removed backdrop-filter */
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    color: var(--gold);
}

.fav-btn {
    width: 20px;
    height: 20px;
    background: rgba(10, 10, 10, 0.7);
    /* removed backdrop-filter */
    border-radius: 50%;
    border: none;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-btn i {
    width: 12px;
    height: 12px;
}

.game-info {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    /* removed backdrop-filter */
    padding: 0;
    z-index: 5;
}

.game-name {
    font-size: 11px;
    font-weight: 600;
    color: #a0a0aa;
    /* Saf beyaz yerine a\u00E7\u0131k gri */
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 95%;
}

.game-sub,
.game-win {
    display: none !important;
}

.status-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 900;
    z-index: 10;
}

.status-tag.hot {
    background: var(--danger);
}

.status-tag.live {
    background: var(--success);
}

/* GAME ROW SCROLL */
.game-row-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 4px;
    margin-bottom: 16px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.game-row-scroll::-webkit-scrollbar {
    height: 4px;
}

.game-row-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.game-row-scroll::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

.game-row-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.game-row-scroll .game-card {
    flex: 0 0 130px;
    /* Kartlar\u0131n geni\u015Fli\u011Fini sabitliyoruz */
    scroll-snap-align: start;
}

/* SECTION HEADER */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.sh-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sh-icon {
    width: 18px;
    height: 18px;
}

.sh-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #a0a0aa;
    /* Saf beyaz yerine a\u00E7\u0131k gri */
    letter-spacing: -0.2px;
}

.sh-link {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.15), rgba(7, 6, 23, 0.95));
    /* Hafif morumsu premium ge\u00E7i\u015F */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #a0a0aa;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(168, 85, 247, 0.1);
    /* \u00C7ok ince morumsu bir \u00E7er\u00E7eve parlakl\u0131\u011F\u0131 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sh-link:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(7, 6, 23, 1));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.15);
}

.sh-link i {
    width: 14px;
    height: 14px;
}

.sh-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 8px;
    text-align: center;
}

.main-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.info-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}



.info-sub {
    font-size: 9px;
    color: var(--text-muted);
    margin: 4px 0;
    line-height: 1.2;
}

.info-link {
    font-size: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

/* QUICK DEPOSIT */
.quick-deposit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.qd-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    border-right: 1px solid var(--border);
    padding-right: 12px;
}

.qd-list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    flex: 1;
}

.qd-list::-webkit-scrollbar {
    display: none;
}

.qd-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.qd-btn.active {
    background: linear-gradient(135deg, #facc15, #f5c400);
    color: #000;
    border: none;
}

.qd-all {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* FLOAT BTN */
.float-btn {
    position: fixed;
    bottom: 100px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #facc15, #f5c400);
    border-radius: 50%;
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px var(--gold-glow);
    z-index: 1000;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 196, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 196, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 196, 0, 0);
    }
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 6, 23, 0.98);
    /* Daha net bir koyuluk */
    /* removed backdrop-filter */
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    /* Morumsu ince \u00FCst \u00E7izgi */
    padding-bottom: env(safe-area-inset-bottom, 20px);
    /* iPhone vb. i\u00E7in g\u00FCvenli alan */
    z-index: 9999;
    /* En \u00FCstte oldu\u011Fundan emin olal\u0131m */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: flex-end;
    padding: 8px 16px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
}

.nav-item.active {
    color: var(--gold);
}

.nav-item i {
    width: 22px;
    height: 22px;
}

.nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -30px;
}

.nav-center-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
    border-radius: 50%;
    border: 4px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    /* Yukardaki butonla ayn\u0131 koyu ikon rengi */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.nav-center span {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    margin-top: 4px;
}

/* UTILS */
.gold-text {
    color: var(--gold) !important;
}

.purple-text {
    color: var(--accent) !important;
}

.dim-text {
    color: var(--text-muted) !important;
}

.bold {
    font-weight: 800;
}

.fill-gold {
    fill: var(--gold);
}

.relative {
    position: relative;
}

.small {
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

i {
    stroke-width: 2.2;
}

/* Font kalınlığıyl
/* STORY MENU STYLES */
.story-container {
    display: flex;
    overflow-x: auto;
    justify-content: center;
    gap: 14px;
    padding: 10px 4px;
    margin: 4px 0 12px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.story-container::-webkit-scrollbar {
    display: none;
}

.story-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.story-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2.5px;
    /* Alt\u0131n halka ile resim aras\u0131ndaki bo\u015Fluk */
    background: #050508;
    /* Sayfa arka plan\u0131yla ayn\u0131 renk (Ring Gap) */
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.15);
}

.story-circle::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 1.5px;
    background: linear-gradient(45deg, #facc15, #eab308, #ca8a04, #facc15);
    background-size: 200% 200%;
    animation: gold-spin 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 1.5px solid #050508;
}

.story-label {
    font-size: 9px;
    font-weight: 500;
    color: #94a3b8;
    text-align: center;
}

.story-item:hover .story-circle {
    transform: scale(1.08);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-item:hover .story-label {
    color: #fff;
}

/* SUB FOOTER */
.sub-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 8px;
    /* Daha daralt\u0131lm\u0131\u015F alan */
    margin-top: 10px;
    margin-bottom: 10px;
}

.sf-logo-img {
    height: 30px;
    /* Logo daha da b\u00FCy\u00FCt\u00FCld\u00FC */
    opacity: 1;
}

.sf-divider {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.sf-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.15), rgba(7, 6, 23, 0.95));
    border: 1px solid rgba(168, 85, 247, 0.1);
    padding: 5px 10px;
    border-radius: 10px;
    color: #a0a0aa;
    font-size: 11px;
    font-weight: 500;
    /* Daha zarif ve ince bir font a\u011F\u0131rl\u0131\u011F\u0131 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sf-flag {
    width: 16px;
    height: 11px;
    border-radius: 1px;
    object-fit: cover;
}

.sf-lang i {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.sf-top {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.15), rgba(7, 6, 23, 0.95));
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 10px;
    color: #a0a0aa;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sf-top i {
    width: 16px;
    height: 16px;
}

.sf-lang-wrapper {
    position: relative;
}

.sf-lang-dropdown {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 140px;
    background: rgba(20, 20, 25, 0.98);
    /* Daha opak bir koyuluk */
    /* removed backdrop-filter */
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 14px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
    /* En \u00FCst katmanda oldu\u011Fundan emin olal\u0131m */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* SUPPORT CARD */
.support-card {
    background: #070617;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    margin: 16px 8px;
    padding: 24px;
    position: relative;
    overflow: visible;
    /* \u00DCstten ta\u015Fmaya izin ver */
    clip-path: inset(-100px 0px 0px 0px);
    /* Yanlardan kes */
    display: flex;
    min-height: 140px;
}

.sc-glow {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(25px);
    z-index: 1;
    pointer-events: none;
}

.sc-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sc-title {
    font-size: 20px;
    font-weight: 900;
    color: #e2e8f0;
    /* Beyaza yak\u0131n premium gri */
}

.sc-badge {
    background: #eab308;
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 10px;
}

.sc-desc {
    font-size: 13px;
    color: #a0a0aa;
    margin-bottom: 20px;
    max-width: 180px;
}

.sc-btn {
    width: 100%;
    background: linear-gradient(180deg, #d4a017 0%, #b8860b 100%);
    border: none;
    padding: 12px;
    border-radius: 10px;
    /* Yuvarlanm\u0131\u015F dikd\u00F6rtgen formuna ge\u00E7ildi */
    color: #000;
    font-size: 13px;
    font-weight: 500;
    /* Daha ince ve zarif bir font a\u011F\u0131rl\u0131\u011F\u0131 */
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    cursor: pointer;
}

.sc-image {
    position: absolute;
    right: -70px;
    /* Sola do\u011Fru hafif\u00E7e kayd\u0131r\u0131ld\u0131 */
    bottom: 65px;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* Taban\u0131n\u0131 sabitleyelim */
    justify-content: flex-end;
    pointer-events: none;
}

.sc-image img {
    height: 75%;
    /* Daha rafine bir boyut için küçültüldü */
    object-fit: contain;
    filter: drop-shadow(-8px 0 15px rgba(0, 0, 0, 0.4));
}

/* PAYMENT METHODS */
.payment-methods {
    padding: 16px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.pm-list img {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
    transition: opacity 0.3s;
}

.pm-list img:hover {
    opacity: 1;
}

.pm-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 4px;
}

.pm-list img.pm-wide {
    height: 18px;
    /* GPay, Apple Pay ve Mastercard i\u00E7in daha zarif bir y\u00FCkseklik */
}

/* COPYRIGHT FOOTER */
.copyright-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 40px;
    /* Alttan biraz daha fazla boşluk */
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 8px;
}

.cf-text {
    font-size: 11px;
    color: #475569;
    /* Mat mavimsi gri */
    font-weight: 500;
    line-height: 1.5;
}

.cf-badge {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf-badge span {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
}

.sf-lang,
.sf-top {
    cursor: pointer;
    /* Tıklanabilir olduğunu belli edelim */
}

.sf-lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-item img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-item span {
    font-size: 13px;
    font-weight: 500;
    color: #a0a0aa;
}

.lang-item:hover {
    background: rgba(168, 85, 247, 0.1);
}

.lang-item.active span {
    color: #fff;
    font-weight: 700;
}

.sf-lang:active,
.sf-top:active {
    transform: scale(0.95);
}

/* Near Level Up Toast */
.near-levelup-toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid #c9a227;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    z-index: 9999;
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.near-levelup-toast.show {
    top: 20px;
}

/* ══════════════════════════════════════════
   GİZEMLİ KUTU BİLGİ BUTONU (.mb-list-btn)
══════════════════════════════════════════ */
.mb-list-btn {
    height: 46px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 12px;
    padding: 0 16px;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.mb-list-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.mb-list-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(202, 138, 4, 0.25);
}

.mb-list-btn:hover::before {
    opacity: 1;
}

.mb-list-btn:active {
    transform: translateY(0);
}

.mb-list-btn i {
    width: 14px;
    height: 14px;
}

/* ══════════════════════════════════════════
   KUTU ÖDÜL LİSTESİ POPUP MODAL (TP-MODAL)
══════════════════════════════════════════ */
.tp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.85);
    /* removed backdrop-filter */
    -webkit-/* removed backdrop-filter */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    /* Header ve dropdown'ların en üstünde olmasını sağlar */
    animation: tpFadeIn 0.3s ease forwards;
}

.tp-modal {
    background: rgba(17, 17, 29, 0.98);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(234, 179, 8, 0.15);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: tpScaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

/* Modal etrafında premium ince altın çerçeve */
.tp-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.4) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(234, 179, 8, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tp-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.2);
}

.tp-modal-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.tp-modal-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px);
}

.tp-modal-btn:active {
    transform: translateY(0);
}

@keyframes tpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes tpScaleUp {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ⚡ Booster Activation Premium Toast ⚡ */
.booster-activation-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 50px);
    width: 90%;
    max-width: 360px;
    background: rgba(7, 6, 23, 0.98);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 30px rgba(234, 179, 8, 0.35);
    z-index: 99999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.booster-activation-toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* Dynamic Golden Water Border Flow on the Celebration Toast */
.booster-activation-toast::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(90deg, #eab308, #ca8a04, #facc15, #ca8a04, #eab308);
    background-size: 200% 100%;
    animation: goldWaterFlow 2s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.toast-content-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toast-icon-glow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.4) 0%, rgba(0, 0, 0, 0) 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.toast-lightning-icon {
    width: 26px;
    height: 26px;
    color: #facc15;
    fill: #facc15;
    animation: electric-shake 0.8s ease-in-out infinite;
}

.toast-title {
    font-size: 17px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    animation: text-neon-breath 1.2s ease-in-out infinite alternate;
}

.toast-desc {
    font-size: 11.5px;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 16px;
}

.toast-close-btn {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #111;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toast-close-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(234, 179, 8, 0.6);
}

.toast-close-btn:active {
    transform: translateY(0);
}

/* Alt menünün oyun butonlarını kapatmaması için alt boşluğu artır */
body:not(.admin-page) #root .pb-20 {
    padding-bottom: 130px !important;
}
