/*
 * Gaming Platform - Optimized v2.0
 * Lightweight & Responsive
 */

:root {
    --gold: #FF6600;
    --gold-dark: #CC5200;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --card: #2a2a2a;
    --border: #3a3a3a;
    --text: #FFF;
    --text-dim: #999999;
    --radius: 8px;
    --purple: #FF6600;
    --purple-dark: #1f1f1f;
    --shadow: 0 2px 8px rgba(0,0,0,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--black);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
img { max-width: 100%; height: auto; display: block; }
input, select { font-family: inherit; font-size: 16px; }

/* Splash */
.splash {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .3s;
}
.splash.hide { opacity: 0; pointer-events: none; }
.splash-inner { text-align: center; }
.splash-logo-img { max-width: 300px; margin-bottom: 20px; }
.splash-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 12px;
    z-index: 100;
    gap: 10px;
}
.menu-btn {
    width: 40px;
    height: 40px;
    color: var(--gold);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo { display: flex; align-items: center; }
.header-logo-img { height: 72px; }
.header-right { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.balance-box {
    background: var(--card);
    padding: 6px 10px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    display: none;
}
.balance-box span { color: var(--gold); }

/* Buttons */
.btn {
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: opacity .2s;
}
.btn:active { opacity: .8; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-block { width: 100%; padding: 12px; margin-top: 16px; }

/* Overlay & Sidebar */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
}
.overlay.show { opacity: 1; visibility: visible; }

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    background: var(--dark);
    z-index: 300;
    transform: translateX(-100%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.sidebar.open { transform: translateX(0); }
.sidebar-header {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-logo-img { height: 64px; }
.close-btn {
    width: 36px;
    height: 36px;
    background: var(--card);
    color: var(--text);
    font-size: 22px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-user {
    padding: 12px;
    background: var(--card);
    margin: 12px;
    border-radius: var(--radius);
    display: none;
    align-items: center;
    gap: 10px;
}
.user-avatar {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-avatar i { font-size: 26px; color: var(--gold); }
.user-info { flex: 1; }
.user-name { font-weight: 600; font-size: 14px; }
.user-balance { color: var(--gold); font-size: 16px; font-weight: 700; }

.sidebar-nav { flex: 1; padding: 8px; }
.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    color: var(--text-dim);
    border-radius: var(--radius);
    margin-bottom: 2px;
    font-size: 14px;
}
.nav-item:active, .nav-item.active { background: var(--card); color: var(--text); }
.nav-item i { font-size: 18px; color: var(--gold); width: 22px; text-align: center; }
.nav-divider { height: 1px; background: var(--border); margin: 8px 12px; }

.sidebar-footer { padding: 12px; border-top: 1px solid var(--border); }
.guest-buttons { display: flex; gap: 8px; }
.guest-buttons .btn { flex: 1; text-align: center; }
.logout-btn {
    width: 100%;
    padding: 11px;
    background: var(--card);
    color: #E74C3C;
    border-radius: var(--radius);
    font-weight: 600;
    display: none;
}

/* Main Content */
.main { padding-top: 80px; min-height: 100vh; }
.container { padding: 12px; max-width: 1200px; margin: 0 auto; }

/* Banner */
.banner-section { margin: 0 -12px 12px; }
.banner-swiper { overflow: hidden; }
.banner-slide img { width: 100%; height: auto; }

/* Main Menu */
.main-menu {
    background: var(--card);
    border-radius: var(--radius);
    margin: 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.main-menu::-webkit-scrollbar { display: none; }
.main-menu-scroll { display: flex; min-width: 100%; }
.main-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
    padding: 10px 12px;
    gap: 3px;
    color: var(--text-dim);
    font-size: 10px;
    font-weight: 600;
    position: relative;
}
.main-menu-item i { font-size: 20px; }
.main-menu-item.active { color: var(--gold); }
.main-menu-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
    opacity: 0;
}
.main-menu-item.active .main-menu-indicator { opacity: 1; }

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.action-item {
    background: var(--card);
    padding: 18px 10px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.action-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.2s ease;
}
.action-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.action-item:hover::before { opacity: 1; }
.action-item:active { transform: translateY(0); }
.action-item i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}
.action-item span {
    font-size: 11px;
    color: var(--text);
    font-weight: 600;
    display: block;
}

/* Section */
.section { margin-bottom: 20px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section-title { font-size: 16px; font-weight: 700; }

/* Provider Filter */
.provider-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 12px;
    scrollbar-width: none;
}
.provider-scroll::-webkit-scrollbar { display: none; }
.provider-btn {
    padding: 7px 14px;
    background: var(--card);
    color: var(--text-dim);
    border-radius: 16px;
    font-size: 12px;
    white-space: nowrap;
}
.provider-btn.active { background: var(--gold); color: var(--black); }

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.game-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
}
.game-thumb {
    aspect-ratio: 1;
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.thumb-initials {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    opacity: .6;
}
.game-thumb.has-img .thumb-initials { display: none; }
.game-info { padding: 6px 8px; }
.game-name {
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-provider { font-size: 9px; color: var(--text-dim); margin-top: 1px; }

/* Load More */
.load-more { text-align: center; padding: 12px; }
.load-more-btn {
    padding: 10px 28px;
    background: var(--card);
    color: var(--gold);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
}
.modal.show, .modal.active { opacity: 1; visibility: visible; }
.modal-box {
    background: var(--dark);
    border-radius: var(--radius);
    width: 100%;
    max-width: 380px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-head {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-title { font-size: 17px; font-weight: 700; }
.modal-close {
    width: 30px;
    height: 30px;
    background: var(--card);
    color: var(--text);
    border-radius: var(--radius);
    font-size: 20px;
    line-height: 1;
}
.modal-body { padding: 16px; }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; color: var(--text-dim); margin-bottom: 8px; font-weight: 500; }
.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    transition: all 0.2s ease;
}
.form-input:focus { outline: none; border-color: var(--gold); background: var(--card); }
.form-input::placeholder { color: var(--text-dim); }
.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4); }
.form-submit:active { transform: translateY(0); opacity: .9; }
.form-submit i { font-size: 18px; }
.form-divider {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    margin: 8px 0 16px;
    border-top: 1px solid var(--border);
    font-weight: 700;
}
.form-footer { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-dim); }
.form-footer a { color: var(--gold); font-weight: 600; }
.form-footer a:hover { text-decoration: underline; }
.form-card { background: var(--card); border-radius: 12px; padding: 20px; margin-bottom: 16px; border: 1px solid var(--border); }
.form-section { margin-bottom: 24px; }
.form-section-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.form-section-title::before { content: ''; width: 4px; height: 16px; background: var(--gold); border-radius: 2px; }

/* Toast */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--card);
    color: var(--text);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    z-index: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .25s;
    border: 1px solid var(--border);
    max-width: 90%;
}
.toast-notification.show { transform: translateX(-50%) translateY(0); }
.toast-success { border-color: #27AE60; }
.toast-error { border-color: #E74C3C; }
.toast-info { border-color: var(--gold); }

/* Empty & Loading */
.empty { text-align: center; padding: 30px 16px; color: var(--text-dim); }
.empty i { font-size: 40px; margin-bottom: 12px; opacity: .5; display: block; }
.loading { display: flex; justify-content: center; padding: 30px; }
.loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

/* User States */
.user-only { display: none !important; }
.guest-only { display: flex !important; }
body.logged-in .guest-only { display: none !important; }
body.logged-in .user-only { display: flex !important; }
body.logged-in .balance-box { display: flex; }
body.logged-in .sidebar-user { display: flex; }
body.logged-in .logout-btn { display: block; }

/* Page System */
.page { display: none; }
.page.active { display: block; }
.page-header { margin-bottom: 16px; }
.page-title { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.page-title i { color: var(--gold); }

/* Balance Card */
.balance-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    padding: 24px 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}
.balance-label { font-size: 13px; color: rgba(0,0,0,0.6); margin-bottom: 6px; font-weight: 500; }
.balance-amount { font-size: 32px; font-weight: 800; color: var(--black); }

/* Bank List */
.bank-list-grouped { display: flex; flex-direction: column; gap: 16px; }
.bank-group { background: var(--dark); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.bank-group-title {
    padding: 12px 16px;
    background: var(--card);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
.bank-group-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
}
.bank-item {
    background: var(--card);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}
.bank-item:hover { border-color: var(--border); transform: translateY(-2px); }
.bank-item.selected { border-color: var(--gold); background: rgba(255, 102, 0, 0.1); }
.bank-logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold);
    background: var(--dark);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    border: 1px solid var(--border);
}
.bank-name { font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.bank-account { font-size: 10px; color: var(--gold); font-family: monospace; margin-top: 4px; }
.bank-holder { font-size: 9px; color: var(--text-dim); margin-top: 2px; }
.bank-check { display: none; position: absolute; top: 8px; right: 8px; color: var(--gold); font-size: 16px; }
.bank-item.selected .bank-check { display: block; }

.selected-bank-info {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}
.bank-detail-card { background: var(--dark); border-radius: 10px; padding: 14px; }
.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.bank-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.bank-detail-row:first-child { padding-top: 0; }
.bank-detail-row .label { color: var(--text-dim); font-size: 12px; }
.bank-detail-row .value { font-weight: 700; color: var(--text); }
.bank-detail-row .value.copyable { color: var(--gold); cursor: pointer; display: flex; align-items: center; gap: 6px; }
.bank-detail-row .value.copyable:hover { text-decoration: underline; }

/* Amount Presets */
.amount-presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.amount-btn {
    padding: 12px 8px;
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.amount-btn:hover { border-color: var(--gold); background: var(--card); }
.amount-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(255, 102, 0, 0.1); }
.deposit-note {
    font-size: 11px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: var(--dark);
    border-radius: 8px;
    margin-top: 10px;
}
.deposit-note i { color: var(--gold); font-size: 14px; }

/* Tabs */
.tab-nav { display: flex; background: var(--dark); border-radius: 10px; padding: 4px; margin-bottom: 16px; border: 1px solid var(--border); }
.tab-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { background: var(--gold); color: var(--black); }
.payment-tabs { display: flex; gap: 8px; margin-bottom: 16px; overflow-x: auto; padding-bottom: 4px; }
.payment-tab {
    flex: 1;
    min-width: fit-content;
    padding: 12px 16px;
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.payment-tab:hover { border-color: var(--gold); color: var(--text); }
.payment-tab.active { background: rgba(255, 102, 0, 0.15); border-color: var(--gold); color: var(--gold); }
.payment-tab i { font-size: 16px; }

/* History */
.history-list { display: flex; flex-direction: column; gap: 10px; }
.history-item {
    background: var(--card);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}
.history-item:hover { border-color: var(--gold); }
.history-info { display: flex; align-items: center; gap: 12px; }
.history-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.history-icon.deposit { background: rgba(39,174,96,.15); color: #27AE60; }
.history-icon.withdraw { background: rgba(231,76,60,.15); color: #E74C3C; }
.history-type { font-weight: 700; font-size: 14px; color: var(--text); }
.history-date { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.history-right { text-align: right; }
.history-amount { font-weight: 800; font-size: 15px; }
.history-amount.deposit { color: #27AE60; }
.history-amount.withdraw { color: #E74C3C; }
.history-status, .badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    margin-top: 4px;
}
.history-status.pending, .badge-warning { background: rgba(241,196,15,.15); color: #F1C40F; }
.history-status.success, .badge-success { background: rgba(39,174,96,.15); color: #27AE60; }
.history-status.rejected, .badge-danger { background: rgba(231,76,60,.15); color: #E74C3C; }

/* Profile */
.profile-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}
.profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
}
.profile-avatar i { font-size: 42px; color: var(--black); }
.profile-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; color: var(--black); }
.profile-joined { font-size: 13px; color: rgba(0,0,0,0.6); }
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-dim); font-size: 13px; }
.info-value { font-weight: 600; color: var(--text); }

/* Promo */
.promo-list { display: flex; flex-direction: column; gap: 12px; }
.promo-accordion { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.promo-card-new { background: var(--card); cursor: pointer; }
.promo-banner {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}
.promo-banner-content { text-align: center; color: #fff; }
.promo-banner-icon { font-size: 32px; margin-bottom: 4px; }
.promo-bonus-big { font-size: 28px; font-weight: 800; }
.promo-info {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promo-title-new { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.promo-meta { display: flex; gap: 10px; font-size: 11px; color: var(--text-dim); }
.promo-meta i { color: var(--gold); }
.promo-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-toggle.active { background: var(--gold); color: var(--black); }
.promo-toggle i { transition: transform .2s; }
.promo-toggle.active i { transform: rotate(180deg); }
.promo-details { max-height: 0; overflow: hidden; transition: max-height .3s; background: var(--dark); }
.promo-details.active { max-height: 400px; }
.promo-details-content { padding: 14px; border-top: 1px solid var(--border); }
.promo-description { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 14px; }
.promo-terms { background: rgba(0,0,0,.2); border-radius: 6px; padding: 12px; margin-bottom: 14px; }
.promo-terms h4 { font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.promo-terms ul { list-style: none; }
.promo-terms li { font-size: 12px; color: var(--text-dim); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; gap: 6px; }
.promo-terms li:before { content: "✓"; color: var(--gold); font-weight: bold; }
.promo-terms li:last-child { border-bottom: none; }
.promo-claim-btn {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Support */
.support-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.support-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 16px 8px;
    text-align: center;
}
.support-item i { font-size: 28px; margin-bottom: 6px; display: block; }
.support-item .bi-whatsapp { color: #25D366; }
.support-item .bi-telegram { color: #0088CC; }
.support-item .bi-chat-dots { color: var(--gold); }
.support-item span { font-size: 12px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card); border-radius: var(--radius); overflow: hidden; }
.faq-question {
    padding: 12px 14px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after { content: '+'; font-size: 18px; color: var(--gold); }
.faq-item.active .faq-question::after { content: '-'; }
.faq-answer { padding: 0 14px 12px; font-size: 12px; color: var(--text-dim); line-height: 1.5; display: none; }
.faq-item.active .faq-answer { display: block; }

/* Coming Soon */
.coming-soon { text-align: center; padding: 40px 16px; }
.coming-soon i { font-size: 48px; color: var(--gold); margin-bottom: 12px; display: block; }
.coming-soon h3 { font-size: 20px; margin-bottom: 6px; }
.coming-soon p { color: var(--text-dim); font-size: 13px; }

/* Bank Info */
.bank-info { background: var(--dark); border-radius: 10px; padding: 16px; border: 1px solid var(--border); }
.bank-info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
.bank-info-row:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.bank-info-row:first-child { padding-top: 0; }
.bank-info-row .label { color: var(--text-dim); }
.bank-info-row .value { font-weight: 700; color: var(--gold); }
.text-dim { color: var(--text-dim); font-size: 12px; }

/* Footer */
.seo-footer { background: var(--dark); border-top: 1px solid var(--border); padding: 30px 0 16px; margin-top: 30px; }
.footer-content { display: grid; gap: 20px; margin-bottom: 20px; }
.footer-logo { height: 72px; margin-bottom: 12px; }
.footer-brand p { font-size: 12px; color: var(--text-dim); line-height: 1.5; }
.footer-links h4 { font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 12px; color: var(--text-dim); }
.footer-providers { margin: 20px 0; text-align: center; }
.footer-providers h4 { font-size: 12px; color: var(--gold); margin-bottom: 12px; }
.footer-providers img { max-width: 100%; opacity: .8; }
.providers-desktop { display: none; }
.providers-mobile { display: block; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 14px; text-align: center; }
.footer-bottom p { font-size: 11px; color: var(--text-dim); }

/* Utility */
.hidden { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* ====================== RESPONSIVE ====================== */

/* Small phones */
@media (max-width: 359px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-actions { grid-template-columns: repeat(2, 1fr); }
    .amount-presets { grid-template-columns: repeat(2, 1fr); }
    .support-options { grid-template-columns: 1fr; }
}

/* Tablets */
@media (min-width: 600px) {
    .games-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .bank-group-list { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: 2fr 1fr 1fr; }
    .providers-desktop { display: block; }
    .providers-mobile { display: none; }
}

/* Desktop */
@media (min-width: 768px) {
    .menu-btn { display: none; }
    .sidebar {
        transform: translateX(0);
        top: 80px;
        height: calc(100% - 80px);
        border-right: 1px solid var(--border);
        width: 240px;
    }
    .sidebar-header { display: none; }
    .overlay { display: none !important; }
    .main { padding-left: 240px; }
    .container { padding: 16px 20px; }
    .games-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
    .main-menu-scroll { justify-content: space-evenly; }
    .main-menu-item { flex: 1; min-width: auto; font-size: 11px; }
    .main-menu-item i { font-size: 22px; }
    .banner-section { margin: 0 0 16px; border-radius: var(--radius); overflow: hidden; }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .games-grid { grid-template-columns: repeat(6, 1fr); }
}
