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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    min-height: 100vh;
    transition: all 0.3s ease;
}

/* Light Mode Styles */
body.light-mode {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #1a1a1a;
}

body.light-mode .header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.light-mode .mobile-logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

body.light-mode .header-logo .logo-text {
    background: linear-gradient(135deg, #d4a017, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .sidebar {
    background: #ffffff;
    border-right: 1px solid #ddd;
}

body.light-mode .content {
    background-image: none;
    background: #f5f5f5;
}

body.light-mode .content::before {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .sidebar-header {
    border-bottom: 1px solid #ddd;
}

body.light-mode .category-box,
body.light-mode .wheel-box {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    color: #1a1a1a;
}

body.light-mode .sidebar-promo-section,
body.light-mode .sidebar-nav,
body.light-mode .sidebar-games,
body.light-mode .sidebar-additional {
    border-top: 1px solid #ddd;
}

body.light-mode .promo-section-title,
body.light-mode .menu-section-title,
body.light-mode .games-section-title,
body.light-mode .additional-section-title {
    color: #666;
}

body.light-mode .promo-link,
body.light-mode .menu-item,
body.light-mode .game-link,
body.light-mode .additional-link {
    color: #1a1a1a;
}

body.light-mode .promo-link:hover,
body.light-mode .menu-item:hover,
body.light-mode .game-link:hover,
body.light-mode .additional-link:hover {
    background: rgba(255, 215, 0, 0.1);
}

body.light-mode .menu-item.active,
body.light-mode li.active .menu-item {
    background: rgba(255, 215, 0, 0.2);
}

body.light-mode .section-header h2 {
    color: #1a1a1a;
}

body.light-mode .game-card-horizontal,
body.light-mode .winner-card,
body.light-mode .cup-card,
body.light-mode .provider-card {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .provider-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(212, 160, 23, 0.5);
}

body.light-mode .promo-banner-card {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border: 2px solid #ffd700;
}

body.light-mode .footer {
    background: #ffffff;
    border-top: 1px solid #ddd;
}

body.light-mode .footer-info-text,
body.light-mode .footer-links li a {
    color: #666;
}

body.light-mode .footer-links li a:hover {
    color: #ffd700;
}

body.light-mode .social-link {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .social-link .fa-whatsapp {
    color: #25D366;
}

body.light-mode .social-link .fa-telegram {
    color: #0088cc;
}

body.light-mode .social-link:hover {
    background: linear-gradient(135deg, #ffd700, #ffb700);
}

body.light-mode .social-link:hover .fa-whatsapp,
body.light-mode .social-link:hover .fa-telegram {
    color: #1a1a1a;
}

body.light-mode .control-btn {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border: 1px solid #ddd;
    color: #1a1a1a;
}

body.light-mode .control-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
}

body.light-mode .additional-icon {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border: 1px solid #ddd;
}

body.light-mode .additional-icon i {
    color: #1a1a1a;
}

body.light-mode .game-icon {
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

body.light-mode .modal-content {
    background: #ffffff;
    color: #1a1a1a;
}

body.light-mode .payment-method-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .payment-method-card.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: #d4a017;
}

body.light-mode .payment-method-card span {
    color: #1a1a1a;
}

body.light-mode .bank-info-box,
body.light-mode .crypto-address-box {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(212, 160, 23, 0.3);
}

body.light-mode .bank-detail {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .bank-detail .value {
    color: #1a1a1a;
}

body.light-mode .crypto-address .address {
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
}

body.light-mode .balance-summary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-color: rgba(212, 160, 23, 0.3);
}

body.light-mode .summary-item .value {
    color: #1a1a1a;
}

body.light-mode .withdraw-warning {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    color: #d97706;
}

body.light-mode .form-input,
body.light-mode .form-select {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #1a1a1a;
}

body.light-mode .winner-name,
body.light-mode .currency-item span {
    color: #1a1a1a;
}

body.light-mode .slider-nav {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ffd700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(255, 215, 0, 0.3);
}

body.light-mode .slider-container {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3),
                0 15px 40px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(255, 215, 0, 0.15),
                inset 0 2px 0 rgba(255, 215, 0, 0.15),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

body.light-mode .slider-dots {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 215, 0, 0.3);
}

body.light-mode .slide::after {
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

body.light-mode .dot {
    background: rgba(0, 0, 0, 0.3);
}

body.light-mode .dot.active {
    background: #ffd700;
}

body.light-mode .winner-game,
body.light-mode .winner-time,
body.light-mode .footer-bottom-right span {
    color: #999;
}

body.light-mode .search-input {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #1a1a1a;
}

body.light-mode .search-input::placeholder {
    color: #999;
}

body.light-mode .btn-call,
body.light-mode .btn-login,
body.light-mode .btn-register {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

body.light-mode .user-balance-box {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .balance-label {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .balance-amount {
    color: #d4a017;
}

body.light-mode .profile-dropdown-menu {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .dropdown-item {
    color: #333;
}

body.light-mode .dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #d4a017;
}

body.light-mode .dropdown-divider {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .live-support-btn {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

body.light-mode .show-all-btn {
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

body.light-mode .sidebar-footer-controls {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid #ddd;
}

body.light-mode .cup-label {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .cup-country {
    color: #666;
}

body.light-mode .cup-name {
    color: #1a1a1a;
}

/* Header Styles */
.header {
    background: #1a1a1a;
    padding: 15px 30px;
    padding-left: 290px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 20px;
}

.header-logo {
    display: none;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-logo:hover .mobile-logo-img {
    filter: drop-shadow(0 3px 8px rgba(255, 215, 0, 0.6));
}

.header-logo:hover .logo-text {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.mobile-logo-img {
    width: 129px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
}

.header-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    gap: 10px;
    margin: 0 30px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    background: #2d2d2d;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: #ffd700;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.header-right {
    display: flex;
    gap: 15px;
}

.btn-call,
.btn-login,
.btn-register {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-call {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #ffffff;
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.btn-login {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    margin-right: 20px;
}

.btn-login:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-register {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
}

.btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 183, 0, 0.5);
}

/* Logged In User Header */
.header-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-balance-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
    height: 38px;
}

.balance-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    line-height: 1;
}

.balance-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.balance-amount {
    font-size: 12px;
    font-weight: 800;
    color: #ffd700;
    white-space: nowrap;
}

.btn-deposit,
.btn-withdraw {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-deposit {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.btn-deposit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.5);
}

.btn-withdraw {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: #ffffff;
}

.btn-withdraw:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.5);
}

.user-profile-dropdown {
    position: relative;
}

.btn-profile {
    padding: 10px 16px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-profile:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-profile .username {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-profile .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.user-profile-dropdown.active .btn-profile .fa-chevron-down {
    transform: rotate(180deg);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.user-profile-dropdown.active .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.dropdown-item i {
    width: 18px;
    font-size: 16px;
}

.notification-badge {
    position: absolute;
    right: 16px;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.dropdown-item:hover .notification-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4444 100%);
    box-shadow: 0 3px 12px rgba(255, 68, 68, 0.6);
}

.dropdown-item.logout {
    color: #ff6b6b;
}

.dropdown-item.logout:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 12px;
}

/* Main Container */
.main-container {
    display: block;
    min-height: calc(100vh - 70px);
    margin-left: 260px;
    position: relative;
}

/* Sidebar Styles */
.sidebar {
    width: 260px;
    background: #1a1a1a;
    padding: 15px 10px;
    padding-bottom: 100px; /* Alt için ekstra padding */
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #333;
    transition: all 0.3s ease;
    z-index: 999; /* Düşürüldü: 3000 → 999 */
    position: fixed;
    left: 0;
    top: 70px; /* Header yüksekliği */
    height: calc(100vh - 70px); /* Header yüksekliği kadar düşüldü */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar.collapsed {
    width: 70px;
    padding: 15px 5px;
}

body:has(.sidebar.collapsed) .main-container {
    margin-left: 70px;
}

body:has(.sidebar.collapsed) .header {
    padding-left: 100px;
}

.sidebar.hidden {
    transform: translateX(-260px);
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Sidebar Category Buttons */
/* Sidebar Header */
.sidebar-header {
    padding: 15px 10px 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 10px;
}

.sidebar-logo:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.sidebar-logo:active {
    transform: scale(0.98);
}

.sidebar-logo img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sidebar-logo .logo-text {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.menu-toggle-sidebar {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.menu-toggle-sidebar:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: scale(1.1);
}

.menu-toggle-sidebar:active {
    transform: scale(0.95);
}

.sidebar.collapsed .sidebar-header {
    flex-direction: column;
    gap: 10px;
    padding: 10px 5px;
}

.sidebar.collapsed .sidebar-logo .logo-text {
    font-size: 20px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.sidebar.collapsed .sidebar-logo img {
    max-width: 40px;
    max-height: 40px;
}

.sidebar-categories {
    padding: 0 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-categories {
    padding: 10px 5px;
}

.category-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.category-box {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-box:hover::before {
    opacity: 1;
}

.category-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    border-color: #ffed4e;
}

/* Casino & Sport Boxes */
.casino-box,
.sport-box {
    flex-direction: column;
    padding: 12px;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.category-icon i {
    font-size: 20px;
    color: #1a1a1a;
}

.category-text {
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sidebar.collapsed .menu-toggle-sidebar {
    padding: 6px;
    font-size: 20px;
}

.sidebar.collapsed .category-text {
    display: none;
}

.sidebar.collapsed .category-icon {
    margin-bottom: 0;
}

.sidebar.collapsed .category-row {
    grid-template-columns: 1fr;
    gap: 8px;
}

.sidebar.collapsed .category-box {
    padding: 10px;
}

/* Wheel Box - Full Width */
.wheel-box {
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d00);
    border: 2px solid #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wheel-box:hover {
    background: linear-gradient(135deg, #2d2d00, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.wheel-box-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.wheel-character {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.wheel-character i {
    font-size: 26px;
    color: #1a1a1a;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.wheel-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.wheel-label {
    font-size: 20px;
    font-weight: 900;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wheel-label-white {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar.collapsed .wheel-text {
    display: none;
}

.sidebar.collapsed .wheel-box {
    padding: 10px;
    justify-content: center;
}

.sidebar.collapsed .wheel-box-content {
    justify-content: center;
}

.sidebar.collapsed .wheel-character {
    width: 45px;
    height: 45px;
}

.sidebar.collapsed .wheel-character i {
    font-size: 24px;
}

/* Promotions Section */
.sidebar-promo-section {
    padding: 0 10px 15px;
    border-bottom: 1px solid #333;
}

.promo-section-title {
    font-size: 11px;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffd700;
    position: relative;
    transition: all 0.3s ease;
}

.sidebar.collapsed .promo-section-title {
    display: none;
}

.sidebar.collapsed .sidebar-promo-section {
    padding: 10px 5px;
    border-bottom: 1px solid #333;
}

.promo-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ffd700;
}

.promo-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.promo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 14px;
}

.promo-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(3px);
}

.promo-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promo-icon i {
    font-size: 18px;
    color: #ffd700;
}

.telegram-icon {
    background: rgba(0, 136, 204, 0.15);
}

.telegram-icon i {
    color: #0088cc;
}

.promo-link:hover .promo-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.promo-link:hover .telegram-icon {
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

.sidebar.collapsed .promo-link {
    padding: 10px;
    justify-content: center;
}

.sidebar.collapsed .promo-link span {
    display: none;
}

/* Collapsed Menu Items */
.sidebar.collapsed .menu-item {
    padding: 10px;
    justify-content: center;
}

.sidebar.collapsed .menu-text {
    display: none;
}

.sidebar.collapsed .badge-new {
    display: none;
}

.sidebar.collapsed .menu-icon {
    margin: 0 auto;
}

/* Sidebar Games Section */
.sidebar-games {
    margin-top: 30px;
    padding: 20px 10px;
    border-top: 1px solid #333;
}

.games-section-title {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.games-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.game-item {
    position: relative;
}

.game-link {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    gap: 12px;
}

.game-link:hover {
    background: rgba(255, 215, 0, 0.1);
}

.game-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.game-icon i {
    color: #1a1a1a;
    font-size: 18px;
}

.game-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.submenu-toggle {
    color: #ffd700;
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.game-item.active .submenu-toggle {
    transform: rotate(180deg);
}

.badge-new-yellow {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.sidebar.collapsed .sidebar-games {
    padding: 15px 5px;
}

.sidebar.collapsed .games-section-title {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.sidebar.collapsed .game-text {
    opacity: 0;
    width: 0;
}

.sidebar.collapsed .submenu-toggle {
    display: none;
}

.sidebar.collapsed .badge-new-yellow {
    display: none;
}

.sidebar.collapsed .game-link {
    justify-content: center;
    padding: 10px 5px;
}

.sidebar.collapsed .game-icon {
    width: 40px;
    height: 40px;
}

/* Sidebar Additional Info Section */
.sidebar-additional {
    margin-top: 20px;
    padding: 20px 10px;
    padding-bottom: 150px; /* Alt kısım için ekstra padding */
    border-top: 1px solid #333;
}

.additional-section-title {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.additional-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.additional-item {
    position: relative;
}

.additional-link {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    gap: 12px;
    border: 2px solid transparent;
}

.additional-item.featured .additional-link {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.additional-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.additional-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.additional-item.featured .additional-icon {
    background: linear-gradient(135deg, #ffd700, #ffb700);
}

.additional-icon i {
    color: #ffd700;
    font-size: 16px;
}

.additional-item.featured .additional-icon i {
    color: #1a1a1a;
}

.additional-text {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Sidebar Footer Controls */
.sidebar-footer-controls {
    display: flex;
    gap: 8px;
    padding: 10px;
    padding-bottom: 30px; /* Alt için ekstra padding */
    margin-bottom: 80px;  /* Alt kısımda boşluk */
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid #333;
}

.control-btn {
    flex: 1;
    height: 40px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
}

.control-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.control-btn.active {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.control-btn i {
    font-size: 14px;
}

.language-toggle {
    position: relative;
}

.sidebar.collapsed .sidebar-additional {
    padding: 15px 5px;
}

.sidebar.collapsed .additional-section-title {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.sidebar.collapsed .additional-text {
    opacity: 0;
    width: 0;
}

.sidebar.collapsed .additional-link {
    justify-content: center;
    padding: 10px 5px;
}

.sidebar.collapsed .additional-icon {
    width: 40px;
    height: 40px;
}

.sidebar.collapsed .sidebar-footer-controls {
    flex-direction: column;
    gap: 5px;
}

.sidebar.collapsed .control-btn {
    height: 35px;
}

.sidebar.collapsed .flag-icon {
    width: 18px;
    height: 12px;
}

.sidebar.collapsed .control-btn .fa-chevron-down {
    display: none;
}

/* Hide scrollbar in collapsed state */
.sidebar.collapsed::-webkit-scrollbar {
    width: 4px;
}

/* Active state in collapsed sidebar */
.sidebar.collapsed .sidebar-menu li.active .menu-item {
    border-width: 2px;
    padding: 8px;
}

/* Tooltip for collapsed sidebar */
.sidebar.collapsed .menu-item,
.sidebar.collapsed .promo-link {
    position: relative;
}

.sidebar.collapsed .menu-item::after,
.sidebar.collapsed .promo-link::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid #ffd700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.sidebar.collapsed .menu-item:hover::after,
.sidebar.collapsed .promo-link:hover::after {
    opacity: 1;
}

.sidebar-nav {
    width: 100%;
    padding: 15px 10px 10px;
}

.menu-section-title {
    font-size: 11px;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffd700;
    position: relative;
    transition: all 0.3s ease;
}

.sidebar.collapsed .menu-section-title {
    display: none;
}

.sidebar.collapsed .sidebar-nav {
    padding: 10px 5px;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ffd700;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 5px;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

/* Menu Item Styling */
.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Menu Icon Box */
.menu-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.menu-icon i {
    font-size: 20px;
    color: #ffffff;
}

.menu-text {
    flex: 1;
    font-weight: 500;
}

/* Wheel SVG in Menu */
.wheel-svg {
    width: 24px;
    height: 24px;
}

/* VIP Icon Special */
.vip-icon {
    background: rgba(255, 255, 255, 0.1);
}

.vip-text {
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Active Menu Item */
.sidebar-menu li.active .menu-item {
    background: transparent;
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.sidebar-menu li.active .menu-icon {
    background: #ffd700;
}

.sidebar-menu li.active .menu-icon i {
    color: #1a1a1a;
}

.sidebar-menu li.active .vip-text {
    color: #1a1a1a;
}

.sidebar-menu li.active .menu-text {
    color: #ffd700;
    font-weight: bold;
}

/* Badge Styling */
.badge-new {
    background: #ffd700;
    color: #1a1a1a;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

/* Content Area */
.content {
    width: 100%;
    padding: 30px 30px 80px 30px;
    overflow-x: hidden;
    transition: all 0.3s ease;
    position: relative;
    background-image: url('bg/ze0z0eskNINKF115seHnujKtLKXg9nCOdHqspqfg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
    pointer-events: none;
}

.content > * {
    position: relative;
    z-index: 1;
}

/* Main Slider */
.main-slider {
    margin-top: -30px;
    margin-bottom: 20px;
    margin-left: -10px;
    margin-right: -30px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin: 0 30px;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

.slide-content-overlay {
    background: transparent;
    position: relative;
    z-index: 2;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.slide-content-overlay::before {
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.slide-text {
    position: relative;
    z-index: 4;
    max-width: 600px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.slide-content-overlay .slide-text {
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
}

.slide-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease-out;
}

.slide-subtitle {
    font-size: 56px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    animation: slideInLeft 0.8s ease-out 0.1s backwards;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
}

.slide-description {
    font-size: 24px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.5;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.slide-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border: none;
    border-radius: 50px;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 4;
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
}

.slide-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon {
    font-size: 250px;
    color: rgba(255, 215, 0, 0.2);
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.5));
    animation: slideInRight 0.8s ease-out, rotateIcon 20s linear infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateIcon {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.05);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    color: #ffd700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 215, 0, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: #ffd700;
    border-color: #ffffff;
    width: 40px;
    border-radius: 10px;
}

/* Banner Section - 4 Card Grid */
.banner-section {
    margin-bottom: 20px;
    margin-left: -30px;
    margin-right: -30px;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0 30px;
}

.promo-banner-card {
    height: 280px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: #ffed4e;
}

.banner-image-only:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.banner-glow {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.promo-banner-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

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

.banner-title {
    font-size: 52px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.banner-image-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

.banner-icon {
    font-size: 150px;
    color: rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.btn-details {
    padding: 14px 30px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-details:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.6);
}

.btn-details i {
    transition: transform 0.3s ease;
}

.btn-details:hover i {
    transform: translateX(5px);
}

/* Individual Banner Styles */
.slot-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
}

.casino-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
}

.sport-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a2d1a 100%);
}

.vip-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a1a2d 100%);
}

/* Banner with Image Only */
.banner-image-only {
    padding: 0;
    overflow: hidden;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.banner-full-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

/* League Cups Section */
.league-cups-section {
    margin-bottom: 20px;
    margin-left: -30px;
    margin-right: -30px;
    overflow: hidden;
}

.cups-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 30px 15px 60px;
    scroll-behavior: smooth;
}

.cups-container::-webkit-scrollbar {
    height: 8px;
}

.cups-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.cups-container::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 10px;
}

.cup-card {
    min-width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #8b7355, #6b5a43);
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(160, 130, 109, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.cup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cup-card:hover::before {
    opacity: 1;
}

.cup-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
    border-color: #ffd700;
}

.cup-image {
    width: 180px;
    height: 142px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.cup-card:hover .cup-image {
    transform: scale(1.1);
}

.cup-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cup-country {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cup-name {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

/* Games Section */
.games-section {
    margin-bottom: 20px;
    margin-left: -30px;
    margin-right: -30px;
}

.games-section .section-header {
    padding: 0 30px;
}

.games-section .games-horizontal-scroll {
    padding-left: 30px;
    padding-right: 30px;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    color: #ffffff;
}

.section-header i {
    color: #ffd700;
}

.show-all-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #1a1a1a;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-all-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.show-all-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.show-all-btn.active {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: #fff;
}

.show-all-btn.active:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444);
}

.show-all-btn.active i {
    transform: rotate(180deg);
}

.show-all-btn.expanded i {
    transform: rotate(180deg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* Horizontal Scroll for Slots */
.games-horizontal-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    transition: all 0.3s ease;
}

.games-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.games-horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.games-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 10px;
}

.games-horizontal-scroll.expanded {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    overflow: visible;
    padding-left: 30px;
    padding-right: 30px;
}

.game-card-horizontal {
    min-width: 200px;
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.games-horizontal-scroll.expanded .game-card-horizontal {
    min-width: auto;
    width: 100%;
}

.game-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.game-real-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.game-play-btn-small {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border: none;
    color: #1a1a1a;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 12px 12px;
    position: relative;
    z-index: 2;
}

.game-play-btn-small:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.5);
}

.game-card {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}

.game-image {
    height: 250px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
}

.game-placeholder i {
    font-size: 48px;
    opacity: 0.8;
}

.game-placeholder h3 {
    font-size: 16px;
    line-height: 1.3;
}

.game-play-btn {
    width: 100%;
    padding: 12px;
    background: #ffd700;
    border: none;
    color: #1a1a1a;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-play-btn:hover {
    background: #ffed4e;
}

/* Promo Card */
.promo-card {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
}

.promo-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.promo-card p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.promo-btn {
    padding: 15px 40px;
    background: #ffffff;
    color: #ff6b6b;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Winners Section */
.winners-section {
    margin-bottom: 20px;
    margin-left: -30px;
    margin-right: -30px;
}

.winners-section .section-header {
    padding: 0 30px;
    margin-bottom: 30px;
}

.winners-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    padding: 0 30px;
}

.winner-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.winner-card:hover::before {
    opacity: 1;
}

.winner-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.winner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.winner-name {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.winner-game {
    font-size: 13px;
    color: #888;
}

.winner-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.amount {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.winner-time {
    font-size: 11px;
    color: #666;
}

/* Winner Card Animation */
@keyframes slideInWinner {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.winner-card {
    animation: slideInWinner 0.5s ease forwards;
}

.winner-card:nth-child(1) { animation-delay: 0.1s; }
.winner-card:nth-child(2) { animation-delay: 0.2s; }
.winner-card:nth-child(3) { animation-delay: 0.3s; }
.winner-card:nth-child(4) { animation-delay: 0.4s; }
.winner-card:nth-child(5) { animation-delay: 0.5s; }
.winner-card:nth-child(6) { animation-delay: 0.6s; }
.winner-card:nth-child(7) { animation-delay: 0.7s; }
.winner-card:nth-child(8) { animation-delay: 0.8s; }

/* Providers Section */
.providers-section {
    margin-bottom: 20px;
    margin-left: -30px;
    margin-right: -30px;
}

.providers-section .section-header {
    padding: 0 30px;
    margin-bottom: 30px;
}

.providers-scroll {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    padding: 0 30px 15px 30px;
    position: relative;
}

.providers-scroll::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 15px;
    width: 100px;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95), transparent);
    z-index: 2;
    pointer-events: none;
}

.providers-scroll::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 15px;
    width: 100px;
    background: linear-gradient(to left, rgba(26, 26, 26, 0.95), transparent);
    z-index: 2;
    pointer-events: none;
}

.providers-scroll::-webkit-scrollbar {
    display: none;
}

.providers-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Auto scroll animation */
@keyframes scrollProviders {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.providers-scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollProviders 60s linear infinite;
    will-change: transform;
}

.providers-scroll-track:hover {
    animation-play-state: paused;
}

.provider-card {
    min-width: 180px;
    aspect-ratio: 16/9;
    background: transparent;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.providers-scroll.expanded .provider-card {
    width: 100%;
    min-width: unset;
    flex-shrink: 1;
}

.provider-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
}

.provider-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.provider-card:hover img {
    opacity: 1;
    filter: brightness(1.1);
}

/* Providers Expanded View */
.providers-scroll.expanded {
    overflow: visible;
}

.providers-scroll.expanded::before,
.providers-scroll.expanded::after {
    display: none;
}

.providers-scroll.expanded .providers-scroll-track {
    animation: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    margin-left: 260px;
    padding: 60px 30px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0.3;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    color: #ffd700;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.social-link .fa-whatsapp {
    color: #25D366;
}

.social-link:hover .fa-whatsapp {
    color: #1a1a1a;
}

.social-link .fa-telegram {
    color: #0088cc;
}

.social-link:hover .fa-telegram {
    color: #1a1a1a;
}

/* Footer Info Bar */
.footer-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.footer-info-left {
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-info-center {
    flex: 1;
    text-align: center;
}

.footer-info-text {
    color: #888;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.footer-info-right {
    flex-shrink: 0;
}

.footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.curacao-badge {
    background: transparent;
    padding: 0;
}

.curacao-badge img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.age-badge {
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
}

.age-badge img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.ebet-badge {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 12px;
}

.footer-bottom-left .footer-link-main {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom-left .footer-link-main:hover {
    color: #ffed4e;
}

.footer-bottom-center {
    text-align: center;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    font-size: 11px;
}

.footer-bottom-right span {
    color: #666;
}

.footer-bottom-right a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #ffd700;
}

/* Supported Currencies */
.currencies-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.currencies-title {
    color: #ffd700;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
}

.currencies-scroll {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.currency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-item:hover {
    transform: translateY(-5px);
}

.currency-item span {
    color: #999;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.currency-item:hover span {
    color: #ffd700;
}

.currency-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.currency-icon i {
    font-size: 22px;
}

.currency-item:hover .currency-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Currency specific colors */
.try-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.btc-icon {
    background: linear-gradient(135deg, #f7931a, #e87e04);
}

.eth-icon {
    background: linear-gradient(135deg, #627eea, #4c6dd9);
}

.usdt-icon {
    background: linear-gradient(135deg, #26a17b, #1e8e6a);
}

.bnb-icon {
    background: linear-gradient(135deg, #f3ba2f, #e0a82e);
}

.trx-icon {
    background: linear-gradient(135deg, #ff0013, #d90011);
}

.xrp-icon {
    background: linear-gradient(135deg, #23292f, #1a1f24);
}

.doge-icon {
    background: linear-gradient(135deg, #c2a633, #b09530);
}

.ltc-icon {
    background: linear-gradient(135deg, #345d9d, #2a4a7c);
}

.usdc-icon {
    background: linear-gradient(135deg, #2775ca, #1e5fa8);
}

.link-icon {
    background: linear-gradient(135deg, #2a5ada, #1e4bb8);
}

.shib-icon {
    background: linear-gradient(135deg, #ffa409, #e69308);
}

.avax-icon {
    background: linear-gradient(135deg, #e84142, #d13435);
}

.ada-icon {
    background: linear-gradient(135deg, #0033ad, #002989);
}

body:has(.sidebar.collapsed) .footer {
    margin-left: 70px;
}

/* Live Support */
.live-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10003;
}

.live-support-btn {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    color: #1a1a1a;
    font-weight: bold;
    position: relative;
    z-index: 10000;
}

.live-support-btn i {
    font-size: 24px;
}

.support-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.live-support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.modal-content-large {
    max-width: 600px;
}

.modal-content-info {
    max-width: 700px;
    text-align: left;
}

.modal-content-info h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.modal-content-info h3:first-child {
    margin-top: 0;
}

.modal-content-info h4 {
    color: #ffed4e;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.modal-content-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-content-info ul {
    list-style: none;
    padding-left: 0;
}

.modal-content-info ul li {
    color: #ccc;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.modal-content-info ul li:before {
    content: '•';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.modal-content-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.modal-content-info a:hover {
    text-decoration: underline;
}

.modal-content-info strong {
    color: #fff;
    font-weight: 700;
}

.modal-content-info em {
    color: #999;
    font-style: italic;
}

.modal-large .modal-content {
    max-width: 700px;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
    text-align: center;
}

.modal-description {
    text-align: center;
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.form-group input::placeholder {
    color: #888;
}

.form-group input[type="date"] {
    color-scheme: dark;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ffd700;
}

.forgot-password {
    color: #ffd700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    text-decoration: underline;
}

.modal-btn {
    padding: 16px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border: none;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.modal-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.modal-btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.modal-btn-success:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
}

.modal-btn-danger {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: #ffffff;
}

.modal-btn-danger:hover {
    background: linear-gradient(135deg, #ff6b6b, #dc3545);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 25px 0;
}

.payment-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.payment-method-card.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-color: #ffd700;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
}

.payment-method-card span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}

/* Quick Amounts */
.quick-amounts {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.quick-amount-btn {
    flex: 1;
    min-width: 80px;
    padding: 10px 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #ffd700;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.quick-amount-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.quick-amount-btn.active {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
}

/* Bank Info Box */
.bank-info-box,
.crypto-address-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.bank-info-box h3 {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 15px;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bank-detail:last-child {
    border-bottom: none;
}

.bank-detail .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.bank-detail .value {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* Crypto Address Box */
.crypto-address-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #1a1a1a;
}

.crypto-address {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crypto-address .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.crypto-address .address {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-all;
}

/* Balance Summary */
.balance-summary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-item .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.summary-item .value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.summary-item .value.success {
    color: #28a745;
}

/* Withdraw Warning */
.withdraw-warning {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffb347;
}

.withdraw-warning i {
    font-size: 20px;
    margin-top: 2px;
}

.withdraw-warning span {
    font-size: 13px;
    line-height: 1.5;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.form-footer {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    margin-top: 10px;
}

.form-footer a,
.switch-modal {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-footer a:hover,
.switch-modal:hover {
    text-decoration: underline;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 15px;
        padding-left: 15px;
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
    }
    
    /* Show mobile logo */
    .header-logo {
        display: flex;
    }
    
    /* Sidebar logo mobile */
    .sidebar-logo img {
        max-width: 100px;
        max-height: 40px;
    }
    
    .main-container {
        margin-left: 0;
    }
    
    .search-container {
        display: none;
    }
    
    /* Sidebar mobile padding */
    .sidebar {
        padding-bottom: 150px;
    }
    
    .sidebar-additional {
        padding-bottom: 200px;
    }
    
    .sidebar-footer-controls {
        margin-bottom: 100px;
    }
    
    .header.search-active .search-container {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 10px 15px;
        max-width: 100%;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    body.light-mode .header.search-active .search-container {
        background: #ffffff;
    }
    
    .header-right {
        display: flex;
        gap: 6px;
        flex-wrap: nowrap;
    }
    
    .btn-call {
        display: none;
    }
    
    .btn-login,
    .btn-register {
        padding: 8px 12px;
        font-size: 11px;
        min-width: unset;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        white-space: nowrap;
    }
    
    .btn-login {
        margin-right: 15px;
    }
    
    .btn-login i,
    .btn-register i {
        font-size: 14px;
        margin: 0;
    }
    
    /* Logged In User Mobile */
    .header-user {
        gap: 6px;
        width: 100%;
        justify-content: flex-end;
    }
    
    .user-balance-box {
        padding: 6px 10px;
        height: 36px;
    }
    
    .balance-label {
        font-size: 7px;
    }
    
    .balance-amount {
        font-size: 10px;
    }
    
    .btn-deposit,
    .btn-withdraw {
        padding: 8px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .btn-deposit span,
    .btn-withdraw span {
        display: none;
    }
    
    .btn-deposit i,
    .btn-withdraw i {
        font-size: 16px;
        margin: 0;
    }
    
    .btn-profile {
        padding: 8px 10px;
        font-size: 11px;
        gap: 5px;
    }
    
    .btn-profile .username {
        display: none;
    }
    
    .btn-profile .fa-user-circle {
        font-size: 18px;
    }
    
    .profile-dropdown-menu {
        right: 0;
        min-width: 200px;
    }
    
    
    .sidebar {
        position: fixed !important;
        left: 2px !important;
        top: 61px !important;
        height: calc(100vh - 61px) !important; /* Header yüksekliği kadar düşüldü */
        z-index: 998 !important;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5) !important;
        width: 260px !important;
        transition: transform 0.3s ease-in-out !important;
        will-change: transform;
        transform: translateX(-260px);
    }
    
    /* Mobile doesn't show collapsed mode, only hide/show */
    .sidebar.collapsed {
        width: 260px;
        padding: 15px 10px;
    }
    
    .sidebar.collapsed .category-text,
    .sidebar.collapsed .wheel-text,
    .sidebar.collapsed .promo-section-title,
    .sidebar.collapsed .menu-section-title,
    .sidebar.collapsed .menu-text,
    .sidebar.collapsed .badge-new,
    .sidebar.collapsed .promo-link span,
    .sidebar.collapsed .game-text,
    .sidebar.collapsed .games-section-title,
    .sidebar.collapsed .badge-new-yellow,
    .sidebar.collapsed .submenu-toggle,
    .sidebar.collapsed .additional-text,
    .sidebar.collapsed .additional-section-title {
        display: block;
        opacity: 1;
        width: auto;
        height: auto;
    }
    
    .sidebar.collapsed .sidebar-footer-controls {
        flex-direction: row;
        gap: 8px;
    }
    
    .sidebar.collapsed .control-btn {
        height: 40px;
    }
    
    .sidebar.collapsed .control-btn .fa-chevron-down {
        display: inline;
    }
    
    .sidebar.collapsed .category-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .sidebar.collapsed .menu-item::after,
    .sidebar.collapsed .promo-link::after {
        display: none;
    }
    
    /* Overlay for mobile menu */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 10001;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-overlay.active {
        /* Overlay active state - handled by JS */
    }
    
    /* Category boxes mobile adjustments */
    .sidebar-categories {
        padding: 12px 8px;
    }
    
    .category-box {
        padding: 12px;
    }
    
    .category-icon {
        width: 35px;
        height: 35px;
    }
    
    .category-icon i {
        font-size: 18px;
    }
    
    .category-text {
        font-size: 12px;
    }
    
    .wheel-box {
        padding: 15px;
    }
    
    .wheel-character {
        width: 45px;
        height: 45px;
    }
    
    .wheel-character i {
        font-size: 22px;
    }
    
    .wheel-label,
    .wheel-label-white {
        font-size: 18px;
    }
    
    /* Promo section mobile */
    .sidebar-promo-section {
        padding: 0 8px 12px;
    }
    
    .promo-link {
        padding: 10px;
        font-size: 13px;
    }
    
    .promo-icon {
        width: 32px;
        height: 32px;
    }
    
    .promo-icon i {
        font-size: 16px;
    }
    
    /* Menu items mobile */
    .menu-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .menu-icon {
        width: 34px;
        height: 34px;
    }
    
    .menu-icon i {
        font-size: 18px;
    }
    
    .wheel-svg {
        width: 20px;
        height: 20px;
    }
    
    .content {
        padding: 15px 15px 60px 15px;
        width: 100%;
        background-attachment: scroll;
    }
    
    .content::before {
        background: rgba(0, 0, 0, 0.9);
    }
    
    /* Slider Mobile Styles */
    .main-slider {
        margin-top: -30px;
        margin-left: 5px;
        margin-right: -15px;
        margin-bottom: 15px;
        padding: 0;
    }
    
    .slider-container {
        height: auto;
        aspect-ratio: 4/5;
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                    0 10px 30px rgba(255, 215, 0, 0.2),
                    inset 0 0 50px rgba(0, 0, 0, 0.3);
        perspective: 1000px;
    }
    
    .slide-content {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .slide-content-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .slide-text {
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-subtitle {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .slide-image {
        display: none;
    }
    
    .slide picture {
        width: 100%;
        height: 100%;
    }
    
    .slider-track {
        transform-style: preserve-3d;
    }
    
    .slide {
        transform: translateZ(30px);
        transform-style: preserve-3d;
        box-shadow: inset 0 20px 60px rgba(0, 0, 0, 0.5),
                    inset 0 -20px 60px rgba(0, 0, 0, 0.4);
    }
    
    .slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        pointer-events: none;
        z-index: 10;
    }
    
    .slide-bg-image {
        object-fit: cover;
        object-position: center;
        transform: scale(1.05);
        filter: brightness(0.95) contrast(1.1);
    }
    
    .slider-container {
        background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
        position: relative;
        border: 4px solid rgba(255, 215, 0, 0.4);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9),
                    0 15px 40px rgba(0, 0, 0, 0.7),
                    0 5px 15px rgba(255, 215, 0, 0.2),
                    inset 0 2px 0 rgba(255, 215, 0, 0.2),
                    inset 0 -2px 0 rgba(0, 0, 0, 0.5);
    }
    
    .slider-container::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2), transparent 70%);
        z-index: -1;
        filter: blur(25px);
        animation: glowPulse 3s ease-in-out infinite;
    }
    
    @keyframes glowPulse {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }
    
    body.light-mode .slider-container {
        background: #f5f5f5;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    /* Banner Cards Mobile */
    .banner-section {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 15px;
    }
    
    .promo-banner-card {
        height: 220px;
        padding: 25px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-icon {
        font-size: 100px;
    }
    
    .banner-image-right {
        width: 150px;
        height: 150px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    /* Games Section Mobile */
    .games-section {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .games-section .section-header {
        padding: 0 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .games-section .games-horizontal-scroll {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Horizontal scroll mobile */
    .game-card-horizontal {
        min-width: 160px;
    }
    
    .game-real-image {
        height: 200px;
    }
    
    .show-all-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .games-horizontal-scroll.expanded {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* League Cups Mobile */
    .league-cups-section {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .cups-container {
        display: flex;
        gap: 12px;
        padding: 0 15px 15px 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .cups-container::-webkit-scrollbar {
        display: none;
    }
    
    .cups-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .cup-card {
        min-width: 140px;
        height: 160px;
        padding: 20px 15px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        border-radius: 15px;
        box-shadow: none;
        border: none;
        position: relative;
        overflow: visible;
    }
    
    .cup-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 215, 0, 0.08);
        border-radius: 15px;
        border: 1px solid rgba(255, 215, 0, 0.15);
        pointer-events: none;
        z-index: 0;
    }
    
    .cup-image {
        width: auto;
        height: 80px;
        max-width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
        z-index: 1;
    }
    
    .cup-label {
        padding: 6px 8px;
        gap: 2px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        text-align: center;
        width: auto;
        max-width: 100%;
        z-index: 1;
    }
    
    .cup-country {
        font-size: 8px;
        letter-spacing: 0.5px;
        opacity: 1;
        color: #fff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .cup-name {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        color: #fff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    body.light-mode .cup-card::before {
        background: rgba(255, 215, 0, 0.12);
        border-color: rgba(255, 215, 0, 0.25);
    }
    
    body.light-mode .cup-label {
        background: rgba(0, 0, 0, 0.6);
    }
    
    body.light-mode .cup-image {
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
    
    /* Winners Section Mobile */
    .winners-section {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .winners-section .section-header {
        padding: 0 15px;
    }
    
    .winners-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .winner-card {
        padding: 15px;
    }
    
    .winner-avatar {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .winner-name {
        font-size: 14px;
    }
    
    .winner-game {
        font-size: 12px;
    }
    
    .amount {
        font-size: 18px;
    }
    
    /* Providers Section Mobile */
    .providers-section {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .providers-section .section-header {
        padding: 0 15px;
    }
    
    .providers-scroll {
        padding: 0 15px 15px 15px;
    }
    
    .providers-scroll::before,
    .providers-scroll::after {
        width: 50px;
    }
    
    .providers-scroll:not(.expanded) .provider-card {
        min-width: 160px;
        height: 110px;
        padding: 18px 15px;
    }
    
    .providers-scroll.expanded .provider-card {
        width: 100%;
        aspect-ratio: 4/3;
        padding: 20px 15px;
    }
    
    .providers-scroll.expanded .providers-scroll-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .cups-container {
        padding: 0 15px 15px 15px;
    }
    
    .cup-card {
        min-width: 220px;
        height: 280px;
        padding: 20px 15px;
    }
    
    .cup-image {
        width: 108px;
        height: 180px;
    }
    
    .cup-name {
        font-size: 16px;
    }
    
    .cup-country {
        font-size: 11px;
    }
    
    /* Modal mobile styles */
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    .modal-content-large {
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-close {
        right: 15px;
        top: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .modal-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 95%;
        padding: 25px 20px;
        max-height: 85vh;
    }
    
    .modal-large .modal-content {
        max-width: 95%;
    }
    
    /* Deposit/Withdraw Mobile */
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-method-card {
        padding: 15px 10px;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .payment-method-card span {
        font-size: 11px;
    }
    
    .quick-amounts {
        gap: 6px;
    }
    
    .quick-amount-btn {
        min-width: 60px;
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .balance-summary {
        flex-direction: column;
        gap: 10px;
    }
    
    .bank-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
        font-size: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer {
        margin-left: 0;
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-title {
        font-size: 13px;
    }
    
    .footer-links li a {
        font-size: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Footer Info Bar Mobile */
    .footer-info-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
    
    .footer-info-text {
        font-size: 11px;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .badge-item {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .curacao-badge img {
        height: 40px;
    }
    
    .age-badge img {
        height: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        font-size: 11px;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Currencies Mobile */
    .currencies-section {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .currencies-title {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .currencies-scroll {
        gap: 15px;
        padding: 0 10px;
    }
    
    .currency-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .currency-item span {
        font-size: 11px;
    }
}

/* Extra Small Devices (phones, less than 480px) */
@media (max-width: 480px) {
    .header {
        padding: 10px 8px;
    }
    
    .mobile-logo-img {
        width: 129px;
        height: 60px;
    }
    
    .header-logo .logo-text {
        font-size: 16px;
    }
    
    .header-right {
        gap: 4px;
    }
    
    .btn-login,
    .btn-register {
        min-width: unset;
        height: 36px;
        padding: 6px 10px;
        font-size: 10px;
        gap: 4px;
    }
    
    .btn-login {
        margin-right: 10px;
    }
    
    .btn-login i,
    .btn-register i {
        font-size: 13px;
    }
    
    /* Logged In User Extra Small */
    .user-balance-box {
        padding: 6px 8px;
        height: 34px;
    }
    
    .balance-label {
        font-size: 7px;
    }
    
    .balance-amount {
        font-size: 9px;
    }
    
    .btn-deposit,
    .btn-withdraw {
        padding: 7px 8px;
        min-width: 36px;
        height: 36px;
    }
    
    .btn-deposit i,
    .btn-withdraw i {
        font-size: 14px;
    }
    
    .btn-profile {
        padding: 7px 8px;
        min-width: 36px;
        height: 36px;
    }
    
    .btn-profile .fa-user-circle {
        font-size: 16px;
    }
    
    .btn-profile .fa-chevron-down {
        display: none;
    }
    
    .search-container {
        padding: 8px 10px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Modal Extra Small */
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        width: 98%;
        padding: 20px 15px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-description {
        font-size: 13px;
    }
    
    .modal-large .modal-content {
        max-width: 98%;
        padding: 20px 12px;
    }
    
    /* Deposit/Withdraw Pages */
    .page-header {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border-bottom: 2px solid #ffd700;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .page-header-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .btn-back {
        background: rgba(255, 215, 0, 0.1);
        border: 2px solid #ffd700;
        color: #ffd700;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 18px;
    }
    
    .btn-back:hover {
        background: #ffd700;
        color: #000;
        transform: translateX(-5px);
    }
    
    .page-title-group {
        flex: 1;
    }
    
    .page-title {
        color: #ffd700;
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 5px 0;
    }
    
    .page-subtitle {
        color: #999;
        font-size: 14px;
        margin: 0;
    }
    
    /* ==================== Deposit & Withdraw Pages Styles ==================== */
    
    .content .deposit-container,
    .content .withdraw-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 25px 20px;
    }
    
    .deposit-container .payment-section,
    .deposit-container .amount-section,
    .withdraw-container .payment-section,
    .withdraw-container .amount-section {
        margin-bottom: 25px;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(45, 45, 45, 0.5) 100%);
        border: 2px solid #333;
        border-radius: 16px;
        padding: 25px;
    }
    
    .deposit-container .section-title,
    .withdraw-container .section-title {
        font-size: 18px;
        font-weight: 700;
        color: #ffd700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .deposit-container .section-title i,
    .withdraw-container .section-title i {
        font-size: 20px;
    }
    
    .payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .payment-method-card {
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid #333;
        border-radius: 12px;
        padding: 12px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 90px;
        max-height: 110px;
    }
    
    .payment-method-card:hover {
        border-color: #ffd700;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        background: rgba(0, 0, 0, 0.4);
    }
    
    .payment-method-card.active {
        border-color: #ffd700;
        background: rgba(255, 215, 0, 0.08);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }
    
    .payment-method-image {
        width: 100%;
        max-width: 65px;
        height: auto;
        max-height: 45px;
        object-fit: contain;
        border-radius: 6px;
        transition: transform 0.3s;
    }
    
    .payment-method-card:hover .payment-method-image {
        transform: scale(1.05);
    }
    
    .payment-name {
        font-size: 11px;
        font-weight: 600;
        color: #fff;
        margin-top: 2px;
    }
    
    .payment-check {
        position: absolute;
        top: 8px;
        right: 8px;
        color: #ffd700;
        font-size: 16px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .payment-method-card.active .payment-check {
        opacity: 1;
    }
    
    .payment-method-card {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border: 2px solid #333;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
    }
    
    .payment-method-card:hover {
        border-color: #ffd700;
        transform: translateY(-5px);
    }
    
    .payment-method-card.active {
        border-color: #ffd700;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    }
    
    .payment-icon {
        font-size: 40px;
        color: #ffd700;
        margin-bottom: 10px;
    }
    
    .payment-method-image {
        width: 100%;
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
        filter: brightness(1);
        transition: filter 0.3s;
    }
    
    .payment-method-card:hover .payment-method-image {
        filter: brightness(1.2);
    }
    
    .payment-method-card.active .payment-method-image {
        filter: brightness(1.1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    
    .payment-name {
        display: block;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }
    
    .payment-check {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #ffd700;
        font-size: 18px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .payment-method-card.active .payment-check {
        opacity: 1;
    }
    
    /* ==================== Amount Section - Modern Design ==================== */
    
    /* Amount Options Wrapper */
    .amount-options-wrapper {
        margin-bottom: 25px;
    }
    
    .quick-amount-label {
        display: block;
        color: #ffd700;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .amount-quick-select {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
        margin-bottom: 0;
    }
    
    .amount-btn {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%);
        border: 2px solid #333;
        border-radius: 10px;
        padding: 14px 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        position: relative;
        overflow: hidden;
    }
    
    .amount-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .amount-btn:hover::before {
        opacity: 1;
    }
    
    .amount-btn .amount-value {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #fff !important;
        position: relative;
        z-index: 1;
        display: block !important;
    }
    
    .amount-btn .amount-currency {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #999 !important;
        position: relative;
        z-index: 1;
        display: block !important;
    }
    
    .amount-btn:hover {
        border-color: #ffd700;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }
    
    .amount-btn:hover .amount-value,
    .amount-btn:hover .amount-currency {
        color: #ffd700 !important;
    }
    
    .amount-btn.active {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
        border-color: #ffd700 !important;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5) !important;
    }
    
    .amount-btn.active .amount-value,
    .amount-btn.active .amount-currency {
        color: #000 !important;
    }
    
    .amount-btn.active::before {
        opacity: 0;
    }
    
    /* Custom Amount Section */
    .custom-amount-section {
        background: rgba(0, 0, 0, 0.2) !important;
        border: 2px solid #333 !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .custom-amount-label {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: #ffd700 !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .custom-amount-label i {
        font-size: 14px;
    }
    
    .amount-input-wrapper {
        display: flex !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    .amount-input-group {
        flex: 1 !important;
        position: relative;
        display: flex !important;
        align-items: center !important;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        border: 2px solid #333 !important;
        border-radius: 10px !important;
        padding: 0 15px !important;
        transition: all 0.3s;
    }
    
    .amount-input-group:focus-within {
        border-color: #ffd700 !important;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    }
    
    .input-prefix {
        color: #ffd700 !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        margin-right: 10px !important;
    }
    
    .amount-input {
        flex: 1 !important;
        background: transparent !important;
        border: none !important;
        padding: 14px 0 !important;
        color: #fff !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        outline: none !important;
    }
    
    .amount-input::placeholder {
        color: #666 !important;
    }
    
    .amount-limits-inline {
        display: flex !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
    }
    
    .limit-badge {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 8px 12px !important;
        border-radius: 8px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }
    
    .limit-badge.min {
        background: rgba(59, 130, 246, 0.1) !important;
        border: 1px solid rgba(59, 130, 246, 0.3) !important;
        color: #3b82f6 !important;
    }
    
    .limit-badge.max {
        background: rgba(34, 197, 94, 0.1) !important;
        border: 1px solid rgba(34, 197, 94, 0.3) !important;
        color: #22c55e !important;
    }
    
    .limit-badge i {
        font-size: 10px;
    }
    
    .limit-badge strong {
        color: inherit !important;
        font-weight: 700 !important;
    }
    
    /* Deposit Submit Button */
    .btn-deposit-submit {
        width: 100% !important;
        max-width: 450px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
        border: none !important;
        border-radius: 12px !important;
        color: #000 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        display: block !important;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4) !important;
        position: relative;
        overflow: hidden;
    }
    
    .btn-deposit-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s;
    }
    
    .btn-deposit-submit:hover::before {
        left: 100%;
    }
    
    .btn-content {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 16px 30px !important;
        position: relative;
        z-index: 1;
    }
    
    .btn-text {
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        font-size: 15px !important;
    }
    
    .btn-deposit-submit i {
        font-size: 16px !important;
    }
    
    .btn-deposit-submit i:first-child {
        animation: shieldPulse 2s ease-in-out infinite;
    }
    
    .btn-deposit-submit i:last-child {
        transition: transform 0.3s;
    }
    
    .btn-deposit-submit:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6) !important;
    }
    
    .btn-deposit-submit:hover i:last-child {
        transform: translateX(5px);
    }
    
    .btn-deposit-submit:active {
        transform: translateY(-1px) !important;
    }
    
    @keyframes shieldPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.15); }
    }
    
    .amount-input-group {
        position: relative;
        margin-bottom: 30px;
    }
    
    .amount-input {
        width: 100%;
        padding: 20px 60px 20px 20px;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border: 3px solid #333;
        border-radius: 15px;
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
    }
    
    .amount-input:focus {
        border-color: #ffd700;
        outline: none;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    
    .currency-symbol {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #ffd700;
        font-size: 24px;
        font-weight: 700;
    }
        font-size: 24px;
        font-weight: 700;
    }
    
    .custom-amount-wrapper {
        background: rgba(0, 0, 0, 0.15);
        border: 2px solid #333;
        border-radius: 12px;
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .input-label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ffd700;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .input-label i {
        font-size: 16px;
    }
    
    .amount-input-group {
        position: relative;
        margin-bottom: 12px;
    }
    
    .amount-input {
        width: 100%;
        padding: 14px 50px 14px 16px;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border: 2px solid #333;
        border-radius: 10px;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }
    
    .amount-input:focus {
        border-color: #ffd700;
        outline: none;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    }
    
    .currency-symbol {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #ffd700;
        font-size: 18px;
        font-weight: 700;
    }
    
    .amount-limits {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        margin-top: 12px;
        padding: 10px 14px;
        background: rgba(255, 215, 0, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.15);
        border-radius: 8px;
    }
    
    .limit-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #999;
        font-size: 12px;
    }
    
    .limit-item i {
        color: #ffd700;
        font-size: 11px;
    }
    
    .limit-item strong {
        color: #ffd700;
        font-weight: 700;
    }
    
    .btn-payment-proceed {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        padding: 15px 30px;
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        border: none;
        border-radius: 12px;
        color: #000;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-payment-proceed::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }
    
    .btn-payment-proceed:hover::before {
        left: 100%;
    }
    
    .btn-payment-proceed:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    }
    
    .btn-payment-proceed:active {
        transform: translateY(0);
    }
    
    .btn-payment-proceed i {
        font-size: 15px;
    }
    
    .btn-payment-proceed i:first-child {
        animation: lockPulse 2s ease-in-out infinite;
    }
    
    .btn-payment-proceed i:last-child {
        transition: transform 0.3s;
    }
    
    .btn-payment-proceed:hover i:last-child {
        transform: translateX(3px);
    }
    
    @keyframes lockPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    .payment-form-container {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border: 2px solid #333;
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .payment-form {
        margin-top: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        color: #ffd700;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .form-input {
        width: 100%;
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid #333;
        border-radius: 10px;
        color: #fff;
        font-size: 16px;
        transition: border-color 0.3s;
    }
    
    .form-input:focus {
        border-color: #ffd700;
        outline: none;
    }
    
    .form-input::placeholder {
        color: #666;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .btn-submit {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        border: none;
        border-radius: 15px;
        color: #000;
        font-size: 20px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
    }
    
    .btn-submit:active {
        transform: translateY(-1px);
    }
    
    .btn-submit i {
        font-size: 22px;
    }
    
    .bank-info-box {
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid #333;
        border-radius: 15px;
        padding: 25px;
        margin: 20px 0;
    }
    
    .bank-info-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #333;
    }
    
    .bank-info-item:last-child {
        border-bottom: none;
    }
    
    .info-label {
        color: #999;
        font-size: 14px;
    }
    
    .info-value {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
    }
    
    .btn-copy {
        background: rgba(255, 215, 0, 0.1);
        border: 2px solid #ffd700;
        color: #ffd700;
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        margin-left: 10px;
    }
    
    .btn-copy:hover {
        background: #ffd700;
        color: #000;
    }
    
    .bank-info-note,
    .form-note {
        background: rgba(255, 215, 0, 0.1);
        border: 2px solid #ffd700;
        border-radius: 10px;
        padding: 15px;
        margin-top: 15px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    
    .bank-info-note i,
    .form-note i {
        color: #ffd700;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .bank-info-note p,
    .form-note p {
        color: #fff;
        font-size: 13px;
        margin: 0;
    }
    
    .crypto-selector {
        display: flex;
        gap: 10px;
        margin: 20px 0;
    }
    
    .crypto-btn {
        flex: 1;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border: 2px solid #333;
        color: #fff;
        padding: 15px;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
    }
    
    .crypto-btn:hover {
        border-color: #ffd700;
    }
    
    .crypto-btn.active {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
        border-color: #ffd700;
        color: #ffd700;
    }
    
    .crypto-address-box {
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid #333;
        border-radius: 15px;
        padding: 25px;
        margin: 20px 0;
        text-align: center;
    }
    
    .qr-code {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
        background: #fff;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .qr-code i {
        font-size: 150px;
        color: #333;
    }
    
    .crypto-address {
        margin-top: 20px;
    }
    
    .address-label {
        display: block;
        color: #999;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .address-value {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: rgba(0, 0, 0, 0.5);
        padding: 15px;
        border-radius: 10px;
        word-break: break-all;
    }
    
    .address-value span {
        color: #fff;
        font-size: 14px;
        font-family: monospace;
    }
    
    .deposit-advantages {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: 50px;
    }
    
    .advantage-card {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%);
        border: 2px solid #333;
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s;
    }
    
    .advantage-card:hover {
        border-color: #ffd700;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    }
    
    .advantage-card i {
        font-size: 48px;
        color: #ffd700;
        margin-bottom: 15px;
        display: block;
    }
    
    .advantage-card h3 {
        color: #fff;
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    
    .advantage-card p {
        color: #999;
        font-size: 13px;
        margin: 0;
        line-height: 1.5;
    }
    
    /* Withdraw Specific */
    .balance-card-large {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .balance-info-large {
        margin-bottom: 15px;
    }
    
    .balance-label-large {
        display: block;
        color: #000;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .balance-amount-large {
        display: block;
        color: #000;
        font-size: 48px;
        font-weight: 800;
    }
    
    .balance-note {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .balance-note i {
        color: #000;
        font-size: 16px;
    }
    
    .balance-note span {
        color: #000;
        font-size: 13px;
    }
    
    /* Withdrawal Progress Bar */
    .withdrawal-progress-container {
        margin: 20px 0;
        padding: 20px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 12px;
    }
    
    .progress-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .progress-label {
        color: #000;
        font-size: 14px;
        font-weight: 600;
    }
    
    .progress-amount {
        color: #000;
        font-size: 16px;
        font-weight: 700;
    }
    
    .progress-bar-wrapper {
        margin-bottom: 12px;
    }
    
    .progress-bar {
        width: 100%;
        height: 40px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .progress-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, #00c853 0%, #00e676 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: width 0.5s ease;
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 200, 83, 0.5);
    }
    
    .progress-bar-fill.complete {
        background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    }
    
    .progress-percentage {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .progress-status {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #000;
        font-size: 13px;
    }
    
    .progress-status i {
        font-size: 14px;
    }
    
    .progress-status.success {
        color: #00c853;
    }
    
    .progress-status.success i {
        color: #00c853;
    }
    
    .withdraw-info {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border: 2px solid #333;
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .info-title {
        color: #ffd700;
        font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 20px 0;
    }
    
    .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .info-list li {
        color: #fff;
        font-size: 14px;
        padding: 12px 0;
        padding-left: 25px;
        border-bottom: 1px solid #333;
        position: relative;
    }
    
    .info-list li:last-child {
        border-bottom: none;
    }
    
    .info-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #ffd700;
        font-size: 20px;
        font-weight: 700;
    }
    
    .btn-deposit.active,
    .btn-withdraw.active {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        color: #000;
        border-color: #ffd700;
    }
    
    /* Providers Grid Small */
    .providers-scroll.expanded .providers-scroll-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .providers-scroll:not(.expanded) .provider-card {
        min-width: 140px;
        height: 100px;
        padding: 16px 12px;
    }
    
    .providers-scroll.expanded .provider-card {
        aspect-ratio: 3/2;
        padding: 18px 12px;
    }
    
    .provider-card img {
        max-width: 90%;
        max-height: 90%;
    }
    
    /* Slider Extra Small */
    .slider-container {
        aspect-ratio: 4/5;
        min-height: unset;
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        box-shadow: 0 20px 70px rgba(0, 0, 0, 0.85),
                    0 12px 35px rgba(0, 0, 0, 0.65),
                    0 5px 12px rgba(255, 215, 0, 0.15),
                    inset 0 1px 0 rgba(255, 215, 0, 0.15),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
        border: 3px solid rgba(255, 215, 0, 0.35);
    }
    
    .slider-container::before {
        top: -18px;
        left: -18px;
        right: -18px;
        bottom: -18px;
        filter: blur(22px);
    }
    
    .slide::after {
        background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    }
    
    .slide-bg-image {
        object-fit: cover;
        object-position: center;
        transform: scale(1.05);
        filter: brightness(0.95) contrast(1.08);
    }
    
    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 215, 0, 0.6);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6),
                    0 0 20px rgba(255, 215, 0, 0.3),
                    inset 0 1px 0 rgba(255, 215, 0, 0.2);
        backdrop-filter: blur(10px);
        z-index: 20;
    }
    
    .slider-nav:hover {
        background: rgba(255, 215, 0, 0.9);
        color: #1a1a1a;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7),
                    0 0 30px rgba(255, 215, 0, 0.5);
    }
    
    .slider-nav.prev {
        left: 8px;
    }
    
    .slider-nav.next {
        right: 8px;
    }
    
    .slider-dots {
        bottom: 15px;
        background: rgba(0, 0, 0, 0.4);
        padding: 8px 15px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 215, 0, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    
    .dot {
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.4);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5),
                    inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }
    
    .dot.active {
        background: linear-gradient(135deg, #ffd700, #ffb700);
        box-shadow: 0 3px 10px rgba(255, 215, 0, 0.6),
                    0 0 15px rgba(255, 215, 0, 0.4),
                    inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }
    
    /* Banner Cards Extra Small */
    .banner-grid {
        gap: 0;
    }
    
    .promo-banner-card {
        height: 200px;
        padding: 20px;
    }
    
    /* League Cups Extra Small */
    .cups-container {
        gap: 10px;
        padding: 0 10px 10px 10px;
    }
    
    .cup-card {
        min-width: 120px;
        height: 140px;
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .cup-card::before {
        border-radius: 12px;
    }
    
    .cup-image {
        height: 142px;
    }
    
    .cup-label {
        padding: 5px 6px;
        border-radius: 6px;
    }
    
    .cup-country {
        font-size: 7px;
    }
    
    .cup-name {
        font-size: 9px;
        font-weight: 700;
    }
    
    /* Disable hover effects on small screens */
    .cup-card:hover {
        transform: none;
    }
    
    .cup-card:hover .cup-image {
        transform: none;
    }
    
    .cup-card:active {
        transform: scale(0.95);
    }
    
    .cup-card:active::before {
        background: rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.3);
    }


/* Tablet Devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .btn-call {
        display: flex;
        font-size: 0;
        padding: 10px;
        min-width: 45px;
    }
    
    .btn-call i {
        margin: 0;
        font-size: 18px;
    }
    
    /* Providers Grid Tablet */
    .providers-scroll:not(.expanded) .provider-card {
        min-width: 170px;
        height: 115px;
        padding: 20px 15px;
    }
    
    .providers-scroll.expanded .providers-scroll-track {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
    
    .providers-scroll.expanded .provider-card {
        aspect-ratio: 4/3;
        padding: 20px 15px;
    }
    
    /* Slider Tablet */
    .slider-container {
        aspect-ratio: 4/5;
        min-height: unset;
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        box-shadow: 0 22px 75px rgba(0, 0, 0, 0.8),
                    0 13px 38px rgba(0, 0, 0, 0.7),
                    0 6px 14px rgba(255, 215, 0, 0.2),
                    inset 0 2px 0 rgba(255, 215, 0, 0.2),
                    inset 0 -2px 0 rgba(0, 0, 0, 0.45);
        border: 4px solid rgba(255, 215, 0, 0.35);
    }
    
    .slider-container::before {
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        filter: blur(24px);
    }
    
    .slide::after {
        background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.28) 100%);
    }
    
    .slide-bg-image {
        object-fit: cover;
        object-position: center;
        transform: scale(1.05);
        filter: brightness(0.95) contrast(1.09);
    }
    
    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 215, 0, 0.6);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65),
                    0 0 22px rgba(255, 215, 0, 0.35),
                    inset 0 1px 0 rgba(255, 215, 0, 0.2);
        backdrop-filter: blur(10px);
        z-index: 20;
    }
    
    .slider-nav:hover {
        background: rgba(255, 215, 0, 0.9);
        color: #1a1a1a;
        transform: translateY(-50%) scale(1.12);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75),
                    0 0 35px rgba(255, 215, 0, 0.55);
    }
    
    .slider-nav.prev {
        left: 12px;
    }
    
    .slider-nav.next {
        right: 12px;
    }
    
    .slider-dots {
        bottom: 18px;
        background: rgba(0, 0, 0, 0.45);
        padding: 10px 18px;
        border-radius: 22px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 215, 0, 0.25);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
    }
    
    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.45);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.55),
                    inset 0 1px 2px rgba(255, 255, 255, 0.25);
    }
    
    .dot.active {
        background: linear-gradient(135deg, #ffd700, #ffb700);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.65),
                    0 0 18px rgba(255, 215, 0, 0.45),
                    inset 0 1px 2px rgba(255, 255, 255, 0.35);
    }
    
    /* Main Slider Tablet */
    .main-slider {
        margin-top: -30px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    
    /* Banner Cards Tablet */
    .banner-grid {
        gap: 0;
    }
    
    .promo-banner-card {
        height: 250px;
        padding: 30px;
    }
    
    /* League Cups Tablet */
    .cups-container {
        gap: 15px;
        padding: 0 15px 15px 15px;
    }
    
    .cup-card {
        min-width: 160px;
        height: 180px;
        padding: 22px 18px;
        border-radius: 15px;
    }
    
    .cup-card::before {
        border-radius: 15px;
    }
    
    .cup-image {
        height: 90px;
    }
    
    .cup-label {
        padding: 7px 10px;
        border-radius: 8px;
    }
    
    .cup-country {
        font-size: 9px;
    }
    
    .cup-name {
        font-size: 11px;
        font-weight: 700;
    }
    
    /* Touch-friendly effects */
    .cup-card:active {
        transform: scale(0.95);
    }
    
    .cup-card:active::before {
        background: rgba(255, 215, 0, 0.18);
        border-color: rgba(255, 215, 0, 0.35);
    }
}

/* Prevent text selection on mobile */
@media (max-width: 768px) {
    .cup-label {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.98));
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8),
                0 -5px 20px rgba(255, 215, 0, 0.1),
                inset 0 1px 0 rgba(255, 215, 0, 0.15);
    z-index: 9999;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: flex-end;
    gap: 5px;
    padding-left: max(5px, env(safe-area-inset-left));
    padding-right: max(5px, env(safe-area-inset-right));
}

.mobile-bottom-nav::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    max-width: 80px;
}

.nav-item i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.nav-item span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.nav-item:active {
    transform: scale(0.9);
}

.nav-item.active {
    color: #ffd700;
}

.nav-item.active i {
    transform: translateY(-2px);
}

/* Center Icon (Ana/Home) */
.nav-item-center {
    position: relative;
    margin-top: -25px;
}

.nav-item-center .center-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9),
                0 4px 15px rgba(255, 215, 0, 0.4),
                0 0 0 4px rgba(255, 215, 0, 0.6),
                0 0 0 7px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(255, 215, 0, 0.3),
                inset 0 2px 5px rgba(255, 215, 0, 0.2),
                inset 0 -2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: centerIconPulse 2s ease-in-out infinite;
}

.nav-item-center .center-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5), rgba(255, 215, 0, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: centerGlow 2s ease-in-out infinite;
}

.nav-item-center .center-icon i {
    font-size: 28px;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.nav-item-center .center-icon .center-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 2px 6px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    position: relative;
    z-index: 1;
}

.nav-item-center span {
    color: #ffd700;
    font-weight: 700;
    margin-top: 4px;
}

@keyframes centerIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes centerGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Hover/Active States */
.nav-item:not(.nav-item-center):hover {
    color: rgba(255, 215, 0, 0.9);
    background: rgba(255, 215, 0, 0.1);
}

.nav-item:not(.nav-item-center):active {
    background: rgba(255, 215, 0, 0.2);
}

/* Light Mode */
body.light-mode .mobile-bottom-nav {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.98));
    border-top-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1),
                0 -5px 20px rgba(255, 215, 0, 0.15);
}

body.light-mode .nav-item {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .nav-item.active {
    color: #d4a017;
}

body.light-mode .nav-item:not(.nav-item-center):hover {
    color: #d4a017;
    background: rgba(255, 215, 0, 0.15);
}

body.light-mode .nav-item-center .center-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
                0 4px 15px rgba(255, 215, 0, 0.3),
                0 0 0 4px rgba(255, 215, 0, 0.5),
                0 0 0 7px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(255, 215, 0, 0.25);
}

body.light-mode .nav-item-center .center-icon .center-logo {
    filter: brightness(1.2) drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Add padding to main content to prevent overlap */
    body {
        padding-bottom: 80px;
    }
    
    /* Adjust live support button position above bottom nav */
    .live-support {
        bottom: 100px;
        right: 15px;
    }
    
    .live-support-btn {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .live-support-btn i {
        font-size: 20px;
    }
    
    .support-text span {
        font-size: 11px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-item i {
        font-size: 18px;
    }
    
    .nav-item span {
        font-size: 9px;
    }
    
    .nav-item-center .center-icon {
        width: 58px;
        height: 58px;
    }
    
    .nav-item-center .center-icon i {
        font-size: 26px;
    }
    
    .nav-item-center .center-icon .center-logo {
        width: 40px;
        height: 40px;
    }
    
    /* Adjust live support button for small screens */
    .live-support {
        bottom: 95px;
        right: 10px;
    }
    
    .live-support-btn {
        padding: 10px 16px;
        gap: 8px;
    }
    
    .live-support-btn i {
        font-size: 18px;
    }
    
    .support-text span {
        font-size: 10px;
    }
    
    /* Deposit/Withdraw Pages Mobile */
    .page-header {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .btn-back {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .page-subtitle {
        font-size: 12px;
    }
    
    .deposit-container,
    .withdraw-container {
        padding: 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    /* New Amount Section Mobile Styles */
    .amount-options-wrapper {
        margin-bottom: 20px;
    }
    
    .quick-amount-label,
    .custom-amount-label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .amount-quick-select {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .amount-btn {
        padding: 12px 8px;
    }
    
    .amount-value {
        font-size: 14px;
    }
    
    .amount-currency {
        font-size: 10px;
    }
    
    .custom-amount-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .amount-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .amount-input-group {
        padding: 0 12px;
    }
    
    .input-prefix {
        font-size: 18px;
        margin-right: 8px;
    }
    
    .amount-input {
        padding: 12px 0;
        font-size: 18px;
    }
    
    .amount-limits-inline {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .limit-badge {
        justify-content: center;
        width: 100%;
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .btn-deposit-submit {
        max-width: 100%;
    }
    
    .btn-content {
        padding: 14px 20px;
        gap: 10px;
    }
    
    .btn-text {
        font-size: 13px;
    }
    
    .btn-deposit-submit i {
        font-size: 14px;
    }
    
    /* Old mobile styles - keeping for compatibility */
    .custom-amount-wrapper {
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .input-label {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .amount-limits {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
        margin-top: 12px;
    }
    
    .limit-item {
        font-size: 12px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .payment-method-card {
        padding: 15px 10px;
        min-height: 120px;
    }
    
    .payment-icon {
        font-size: 30px;
    }
    
    .payment-method-image {
        max-width: 80px;
    }
    
    .payment-name {
        font-size: 12px;
    }
    
    .payment-check {
        font-size: 16px;
    }
    
    .amount-quick-select {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .amount-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .amount-input {
        font-size: 20px;
        padding: 15px 45px 15px 15px;
    }
    
    .currency-symbol {
        font-size: 20px;
    }
    
    .btn-payment-proceed {
        font-size: 15px;
        padding: 16px 20px;
        max-width: 100%;
    }
    
    .btn-payment-proceed i {
        font-size: 16px;
    }
    
    .payment-form-container {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        font-size: 16px;
        padding: 15px;
    }
    
    .deposit-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .advantage-card {
        padding: 20px;
    }
    
    .advantage-card i {
        font-size: 32px;
    }
    
    .advantage-card h3 {
        font-size: 14px;
    }
    
    .advantage-card p {
        font-size: 12px;
    }
    
    .balance-amount-large {
        font-size: 36px;
    }
    
    .balance-card-large {
        padding: 25px;
    }
    
    .withdrawal-progress-container {
        padding: 15px;
    }
    
    .progress-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .progress-label {
        font-size: 13px;
    }
    
    .progress-amount {
        font-size: 14px;
    }
    
    .progress-bar {
        height: 32px;
    }
    
    .progress-percentage {
        font-size: 12px;
    }
    
    .progress-status {
        font-size: 11px;
    }
    
    .custom-alert-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    .custom-alert-icon {
        width: 70px;
        height: 70px;
    }
    
    .custom-alert-icon i {
        font-size: 35px;
    }
    
    .custom-alert-title {
        font-size: 20px;
    }
    
    .custom-alert-message {
        font-size: 14px;
    }
    
    .custom-alert-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
    
    .crypto-selector {
        flex-direction: column;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .qr-code i {
        font-size: 100px;
    }
    
    .bank-info-box {
        padding: 20px;
    }
    
    .bank-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .payment-method-image {
        height: 50px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .payment-method-card {
        padding: 12px 8px;
    }
    
    .btn-payment-proceed {
        font-size: 15px;
        padding: 14px;
    }
    
    .btn-payment-proceed i {
        font-size: 16px;
    }
}

/* Profile Page Styles */
.profile-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.profile-avatar-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.avatar-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle i {
    font-size: 70px;
    color: #ffd700;
}

.avatar-upload-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #ffd700;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.avatar-upload-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.avatar-upload-btn i {
    color: #000;
    font-size: 18px;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 14px;
    color: #999;
}

.profile-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.info-label {
    color: #999;
    font-size: 14px;
}

.info-value {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background: #00c853;
    color: #fff;
}

.status-badge.pending {
    background: #ffd700;
    color: #000;
}

.vip-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #000;
}

.security-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid #333;
}

.security-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.security-info i {
    font-size: 30px;
    color: #ffd700;
}

.security-info h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.security-info p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.btn-secondary {
    padding: 10px 25px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
}

.profile-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-save,
.btn-cancel {
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-save {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.btn-save:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #666;
    color: #fff;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #999;
}

/* History Pages Styles */
.history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.filter-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.filter-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-select,
.filter-input {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.filter-select:focus,
.filter-input:focus {
    border-color: #ffd700;
    outline: none;
}

.btn-filter {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.won {
    background: rgba(0, 200, 83, 0.2);
    color: #00c853;
}

.stat-icon.lost {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.stat-icon.total {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.stat-icon.pending {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-info .stat-label {
    color: #999;
    font-size: 13px;
}

.stat-info .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.stat-info .stat-value.won {
    color: #00c853;
}

.stat-info .stat-value.lost {
    color: #ff4444;
}

.history-table-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    overflow-x: auto;
    margin-bottom: 30px;
}

/* Mobile/Desktop Visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Finance Cards for Mobile */
.finance-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.finance-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.finance-card:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.finance-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
}

.transaction-type {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.transaction-type.deposit {
    color: #00c853;
}

.transaction-type.deposit i {
    background: rgba(0, 200, 83, 0.2);
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
}

.transaction-type.withdraw {
    color: #ff4444;
}

.transaction-type.withdraw i {
    background: rgba(255, 68, 68, 0.2);
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
}

.finance-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.finance-amount {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    letter-spacing: 1px;
}

.deposit-amount {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 200, 83, 0.05) 100%);
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.withdraw-amount {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.finance-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item i {
    color: #ffd700;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.detail-item span {
    color: #fff;
    font-weight: 500;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table thead tr {
    border-bottom: 2px solid #333;
}

.history-table th {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.history-table td {
    color: #fff;
    font-size: 14px;
    padding: 15px;
    border-bottom: 1px solid #333;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-info i {
    color: #ffd700;
    font-size: 18px;
}

.won-amount {
    color: #00c853;
    font-weight: 700;
}

.lost-amount {
    color: #ff4444;
    font-weight: 700;
}

.pending-amount {
    color: #ffd700;
    font-weight: 700;
}

.status-badge.won {
    background: #00c853;
    color: #fff;
}

.status-badge.lost {
    background: #ff4444;
    color: #fff;
}

.status-badge.pending {
    background: #ffd700;
    color: #000;
}

.btn-detail {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-detail:hover {
    background: #ffd700;
    color: #000;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.pagination-btn.active {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Settings Page Styles */
.settings-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.settings-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.settings-section.danger-section {
    border-color: #ff4444;
}

.settings-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.settings-info h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.settings-info p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #666;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #ffd700;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.settings-input,
.settings-select {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    min-width: 200px;
}

.settings-input:focus,
.settings-select:focus {
    border-color: #ffd700;
    outline: none;
}

.btn-danger {
    padding: 10px 25px;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-danger:hover {
    background: #ff4444;
    color: #fff;
}

/* Custom Alert Modal */
.custom-alert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.custom-alert-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Old Custom Alert Classes - Compatibility */
.custom-alert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.custom-alert-modal.show {
    display: flex;
}

.custom-alert-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #ffd700;
    border-radius: 25px;
    padding: 45px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.3),
        0 0 100px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.custom-alert-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.custom-alert-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.custom-alert-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    opacity: 0.3;
    animation: rotate 3s linear infinite;
    z-index: -1;
}

.custom-alert-icon i {
    font-size: 50px;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    position: relative;
    z-index: 1;
}

/* Custom Alert Icon Types */
.custom-alert-icon.error {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 68, 68, 0.05) 100%);
    border-color: #ff4444;
    box-shadow: 
        0 0 30px rgba(255, 68, 68, 0.3),
        inset 0 0 20px rgba(255, 68, 68, 0.1);
}

.custom-alert-icon.error::before {
    background: linear-gradient(45deg, #ff4444, transparent, #ff4444);
}

.custom-alert-icon.error i {
    color: #ff4444;
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5));
}

.custom-alert-icon.success {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 200, 83, 0.05) 100%);
    border-color: #00c853;
    box-shadow: 
        0 0 30px rgba(0, 200, 83, 0.3),
        inset 0 0 20px rgba(0, 200, 83, 0.1);
}

.custom-alert-icon.success::before {
    background: linear-gradient(45deg, #00c853, transparent, #00c853);
}

.custom-alert-icon.success i {
    color: #00c853;
    filter: drop-shadow(0 0 10px rgba(0, 200, 83, 0.5));
}

.custom-alert-icon.warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: #ff9800;
    box-shadow: 
        0 0 30px rgba(255, 152, 0, 0.3),
        inset 0 0 20px rgba(255, 152, 0, 0.1);
}

.custom-alert-icon.warning::before {
    background: linear-gradient(45deg, #ff9800, transparent, #ff9800);
}

.custom-alert-icon.warning i {
    color: #ff9800;
    filter: drop-shadow(0 0 10px rgba(255, 152, 0, 0.5));
}

.custom-alert-icon.info {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-color: #2196f3;
    box-shadow: 
        0 0 30px rgba(33, 150, 243, 0.3),
        inset 0 0 20px rgba(33, 150, 243, 0.1);
}

.custom-alert-icon.info::before {
    background: linear-gradient(45deg, #2196f3, transparent, #2196f3);
}

.custom-alert-icon.info i {
    color: #2196f3;
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.5));
}

.custom-alert-title {
    color: #ffd700;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.custom-alert-message {
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 35px 0;
    white-space: pre-line;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.custom-alert-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 16px 60px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.custom-alert-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.custom-alert-btn:hover::before {
    width: 300px;
    height: 300px;
}

.custom-alert-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.custom-alert-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.alert-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #ffd700;
    border-radius: 25px;
    padding: 45px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.3),
        0 0 100px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.alert-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.alert-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.alert-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    opacity: 0.3;
    animation: rotate 3s linear infinite;
    z-index: -1;
}

.alert-icon {
    font-size: 50px;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    position: relative;
    z-index: 1;
}

/* Alert Type Colors */
.alert-type-success .alert-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 200, 83, 0.05) 100%);
    border-color: #00c853;
    box-shadow: 
        0 0 30px rgba(0, 200, 83, 0.3),
        inset 0 0 20px rgba(0, 200, 83, 0.1);
}

.alert-type-success .alert-icon-wrapper::before {
    background: linear-gradient(45deg, #00c853, transparent, #00c853);
}

.alert-type-success .alert-icon {
    color: #00c853;
    filter: drop-shadow(0 0 10px rgba(0, 200, 83, 0.5));
}

.alert-type-success .alert-content {
    border-color: #00c853;
    box-shadow: 
        0 20px 60px rgba(0, 200, 83, 0.3),
        0 0 100px rgba(0, 200, 83, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.alert-type-success .alert-title {
    color: #00c853;
}

.alert-type-error .alert-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 68, 68, 0.05) 100%);
    border-color: #ff4444;
    box-shadow: 
        0 0 30px rgba(255, 68, 68, 0.3),
        inset 0 0 20px rgba(255, 68, 68, 0.1);
}

.alert-type-error .alert-icon-wrapper::before {
    background: linear-gradient(45deg, #ff4444, transparent, #ff4444);
}

.alert-type-error .alert-icon {
    color: #ff4444;
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5));
}

.alert-type-error .alert-content {
    border-color: #ff4444;
    box-shadow: 
        0 20px 60px rgba(255, 68, 68, 0.3),
        0 0 100px rgba(255, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.alert-type-error .alert-title {
    color: #ff4444;
}

.alert-type-warning .alert-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: #ff9800;
    box-shadow: 
        0 0 30px rgba(255, 152, 0, 0.3),
        inset 0 0 20px rgba(255, 152, 0, 0.1);
}

.alert-type-warning .alert-icon-wrapper::before {
    background: linear-gradient(45deg, #ff9800, transparent, #ff9800);
}

.alert-type-warning .alert-icon {
    color: #ff9800;
    filter: drop-shadow(0 0 10px rgba(255, 152, 0, 0.5));
}

.alert-type-warning .alert-content {
    border-color: #ff9800;
    box-shadow: 
        0 20px 60px rgba(255, 152, 0, 0.3),
        0 0 100px rgba(255, 152, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.alert-type-warning .alert-title {
    color: #ff9800;
}

.alert-type-info .alert-icon-wrapper {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-color: #2196f3;
    box-shadow: 
        0 0 30px rgba(33, 150, 243, 0.3),
        inset 0 0 20px rgba(33, 150, 243, 0.1);
}

.alert-type-info .alert-icon-wrapper::before {
    background: linear-gradient(45deg, #2196f3, transparent, #2196f3);
}

.alert-type-info .alert-icon {
    color: #2196f3;
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.5));
}

.alert-type-info .alert-content {
    border-color: #2196f3;
    box-shadow: 
        0 20px 60px rgba(33, 150, 243, 0.3),
        0 0 100px rgba(33, 150, 243, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.alert-type-info .alert-title {
    color: #2196f3;
}

.alert-title {
    color: #ffd700;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.alert-message {
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 35px 0;
    white-space: pre-line;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.alert-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 16px 60px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.alert-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.alert-button:hover::before {
    width: 300px;
    height: 300px;
}

.alert-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.alert-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .alert-content {
        padding: 35px 25px;
        border-width: 2px;
    }
    
    .alert-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .alert-icon {
        font-size: 40px;
    }
    
    .alert-title {
        font-size: 22px;
    }
    
    .alert-message {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .alert-button {
        padding: 14px 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .alert-content {
        padding: 30px 20px;
    }
    
    .alert-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .alert-icon {
        font-size: 35px;
    }
    
    .alert-title {
        font-size: 20px;
    }
    
    .alert-message {
        font-size: 14px;
    }
    
    .alert-button {
        padding: 12px 40px;
        font-size: 15px;
    }
}

/* Profile/Settings/History Pages Mobile Responsive */
@media (max-width: 768px) {
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .avatar-circle {
        width: 120px;
        height: 120px;
    }
    
    .avatar-circle i {
        font-size: 55px;
    }
    
    .profile-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .security-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .security-info {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .btn-save,
    .btn-cancel {
        width: 100%;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-select,
    .filter-input {
        width: 100%;
    }
    
    .btn-filter {
        width: 100%;
        justify-content: center;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 12px 10px;
    }
    
    .stat-card .stat-label {
        font-size: 10px;
    }
    
    .stat-card .stat-value {
        font-size: 16px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    /* Mobile Finance View */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .history-table-container {
        overflow-x: scroll;
    }
    
    .history-table {
        min-width: 800px;
    }
    
    /* Filter adjustments for mobile */
    .filter-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .btn-filter {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .filter-text {
        display: inline;
    }
    
    /* Finance card adjustments */
    .finance-card {
        padding: 15px;
    }
    
    .finance-amount {
        font-size: 28px;
        padding: 12px;
    }
    
    .transaction-type {
        font-size: 14px;
    }
    
    .detail-item {
        font-size: 13px;
        padding: 8px;
    }
    
    .settings-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .settings-input,
    .settings-select {
        width: 100%;
    }
}

/* Extra small mobile devices (≤480px) */
@media (max-width: 480px) {
    .stats-cards {
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px 8px;
    }
    
    .stat-card .stat-label {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .stat-card .stat-value {
        font-size: 14px;
        margin-top: 4px;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .stat-info {
        gap: 4px;
    }
}

/* Light Mode - Deposit/Withdraw Pages */
body.light-mode .page-header {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-bottom-color: #ffd700;
}

body.light-mode .page-title {
    color: #ffd700;
}

body.light-mode .page-subtitle {
    color: #666;
}

body.light-mode .btn-back {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
}

body.light-mode .btn-back:hover {
    background: #ffd700;
    color: #000;
}

body.light-mode .section-title {
    color: #333;
}

body.light-mode .payment-method-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .payment-method-card.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-color: #ffd700;
}

body.light-mode .payment-method-image {
    filter: brightness(0.95);
}

body.light-mode .payment-method-card:hover .payment-method-image {
    filter: brightness(1.1);
}

body.light-mode .payment-method-card.active .payment-method-image {
    filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

body.light-mode .payment-name {
    color: #333;
}

body.light-mode .amount-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
    color: #333;
}

body.light-mode .amount-value {
    color: #333;
}

body.light-mode .amount-currency {
    color: #666;
}

body.light-mode .amount-btn:hover {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e7 100%);
}

body.light-mode .amount-btn:hover .amount-value,
body.light-mode .amount-btn:hover .amount-currency {
    color: #d4af37;
}

body.light-mode .custom-amount-section {
    background: rgba(255, 255, 255, 0.5);
    border-color: #ddd;
}

body.light-mode .custom-amount-label {
    color: #d4af37;
}

body.light-mode .amount-input-group {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .amount-input-group:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

body.light-mode .input-prefix {
    color: #d4af37;
}

body.light-mode .amount-input {
    color: #333;
}

body.light-mode .amount-input::placeholder {
    color: #999;
}

body.light-mode .limit-badge.min {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #2563eb;
}

body.light-mode .limit-badge.max {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

body.light-mode .amount-btn:hover {
    border-color: #ffd700;
    color: #ffd700;
}

body.light-mode .amount-input {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
    color: #333;
}

body.light-mode .amount-limits {
    color: #666;
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

body.light-mode .custom-amount-wrapper {
    background: rgba(255, 255, 255, 0.5);
    border-color: #ddd;
}

body.light-mode .input-label {
    color: #d4af37;
}

body.light-mode .limit-item {
    color: #666;
}

body.light-mode .limit-item i,
body.light-mode .limit-item strong {
    color: #d4af37;
}

body.light-mode .btn-payment-proceed {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

body.light-mode .btn-payment-proceed:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

body.light-mode .payment-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .form-group label {
    color: #333;
}

body.light-mode .form-input {
    background: #f5f5f5;
    border-color: #ddd;
    color: #333;
}

body.light-mode .form-input::placeholder {
    color: #999;
}

body.light-mode .bank-info-box {
    background: #f5f5f5;
    border-color: #ddd;
}

body.light-mode .bank-info-item {
    border-bottom-color: #ddd;
}

body.light-mode .info-label {
    color: #666;
}

body.light-mode .info-value {
    color: #333;
}

body.light-mode .bank-info-note,
body.light-mode .form-note {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

body.light-mode .bank-info-note p,
body.light-mode .form-note p {
    color: #333;
}

body.light-mode .crypto-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
    color: #333;
}

body.light-mode .crypto-btn.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: #ffd700;
    color: #000;
}

body.light-mode .crypto-address-box {
    background: #f5f5f5;
    border-color: #ddd;
}

body.light-mode .address-value {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .address-value span {
    color: #333;
}

body.light-mode .advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .advantage-card h3 {
    color: #333;
}

body.light-mode .advantage-card p {
    color: #666;
}

body.light-mode .balance-note span {
    color: #000;
}

body.light-mode .withdraw-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .info-title {
    color: #333;
}

body.light-mode .info-list li {
    color: #333;
    border-bottom-color: #ddd;
}

body.light-mode .withdrawal-progress-container {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .progress-label,
body.light-mode .progress-amount {
    color: #333;
}

body.light-mode .progress-bar {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .progress-status {
    color: #333;
}

body.light-mode .custom-alert-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ffd700;
}

body.light-mode .custom-alert-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
}

body.light-mode .alert-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 100px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.light-mode .alert-message {
    color: #333;
}

body.light-mode .alert-button {
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body.light-mode .alert-button:hover {
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body.light-mode .profile-avatar-section,
body.light-mode .profile-section,
body.light-mode .filter-section,
body.light-mode .history-table-container,
body.light-mode .settings-section,
body.light-mode .finance-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .finance-card-header {
    border-bottom-color: #ddd;
}

body.light-mode .detail-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .detail-item span {
    color: #333;
}

body.light-mode .detail-item i {
    color: #f39c12;
}

body.light-mode .deposit-amount {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 200, 83, 0.08) 100%);
    border-color: rgba(0, 200, 83, 0.4);
}

body.light-mode .withdraw-amount {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 68, 68, 0.08) 100%);
    border-color: rgba(255, 68, 68, 0.4);
}

body.light-mode .security-item,
body.light-mode .settings-item,
body.light-mode .info-item {
    background: #f5f5f5;
    border-color: #ddd;
}

body.light-mode .security-info h4,
body.light-mode .settings-info h4 {
    color: #333;
}

body.light-mode .security-info p,
body.light-mode .settings-info p {
    color: #666;
}

body.light-mode .history-table th {
    color: #333;
}

body.light-mode .history-table td {
    color: #333;
    border-bottom-color: #ddd;
}

body.light-mode .history-table thead tr {
    border-bottom-color: #ddd;
}

body.light-mode .stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .settings-section.danger-section {
    border-color: #ff4444;
}

body.light-mode .filter-select,
body.light-mode .filter-input,
body.light-mode .settings-input,
body.light-mode .settings-select {
    background: #f5f5f5;
    border-color: #ddd;
    color: #333;
}

/* ==================== Notifications Page Styles ==================== */
.notifications-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.btn-mark-all-read {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.btn-mark-all-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.notification-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.notification-tab {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.notification-tab:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
}

.notification-tab.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.tab-count {
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.notification-tab.active .tab-count {
    background: #000;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.notification-card:hover {
    border-color: #ffd700;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.notification-card.unread {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, #1a1a1a 100%);
}

.notification-card.unread::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700 0%, #ffed4e 100%);
}

.unread-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.notification-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    border: 2px solid;
}

.notification-icon.promo {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: #ffd700;
    color: #ffd700;
}

.notification-icon.success {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 200, 83, 0.05) 100%);
    border-color: #00c853;
    color: #00c853;
}

.notification-icon.warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: #ff9800;
    color: #ff9800;
}

.notification-icon.info {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-color: #2196f3;
    color: #2196f3;
}

.notification-content {
    flex: 1;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 15px;
}

.notification-title {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.notification-time {
    color: #888;
    font-size: 12px;
    white-space: nowrap;
}

.notification-message {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

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

.btn-notification-action {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-notification-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-notification-mark {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: #888;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-notification-mark:hover {
    border-color: #00c853;
    color: #00c853;
    background: rgba(0, 200, 83, 0.1);
}

.notifications-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #555;
}

.notifications-empty h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px 0;
}

.notifications-empty p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.nav-notification-badge {
    position: absolute;
    top: 5px;
    right: 15px;
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* Mobile Responsive for Notifications */
@media (max-width: 768px) {
    .btn-mark-all-read {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .notification-card {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .notification-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .notification-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .notification-title {
        font-size: 15px;
    }
    
    .notification-time {
        font-size: 11px;
    }
    
    .notification-message {
        font-size: 13px;
    }
    
    .notification-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-notification-action {
        width: 100%;
        justify-content: center;
    }
    
    .btn-notification-mark {
        width: 100%;
        height: 40px;
    }
    
    .notification-tabs {
        gap: 8px;
    }
    
    .notification-tab {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* Light Mode - Notifications */
body.light-mode .notification-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .notification-card.unread {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, #ffffff 100%);
}

body.light-mode .notification-title {
    color: #333;
}

body.light-mode .notification-message {
    color: #666;
}

body.light-mode .notification-tab {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
    color: #333;
}

body.light-mode .btn-notification-mark {
    background: rgba(0, 0, 0, 0.03);
    border-color: #ddd;
    color: #666;
}

body.light-mode .empty-icon {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
    border-color: #ddd;
    color: #ccc;
}

body.light-mode .notifications-empty h3 {
    color: #333;
}

/* ==================== Bet Detail Page Styles ==================== */
.bet-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Bet Status Card */
.bet-status-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.bet-status-card.won {
    border-color: #00c853;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, #1a1a1a 100%);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.3);
}

.bet-status-card.lost {
    border-color: #ff4444;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, #1a1a1a 100%);
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
}

.bet-status-card.pending {
    border-color: #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, #1a1a1a 100%);
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.3);
}

.bet-status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bet-status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    animation: pulse 2s ease-in-out infinite;
}

.bet-status-card.won .bet-status-icon {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.1) 100%);
    border: 3px solid #00c853;
    color: #00c853;
}

.bet-status-card.lost .bet-status-icon {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, rgba(255, 68, 68, 0.1) 100%);
    border: 3px solid #ff4444;
    color: #ff4444;
}

.bet-status-card.pending .bet-status-icon {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 3px solid #ff9800;
    color: #ff9800;
}

.bet-status-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bet-status-card.won .bet-status-title {
    color: #00c853;
}

.bet-status-card.lost .bet-status-title {
    color: #ff4444;
}

.bet-status-card.pending .bet-status-title {
    color: #ff9800;
}

.bet-status-subtitle {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.bet-status-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.amount-label {
    color: #aaa;
    font-size: 16px;
}

.amount-value {
    font-size: 42px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Bet Info Section */
.bet-info-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.section-title {
    color: #ffd700;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bet-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.info-value {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.info-value.highlight {
    color: #ffd700;
    font-size: 18px;
}

.won-text {
    color: #00c853 !important;
}

/* Match Detail Card */
.match-detail-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.match-league {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-weight: 600;
}

.match-date {
    color: #888;
    font-size: 14px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.team.away {
    flex-direction: row-reverse;
    text-align: right;
}

.team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffd700;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.team-score {
    font-size: 36px;
    font-weight: 700;
    color: #888;
    min-width: 50px;
    text-align: center;
}

.team-score.won {
    color: #00c853;
}

.match-vs {
    font-size: 16px;
    font-weight: 700;
    color: #888;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.bet-selection,
.match-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-top: 15px;
}

.selection-label,
.result-label {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    min-width: 80px;
}

.selection-value {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-value {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-value.won {
    color: #00c853;
}

/* Timeline */
.bet-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 15px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 45px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.3) 0%, transparent 100%);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffd700;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.1) 100%);
    border-color: #00c853;
    color: #00c853;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-desc {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 5px;
}

.timeline-time {
    color: #666;
    font-size: 12px;
}

/* Bet Actions */
.bet-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-action {
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-action.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-action.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-action.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: #fff;
}

.btn-action.secondary:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Mobile Responsive - Bet Detail */
@media (max-width: 768px) {
    .bet-status-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .bet-status-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    
    .bet-status-title {
        font-size: 24px;
    }
    
    .amount-value {
        font-size: 32px;
    }
    
    .bet-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .match-teams {
        flex-direction: column;
        gap: 30px;
    }
    
    .team {
        width: 100%;
        justify-content: center;
    }
    
    .team.away {
        flex-direction: row;
        text-align: left;
    }
    
    .match-vs {
        transform: rotate(90deg);
    }
    
    .bet-selection,
    .match-result {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .bet-actions {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
}

/* Light Mode - Bet Detail */
body.light-mode .bet-status-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

body.light-mode .bet-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .match-detail-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: #ddd;
}

body.light-mode .info-value {
    color: #333;
}

body.light-mode .team-name {
    color: #333;
}

body.light-mode .timeline-title {
    color: #333;
}

body.light-mode .btn-action.secondary {
    background: rgba(0, 0, 0, 0.05);
    border-color: #ddd;
    color: #333;
}

/* ==================== Jackpot Banner ==================== */
.jackpot-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 25px;
    margin: 0 20px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.4),
        inset 0 0 50px rgba(255, 215, 0, 0.1);
}

.jackpot-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.jackpot-info {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.jackpot-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #ffd700;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.jackpot-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jackpot-label {
    color: #ffd700;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.jackpot-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.jackpot-amount .currency {
    color: #ffd700;
    font-size: 24px;
    font-weight: 700;
}

.jackpot-amount .amount {
    color: #ffd700;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
    }
}

.jackpot-subtitle {
    color: #888;
    font-size: 12px;
}

.btn-jackpot-play {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 15px 35px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.btn-jackpot-play:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

/* Provider Filter */
.mobile-filter-toggle {
    display: none;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
}

.mobile-filter-toggle:active {
    transform: scale(0.98);
}

.filters-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-left: 3px solid #ffd700;
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.filters-sidebar.active {
    right: 0;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #333;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 1;
}

.filters-header h3 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-close {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.filters-close:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: #ff4444;
    color: #ff4444;
}

.filter-group {
    padding: 20px;
    border-bottom: 2px solid #333;
    flex-shrink: 0;
}

.filter-group:last-child {
    padding-bottom: 100px; /* Extra padding at bottom for scroll */
}

.filter-title {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-filter-list,
.game-categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: none;
}

.provider-filter-list .provider-btn,
.game-categories-list .game-category-btn {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 15px;
    border-radius: 10px;
    flex-shrink: 0;
}

.provider-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.provider-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.provider-btn:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.provider-btn.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

/* ==================== Games Pages (Casino / Slots) Styles ==================== */
.games-container,
.sports-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Game/Sport Categories */
.game-categories,
.sport-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
}

.game-category-btn,
.sport-category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-category-btn:hover,
.sport-category-btn:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.game-category-btn.active,
.sport-category-btn.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.match-count,
.category-count {
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.game-category-btn.active .match-count,
.sport-category-btn.active .match-count,
.game-category-btn.active .category-count {
    background: #000;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.game-card.featured {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.game-card.vip {
    border-color: #9c27b0;
}

.game-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

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

.game-card:hover .game-image img {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play-large {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-play-large:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

.btn-favorite {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-favorite:hover {
    background: rgba(255, 68, 68, 0.3);
    border-color: #ff4444;
    color: #ff4444;
    transform: scale(1.1);
}

.btn-favorite .fas {
    color: #ff4444;
}

.btn-play,
.btn-demo {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-demo {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
}

.btn-play:hover,
.btn-demo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-badge.live {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.game-badge.live i {
    animation: pulse 1s ease-in-out infinite;
}

.game-badge.popular {
    background: linear-gradient(135deg, #ff9800 0%, #ffa726 100%);
    color: #fff;
}

.game-badge.new {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: #fff;
}

.game-badge.jackpot {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.game-badge.megaways {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: #fff;
}

.game-badge-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.game-badge-vip {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-badge-hot {
    position: absolute;
    top: 50px;
    right: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9800 0%, #ffa726 100%);
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-info {
    padding: 18px;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.game-title {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

.game-rating {
    background: rgba(255, 215, 0, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-rating i {
    font-size: 11px;
}

.game-provider-logo {
    margin-bottom: 12px;
}

.provider-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.game-provider {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
}

.stat-item i {
    color: #ffd700;
    width: 16px;
}

.game-features {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

/* ==================== Sports Page Styles ==================== */
.matches-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s;
}

.match-card:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 10px;
}

.match-league {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.match-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaa;
    font-size: 13px;
}

.match-live-badge {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.match-content {
    margin-bottom: 15px;
}

.match-teams-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.match-team {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffd700;
}

.team-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.match-vs {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.match-odds {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.odd-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.odd-btn:hover:not(.disabled) {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.odd-btn.selected {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.odd-btn.selected .odd-label,
.odd-btn.selected .odd-value {
    color: #000;
}

.odd-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.odd-label {
    color: #888;
    font-size: 12px;
    font-weight: 600;
}

.odd-value {
    color: #ffd700;
    font-size: 18px;
    font-weight: 700;
}

.match-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.match-markets {
    color: #888;
    font-size: 13px;
}

.btn-match-detail {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-match-detail:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile Responsive - Games & Sports */
@media (max-width: 768px) {
    .jackpot-banner {
        flex-direction: column;
        text-align: center;
        margin: 0 10px 20px 10px;
        padding: 20px;
    }
    
    .jackpot-info {
        flex-direction: column;
        text-align: center;
    }
    
    .jackpot-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .jackpot-amount .amount {
        font-size: 28px;
    }
    
    .btn-jackpot-play {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .provider-filter {
        padding: 0 10px;
        gap: 8px;
    }
    
    .provider-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-image {
        height: 140px;
    }
    
    .game-info {
        padding: 12px;
    }
    
    .game-title {
        font-size: 14px;
    }
    
    .game-rating {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .game-provider {
        font-size: 11px;
    }
    
    .provider-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .stat-item {
        font-size: 11px;
    }
    
    .feature-tag {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .btn-play-large {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-favorite {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .btn-play,
    .btn-demo {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .game-categories,
    .sport-categories {
        gap: 8px;
        padding: 12px;
    }
    
    .game-category-btn,
    .sport-category-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .match-teams-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .match-team {
        width: 100%;
        justify-content: center;
    }
    
    .match-vs {
        transform: rotate(90deg);
    }
    
    .match-odds {
        width: 100%;
    }
    
    .team-logo {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .team-name {
        font-size: 14px;
    }
    
    .odd-btn {
        padding: 10px 8px;
    }
    
    .odd-value {
        font-size: 16px;
    }
}

/* Light Mode - Games & Sports */
body.light-mode .jackpot-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.3),
        inset 0 0 50px rgba(255, 215, 0, 0.05);
}

body.light-mode .game-card,
body.light-mode .match-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .game-categories,
body.light-mode .sport-categories {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: #ddd;
}

body.light-mode .game-title,
body.light-mode .team-name {
    color: #333;
}

body.light-mode .game-category-btn,
body.light-mode .sport-category-btn,
body.light-mode .provider-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: #ddd;
    color: #333;
}

body.light-mode .provider-badge {
    background: rgba(0, 0, 0, 0.05);
    border-color: #ddd;
    color: #666;
}

body.light-mode .stat-item {
    color: #666;
}

body.light-mode .odd-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: #ddd;
}

body.light-mode .match-vs {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .btn-match-detail {
    background: rgba(0, 0, 0, 0.03);
    border-color: #ddd;
    color: #333;
}

/* ==================== Mobile Responsive Styles ==================== */

/* Mobile Filters Toggle - show only on mobile */
@media (max-width: 768px) {
    .mobile-filter-toggle {
        display: flex;
    }
    
    .provider-filter {
        display: none; /* Hide desktop provider filter */
    }
    
    .game-categories {
        display: none; /* Hide desktop category filter */
    }
    
    .filters-sidebar {
        width: 85%;
        max-width: 350px;
    }
    
    .filter-group:last-child {
        padding-bottom: 150px; /* More space for mobile bottom nav */
    }
    
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .filters-sidebar {
        width: 90%;
    }
    
    .filters-header h3 {
        font-size: 18px;
    }
    
    .filter-title {
        font-size: 14px;
    }
    
    .provider-filter-list .provider-btn,
    .game-categories-list .game-category-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
}

