/* ============================
   GLOBAL STYLES
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a1929;
    --secondary-dark: #0d1f30;
    --accent-gold: #FFD700;
    --accent-gold-dark: #FFA500;
    --accent-gold-rgb: 255, 215, 0;
    --accent-blue: #1e88e5;
    --accent-blue-dark: #1565c0;
    --accent-blue-rgb: 30, 136, 229;
    --primary-color: var(--accent-blue);
    --secondary-color: var(--accent-gold);
    --text-primary: #ffffff;
    --text-secondary: #b0bec5;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: linear-gradient(135deg, #1a2836 0%, #0f1921 100%);
    --gold-gradient: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    --blue-gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
}

/* Theme Transition */
body.theme-transitioning * {
    transition: background 0.5s ease, 
                background-color 0.5s ease, 
                border-color 0.5s ease, 
                color 0.5s ease,
                box-shadow 0.5s ease !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('../img/indir (46).jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    zoom: 0.9;
    padding-top: 135px;
    transition: padding-top 0.3s ease;
    cursor: url('../img/maouse.png') 16 16, auto;
}

* {
    cursor: url('../img/maouse.png') 16 16, auto;
}

a, button, .btn, input[type="submit"], input[type="button"] {
    cursor: url('../img/maouse.png') 16 16, pointer;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.7);
    z-index: -1;
}


/* ============================
   TELEGRAM BANNER
   ============================ */
.telegram-banner {
    background: rgba(26, 35, 50, 0.35);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    animation: slideDown 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.telegram-banner a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.telegram-banner i {
    margin-right: 10px;
    font-size: 18px;
}


.close-banner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.close-banner:hover {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.8) 0%, rgba(220, 48, 38, 0.8) 100%);
    border-color: rgba(255, 59, 48, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}

.close-banner:active {
    transform: translateY(-50%) scale(0.95);
}

.close-banner i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.telegram-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

body.banner-hidden {
    padding-top: 93px;
}

body.banner-hidden .main-header {
    top: 0;
}

/* ============================
   HEADER
   ============================ */
.main-header {
    background: rgba(26, 35, 50, 0.35);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: backdrop-filter 0.3s ease, top 0.3s ease, background 0.3s ease;
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
}

.logo {
    flex-shrink: 0;
    margin-top: 15px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.header-custom-buttons {
    display: inline-flex;
}

.header-icon-text {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.header-icon-text svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-menu-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 5px;
}

.header-menu-icon:hover {
    background: rgba(0, 180, 253, 0.2);
    transform: translateY(-2px);
}

.header-menu-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Logged In User Header */
.user-info-logged {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 4px;
}

.user-level-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.user-level-badge:hover {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.5);
}

/* Level Group Colors */
.user-level-badge.level-elite {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
}

.user-level-badge.level-elite:hover {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.5);
}

.user-level-badge.level-expert {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.user-level-badge.level-expert:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.user-level-badge.level-pro {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.user-level-badge.level-pro:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.5);
}

.user-level-badge.level-master {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.user-level-badge.level-master:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

.user-level-badge i {
    font-size: 12px;
    color: #ffd700;
}

.header-gift-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #1e88e5;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}

.header-gift-icon:hover {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2) 0%, rgba(21, 101, 192, 0.1) 100%);
    border-color: rgba(30, 136, 229, 0.3);
    color: #42a5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.header-balance-display {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-value {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.header-user-avatar {
    position: relative;
    cursor: pointer;
}

.header-user-avatar i {
    display: block;
    transition: all 0.3s;
    filter: drop-shadow(0 0 3px rgba(30, 136, 229, 0.3));
}

.header-user-avatar:hover i {
    filter: drop-shadow(0 0 8px rgba(30, 136, 229, 0.6));
    transform: scale(1.05);
}

.smart-panel-wrapper {
    position: relative;
}

.header-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.header-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.header-menu-toggle.active {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.3) 0%, rgba(21, 101, 192, 0.2) 100%);
    border-color: rgba(30, 136, 229, 0.5);
    color: #1e88e5;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1c2532;
    border-radius: 4px;
    min-width: 230px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid #2a3442;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    overflow: hidden;
    padding: 0;
}

.user-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: #6b7a8f;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #2a3442;
    position: relative;
    overflow: hidden;
}

.user-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(30, 136, 229, 0.15) 50%, 
        transparent 100%);
    transition: right 0.6s ease;
}

.user-dropdown-item:hover::before {
    right: 100%;
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-item:hover {
    background: #243140;
    color: #a8b5c7;
    border-left-color: transparent;
}

.user-dropdown-item i {
    width: 18px;
    font-size: 15px;
    color: #4a5768;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

.user-dropdown-item:hover i {
    color: #6b7a8f;
}

.user-dropdown-item span {
    flex: 1;
    letter-spacing: 0.3px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.user-dropdown-item.logout {
    color: #6b7a8f;
    border-top: 2px solid #2a3442;
    position: relative;
    overflow: hidden;
}

.user-dropdown-item.logout::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(30, 136, 229, 0.15) 50%, 
        transparent 100%);
    transition: right 0.6s ease;
}

.user-dropdown-item.logout:hover::before {
    right: 100%;
}

.user-dropdown-item.logout:hover {
    background: #243140;
    color: #a8b5c7;
}

.user-dropdown-item.logout i {
    color: #4a5768;
    position: relative;
    z-index: 1;
}

.user-dropdown-item.logout:hover i {
    color: #6b7a8f;
}

.smart-panel {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-deposit {
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
}

.btn-deposit:hover {
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.5);
}

.btn-withdraw {
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
}

.btn-withdraw:hover {
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.5);
}

.btn-live-tv {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 50%, #0d47a1 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
}

.btn-live-tv:hover {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 50%, #1565c0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.5);
}

.btn-live-tv img {
    margin-right: 6px;
    width: 20px;
    height: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.btn-bonus {
    background: #0d7ddc;
    color: white;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: none;
}

.btn-bonus:hover {
    background: #0b6ac4;
    transform: none;
    box-shadow: none;
}

.btn-bonus svg {
    width: 16px;
    height: 16px;
}

.btn-sign-in {
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    border: none;
    color: white;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

.btn-sign-in:hover {
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.5);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(30, 136, 229, 0.3);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(30, 136, 229, 0.6), 0 0 30px rgba(30, 136, 229, 0.4);
    }
}

.btn-register {
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 8px;
}

.btn-register:hover {
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.6);
}

.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 125, 220, 0.2) 0%, rgba(10, 95, 184, 0.2) 100%);
    border-radius: 50%;
    position: relative;
    font-size: 15px;
    color: #0d7ddc;
    border: 1px solid rgba(13, 125, 220, 0.3);
}

.btn-icon:hover {
    background: linear-gradient(135deg, rgba(13, 125, 220, 0.3) 0%, rgba(10, 95, 184, 0.3) 100%);
    border-color: rgba(13, 125, 220, 0.5);
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ff3b30;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--primary-dark);
}

.btn-balance {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-language {
    background: transparent;
    color: white;
    padding: 6px 10px;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-language img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.btn-language span {
    font-size: 11px;
    font-weight: 600;
}

.btn-language i {
    font-size: 9px;
    color: var(--text-secondary);
}

.btn-language:hover {
    background: rgba(255, 255, 255, 0.05);
}

.current-time {
    background: transparent;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    color: white;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* ============================
   NAVIGATION
   ============================ */
.menu-toggle {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.2) 0%, rgba(220, 48, 38, 0.2) 100%);
    border: 1px solid rgba(255, 59, 48, 0.4);
    color: #ff3b30;
    width: 38px;
    height: 38px;
}

.menu-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.3) 0%, rgba(220, 48, 38, 0.3) 100%);
    border-color: rgba(255, 59, 48, 0.6);
}

.main-nav {
    background: transparent;
    border: none;
    padding: 0;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
}

.messages-btn {
    background: linear-gradient(135deg, rgba(13, 125, 220, 0.2) 0%, rgba(10, 95, 184, 0.2) 100%);
    border: 1px solid rgba(13, 125, 220, 0.3);
    color: #0d7ddc;
    width: 38px;
    height: 38px;
}

.messages-btn:hover {
    background: linear-gradient(135deg, rgba(13, 125, 220, 0.3) 0%, rgba(10, 95, 184, 0.3) 100%);
    border-color: rgba(13, 125, 220, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 8px 30px;
    margin: 0;
    gap: 4px;
    background: transparent;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.nav-item i,
.nav-item svg {
    font-size: 13px;
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-menu-sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
}

.nav-dropdown:hover .nav-menu-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-sub li {
    list-style: none;
}

.nav-menu-item {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #fff;
    padding-left: 25px;
}

.nav-menu-item span {
    display: block;
}

/* Language Selector & Time */
.language-selector {
    position: relative;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-language .flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    object-fit: cover;
}

.flag-icon-small {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    object-fit: cover;
}

.btn-language i {
    font-size: 10px;
    opacity: 0.8;
}

.btn-language:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(180deg, #0d2847 0%, #1a3a5a 100%);
    border-radius: 12px;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(30, 136, 229, 0.2);
    border: 1px solid rgba(30, 136, 229, 0.3);
    overflow: hidden;
    display: none;
    z-index: 9999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-dropdown.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(30, 136, 229, 0.2);
    color: #fff;
    padding-left: 20px;
}

.lang-option.active {
    background: rgba(30, 136, 229, 0.3);
    color: #fff;
    font-weight: 700;
}

.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    color: var(--accent-blue);
    font-weight: bold;
}

.current-time {
    color: white;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.current-time:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Smart Panel Buttons */
.sp-button {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
}

.sp-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.sp-button i {
    font-size: 13px;
    color: white;
}

.count-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    animation: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.count-badge.odd {
    background: #e74c3c;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.menu-toggle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    border: none;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.menu-toggle:hover {
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
}

.menu-toggle.active,
.smart-panel:has(.side-panel.active) .menu-toggle {
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
}

.menu-toggle i {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

/* Bottom connection line when dropdown is active */
.menu-toggle::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 1px;
    background: transparent;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.smart-panel:has(.side-panel.active) .menu-toggle::after {
    background: rgba(255, 255, 255, 0.2);
}

/* Side Panel Overlay - GIZLE */
.side-panel-overlay {
    display: none;
}

.side-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: 50px;
    background: #2c3e50;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    border-radius: 8px;
    border: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(60px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.side-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Top connection line */
.side-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.side-panel.active::before {
    background: rgba(255, 255, 255, 0.3);
}

.hdr-smart-panel-holder-arrow-bc {
    width: 100%;
    padding: 0;
}

.hdr-smart-panel-holder-bc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    transition: opacity 0.3s ease;
}

.sp-button-bc {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    color: white;
    border-radius: 0;
}

.sp-button-bc:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sp-button-icon-bc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s;
}

.sp-button-bc:hover .sp-button-icon-bc {
    color: white;
    transform: scale(1.1);
}

.count-blink-even,
.count-blink-odd {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e74c3c;
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    font-style: normal;
}

.count-blink-odd {
    background: #e74c3c;
    color: white;
}

.count-blink-even[data-badge=""],
.count-blink-odd[data-badge=""] {
    display: none;
}

.count-odd-animation[data-badge="3"]::before,
.count-blink-odd[data-badge="3"]::before {
    content: "3";
}

.count-odd-animation,
.count-blink-odd {
    animation: none;
}

/* SP Buttons Holder - GIZLE */
.sp-buttons-holder {
    display: none;
}

/* Responsive Side Panel */
@media (max-width: 768px) {
    .side-panel {
        width: 48px;
    }
    
    .sp-button-bc {
        height: 38px;
    }
    
    .sp-button-icon-bc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .side-panel {
        width: 46px;
        right: 0;
    }
    
    .sp-button-bc {
        height: 36px;
    }
    
    .sp-button-icon-bc {
        font-size: 15px;
    }
    
    .hdr-smart-panel-holder-bc {
        gap: 3px;
    }
}

.nav-item:hover {
    color: white;
    background: rgba(13, 125, 220, 0.15);
}

.nav-item.active {
    color: white;
    background: linear-gradient(135deg, rgba(13, 125, 220, 0.25) 0%, rgba(10, 95, 184, 0.25) 100%);
    box-shadow: inset 0 0 0 1px rgba(13, 125, 220, 0.3);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--blue-gradient);
}

/* ============================
   MAIN CONTENT
   ============================ */
.main-content {
    padding: 30px 0;
}

/* ============================
   HERO SLIDER
   ============================ */
.hero-slider {
    margin-top: 30px;
    margin-bottom: 80px;
    border-radius: 25px;
    position: relative;
    max-width: 1850px;
    margin-left: auto;
    margin-right: auto;
    background: var(--card-bg);
}

.hero-slider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.3));
    z-index: 2;
}

.hero-slider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.3));
    z-index: 2;
}

.slider-wrapper {
    position: relative;
    height: 432px;
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
}

.slide {
    display: none;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    background: transparent;
    position: relative;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
    transition: all 0.3s ease;
}

.slide-link:hover .slide-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 320px;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
}

.slide-placeholder {
    font-size: 120px;
    color: var(--accent-gold);
    opacity: 0.3;
}

.slide-text {
    flex: 1;
    text-align: left;
    max-width: 700px;
}

.slide-overlay .slide-text {
    text-align: left;
}

.slide-overlay .slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.slide-overlay .slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.slide-button {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.slide-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.slide-button i {
    transition: transform 0.3s ease;
}

.slide-button:hover i {
    transform: translateX(5px);
}

.slide-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.slide-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.slide-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.slide-footer p {
    font-size: 15px;
    color: var(--text-secondary);
}

.slider-controls {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-gold);
    color: #000;
}

.slider-counter {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

/* ============================
   FEATURED EVENTS
   ============================ */
.featured-events {
    margin-top: -70px;
    margin-bottom: 90px;
    padding: 30px 0;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.events-slider {
    position: relative;
}

.events-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    min-height: 220px;
    padding-bottom: 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Scrollbar tamamen gizle */
.events-wrapper::-webkit-scrollbar {
    display: none;
}

.events-wrapper .event-card {
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(26, 40, 54, 0.95) 0%, rgba(20, 30, 42, 0.95) 100%);
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
}

.events-wrapper .event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 136, 229, 0.5);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

/* Loading Spinner */
.loading-events {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.loading-events.hidden {
    display: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(30, 136, 229, 0.2);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-events p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Kartlar yüklendiğinde animasyon */
.events-wrapper.loaded .event-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.events-wrapper.loaded .event-card:nth-child(1) { animation-delay: 0.1s; }
.events-wrapper.loaded .event-card:nth-child(2) { animation-delay: 0.2s; }
.events-wrapper.loaded .event-card:nth-child(3) { animation-delay: 0.3s; }
.events-wrapper.loaded .event-card:nth-child(4) { animation-delay: 0.4s; }
.events-wrapper.loaded .event-card:nth-child(5) { animation-delay: 0.5s; }
.events-wrapper.loaded .event-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.events-prev,
.events-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 18px;
}

.events-prev {
    left: -25px;
}

.events-next {
    right: -25px;
}

.events-prev:hover,
.events-next:hover {
    background: var(--accent-gold);
    color: #000;
}

/* Event Card */
.event-card {
    background: linear-gradient(135deg, #1a2332 0%, #0f1921 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
    border-color: rgba(30, 136, 229, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.event-flag-img {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.event-sport-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.event-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
}

.event-league {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
}

.event-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    flex-shrink: 0;
}

.team .team-logo {
    margin-bottom: 2px;
}

.team img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.team span,
.team-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    max-width: 115px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 4px 8px;
    border-radius: 6px;
}

.event-date {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1px;
}

.event-hour {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.event-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.odd-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 6px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
    overflow: hidden;
}

.odd-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(66, 165, 245, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.odd-btn.has-odd {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.12) 0%, rgba(21, 101, 192, 0.08) 100%);
    border-color: rgba(30, 136, 229, 0.25);
}

.odd-btn.has-odd:hover::before {
    opacity: 1;
}

.odd-btn:hover {
    border-color: rgba(30, 136, 229, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.odd-btn:not(.has-odd) {
    opacity: 0.4;
    cursor: not-allowed;
}

.odd-btn:not(.has-odd):hover {
    transform: none;
    box-shadow: none;
}

.odd-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.odd-value {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================
   CATEGORY CARDS
   ============================ */
.category-section {
    margin-top: -60px;
    margin-bottom: 60px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.category-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ============================
   CASINO GAMES
   ============================ */
.casino-games {
    margin-top: -30px;
    margin-bottom: 90px;
}

/* ============================
   BANNER SECTION
   ============================ */
.banner-section {
    margin-top: -30px;
    margin-bottom: 60px;
    max-width: 1850px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.banner-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ============================
   UPCOMING MATCHES - Liste Tasarımı
   ============================ */
.upcoming-matches {
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2) 0%, rgba(21, 101, 192, 0.15) 100%);
    border: 1px solid rgba(30, 136, 229, 0.3);
    border-radius: 6px;
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.3) 0%, rgba(21, 101, 192, 0.25) 100%);
    border-color: rgba(30, 136, 229, 0.5);
}

.view-all-btn i {
    font-size: 10px;
}

/* Zaman Filtreleri - Sport Sayfası Stili */
.time-filter-wrapper {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.time-filters-list {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-around;
}

.time-filters-list li {
    flex: 1;
}

.time-filter-item {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.time-filter-item:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.02);
}

.time-filter-item.active {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
    font-weight: 600;
}

/* Spor Navigasyonu - Sport Sayfası Stili */
.sports-navigation-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.sports-nav-scroll-btn {
    background: rgba(30, 136, 229, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.2);
    color: var(--accent-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.sports-nav-scroll-btn:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.sports-nav-scroll-btn.left-btn {
    margin-right: 10px;
}

.sports-nav-scroll-btn.right-btn {
    margin-left: 10px;
}

.sports-nav-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sports-nav-container::-webkit-scrollbar {
    display: none;
}

.sports-nav-list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 70px;
    align-items: center;
}

.loading-sports-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.sport-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 110px;
    text-decoration: none;
    position: relative;
}

.sport-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sport-nav-item.active {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15) 0%, rgba(30, 136, 229, 0.08) 100%);
    border-color: var(--accent-blue);
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.3);
}

.sport-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.sport-nav-item.active .sport-icon {
    color: var(--accent-blue);
}

.sport-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent-gold);
    color: #0a1929;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.sport-count-badge.zero-count {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.sport-nav-item:has(.zero-count) {
    opacity: 0.5;
    cursor: not-allowed;
}

.sport-nav-item:has(.zero-count):hover {
    transform: none;
    box-shadow: none;
}

.sport-nav-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.sport-nav-item.active .sport-nav-name {
    color: var(--accent-blue);
}

.sport-filter-icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.sport-filter-item.active .sport-filter-icon {
    color: var(--accent-blue);
}

.sport-filter-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.sport-filter-item.active .sport-filter-name {
    color: var(--accent-blue);
}

.sport-filter-count {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.sport-filter-item.active .sport-filter-count {
    color: var(--accent-blue);
    background: rgba(30, 136, 229, 0.15);
}

/* Maç Listesi Header */
.matches-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

.matches-header-left {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.matches-header-odds {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    gap: 8px;
}

.matches-header-odds span {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* Maç Listesi */
.upcoming-matches-list {
    background: rgba(26, 40, 54, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 8px 8px;
    min-height: 200px;
}

.loading-matches {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.loading-matches.hidden {
    display: none;
}

.loading-matches p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Match Row - Liste Item */
.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

.match-row:last-child {
    border-bottom: none;
}

.match-row:hover {
    background: rgba(30, 136, 229, 0.08);
}

.match-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-blue);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.match-row:hover::before {
    opacity: 1;
}

/* Match Info Kısmı */
.match-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.match-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.match-date {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.match-hour {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.match-flag-compact {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.match-teams-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.match-team-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-team-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
}

.match-team-name-compact {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Match Odds */
.match-odds-compact {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    gap: 8px;
}

.match-odd-btn-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.match-odd-btn-compact:hover {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.25) 0%, rgba(21, 101, 192, 0.2) 100%);
    border-color: rgba(30, 136, 229, 0.4);
    transform: scale(1.05);
}

.match-odd-btn-compact.has-odd {
    background: rgba(30, 136, 229, 0.12);
    border-color: rgba(30, 136, 229, 0.2);
}

/* ============================
   LIVE CASINO
   ============================ */
.live-casino {
    margin-top: -30px;
    margin-bottom: 90px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 20px;
}

.game-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.game-card:hover img {
    transform: scale(1.05);
}

/* ============================
   FLOATING BUTTONS
   ============================ */
.floating-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 1000;
    pointer-events: none;
}

.float-btn {
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-decoration: none;
    border-right: none;
    position: relative;
    pointer-events: auto;
    flex-shrink: 0;
}

.float-btn img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-text {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.float-btn:hover {
    width: 200px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 30, 48, 0.95) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: -8px 4px 25px rgba(255, 215, 0, 0.3);
}

.float-btn:hover img {
    transform: scale(1.05);
}

.float-btn:hover .float-text {
    opacity: 1;
    transform: translateX(0);
}

.age-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #a71f67;
    margin: 30px auto 20px;
}

.age-badge span {
    color: #a71f67;
    font-size: 24px;
    font-weight: 700;
}

/* ============================
   LOGIN MODAL
   ============================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 136, 229, 0.15) 0%, rgba(0, 0, 0, 0.9) 50%);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: linear-gradient(180deg, #0d2847 0%, #1a3a5a 100%);
    border-radius: 24px;
    width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 150px rgba(30, 136, 229, 0.3),
                0 0 250px rgba(30, 136, 229, 0.2);
    animation: slideDown 0.3s ease;
    z-index: 10001;
}

/* Scrollbar Styling */
.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: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    border-radius: 10px;
    transition: all 0.3s;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #42a5f5 0%, var(--accent-blue) 100%);
    box-shadow: 0 0 10px rgba(30, 136, 229, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#registerModal .modal-header {
    padding: 18px 24px;
}

.modal-logo {
    height: 40px;
    width: auto;
}

#registerModal .modal-logo {
    height: 38px;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-register-modal {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-register-modal:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #14c991 0%, #06a575 100%);
}

.modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px 32px 40px;
}

#registerModal .modal-body {
    padding: 20px 28px 28px;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 10px 0;
    text-align: center;
    letter-spacing: 0.3px;
}

.modal-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 32px 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus {
    outline: none;
    background: rgba(0, 30, 50, 0.6);
    border-color: rgba(30, 136, 229, 0.4);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.15);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-blue);
}

.form-check label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
}

.btn-login-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6);
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
}

.forgot-password {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.forgot-password:hover {
    color: rgba(255, 255, 255, 0.9);
}

.modal-slides {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-slides img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.8;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-slides img:hover {
    opacity: 1;
    transform: scale(1.02);
    border-color: rgba(30, 136, 229, 0.5);
}

.modal-footer {
    padding: 32px 32px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

#registerModal .modal-footer {
    padding: 24px 28px 32px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.support-link i {
    font-size: 18px;
}

.support-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Register Modal Specific Styles */
.btn-login-modal {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-login-modal:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.5);
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

#registerModal .modal-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 400;
    margin: 0 0 3px 0;
    text-align: left;
    letter-spacing: 0.2px;
}

#registerModal .modal-title {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-align: left;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.register-step-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    margin: 4px 0 12px 0;
    text-align: left;
    letter-spacing: 1.2px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#registerModal .form-group input {
    padding: 16px 18px;
    font-size: 15px;
    border-radius: 10px;
    background: #2f3a4b;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#registerModal .form-group input:focus {
    background: #354153;
    border-color: rgba(30, 136, 229, 0.4);
}

.btn-register-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
}

.btn-register-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6);
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
}

/* Register Form Footer */
.reg-form-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    width: 100%;
}

.step-indicator {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    border-radius: 2px;
}

.step-indicator-active {
    background: rgba(255, 255, 255, 1);
}

/* Register Steps */
.register-step {
    display: none;
}

.register-step.active {
    display: block;
}

/* Step 2 Form Controls */
.form-control-select {
    width: 100%;
    padding: 16px 18px;
    background: #2f3a4b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-control-select:focus {
    outline: none;
    border-color: rgba(13, 125, 216, 0.5);
    background: #364252;
}

.form-control-select option {
    background: #2f3a4b;
    color: white;
}

/* Date Input */
.register-form input[type="date"] {
    background: #2f3a4b;
    color: rgba(255, 255, 255, 0.9);
    color-scheme: dark;
}

.register-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Phone Group */
.phone-group {
    display: flex;
    gap: 12px;
}

.phone-group .phone-code {
    width: 120px;
    flex-shrink: 0;
}

.phone-group input {
    flex: 1;
}

/* Terms Check */
.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.terms-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.terms-check label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    cursor: pointer;
}

.terms-check a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.terms-check a:hover {
    text-decoration: underline;
}

.terms-links {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.terms-links a {
    color: var(--accent-blue);
}

/* Step 2 Buttons */
.register-step-2-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 0;
}

.btn-register-back {
    flex: 1;
    padding: 16px;
    background: linear-gradient(135deg, #344a5f 0%, #2c5282 50%, var(--accent-blue) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.4);
}

.btn-register-back:hover {
    background: linear-gradient(135deg, #2c5282 0%, var(--accent-blue) 50%, #42a5f5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6);
}

.register-step-2-buttons .btn-register-submit {
    flex: 1;
    margin-top: 0;
}

/* ============================
   FOOTER
   ============================ */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.main-footer {
    background: url('../img/indir (46).jpg') center/cover fixed;
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 41, 0.92);
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
}

.footer-section ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1850px;
    margin: 0 auto;
}

.footer-bottom h5 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.certificate-badge {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.certificate-badge img {
    height: 85px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.certificate-badge img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.store-button {
    display: block;
    transition: all 0.3s ease;
}

.store-button img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.store-button:hover {
    transform: translateY(-3px);
}

.provider-logos {
    margin: 30px auto;
    max-width: 1200px;
}

.provider-logos img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.payment-methods-section {
    margin: 40px 0 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods-section h5 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
}

.payment-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.payment-track {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
}

.payment-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%) brightness(0.9);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.payment-track img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.payment-slider:hover .payment-track {
    animation-play-state: paused;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 20px;
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glowingBorder {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                    0 0 40px rgba(255, 215, 0, 0.3),
                    0 0 60px rgba(255, 215, 0, 0.2);
    }
    25% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                    0 0 50px rgba(255, 215, 0, 0.4),
                    0 0 70px rgba(255, 215, 0, 0.3);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.7),
                    0 0 60px rgba(255, 215, 0, 0.5),
                    0 0 80px rgba(255, 215, 0, 0.4);
    }
    75% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                    0 0 50px rgba(255, 215, 0, 0.4),
                    0 0 70px rgba(255, 215, 0, 0.3);
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                    0 0 40px rgba(255, 215, 0, 0.3),
                    0 0 60px rgba(255, 215, 0, 0.2);
    }
}

@keyframes movingBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .time-filters {
        gap: 6px;
    }
    
    .time-filter-btn {
        min-width: 80px;
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .match-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .match-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .match-odds-compact {
        width: 100%;
    }
    
    .view-all-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .events-wrapper .event-card {
        min-width: 310px;
        max-width: 310px;
    }
    
    .team-name {
        font-size: 11px;
        max-width: 95px;
    }
    
    .event-flag-img {
        width: 18px;
        height: 13px;
    }
    
    .odd-value {
        font-size: 13px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 125px;
    }
    
    body.banner-hidden {
        padding-top: 83px;
    }
    
    .header-right .btn:not(.btn-icon):not(.btn-register) {
        display: none;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .telegram-banner {
        padding: 8px 15px;
    }
    
    .telegram-banner a {
        font-size: 11px;
    }
    
    .header-content {
        padding: 8px 15px;
    }
    
    .header-container {
        padding: 0;
    }
    
    .nav-menu {
        padding: 6px 15px;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 2px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .slide-content {
        flex-direction: column;
        padding: 0;
    }
    
    .slide-title {
        font-size: 48px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .time-filter-btn {
        min-width: 70px;
        padding: 7px 10px;
        font-size: 10px;
    }
    
    .sport-filter-item {
        min-width: 75px;
        padding: 10px 15px;
    }
    
    .matches-header-odds {
        grid-template-columns: repeat(3, 60px);
        gap: 6px;
    }
    
    .match-odd-btn-compact {
        padding: 6px;
        font-size: 13px;
    }
    
    .match-team-name-compact {
        font-size: 12px;
    }
    
    .events-wrapper .event-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .team-name {
        font-size: 10px;
        max-width: 80px;
    }
    
    .event-league {
        font-size: 9px;
    }
    
    .live-indicator {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .odd-btn {
        padding: 6px 4px;
    }
    
    .odd-value {
        font-size: 12px;
    }
    
    .odd-label {
        font-size: 9px;
    }
    
    .event-hour {
        font-size: 12px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================
   FLAG SPRITES
   ============================ */
.flag-icon {
    display: inline-block;
    width: 24px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 2px;
}

/* ============================
   CUSTOM SELECT WITH FLAGS
   ============================ */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-selected {
    background: rgba(26, 40, 54, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.custom-select-selected:hover {
    border-color: rgba(30, 136, 229, 0.5);
    background: rgba(26, 40, 54, 0.95);
}

.custom-select.active .custom-select-selected {
    border-color: var(--accent-blue);
    background: rgba(26, 40, 54, 1);
}

.custom-select-selected::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s;
}

.custom-select.active .custom-select-selected::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 40, 54, 0.98);
    border: 1px solid rgba(30, 136, 229, 0.3);
    border-radius: 10px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.custom-select.active .custom-select-options {
    display: block;
    animation: slideDown 0.3s ease;
}

.custom-select-option {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    transition: all 0.2s;
    font-size: 14px;
}

.custom-select-option:hover {
    background: rgba(30, 136, 229, 0.2);
    color: var(--accent-blue);
}

.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: rgba(26, 40, 54, 0.5);
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Phone group custom select styling */
.phone-group .custom-select-wrapper {
    width: auto;
    min-width: 130px;
}

/* ============================
   SPORT PAGE STYLES
   ============================ */
.sport-page-main {
    min-height: 100vh;
    padding: 40px 0 80px;
}

.page-header-sport {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(21, 101, 192, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.page-title-sport {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title-sport i {
    color: var(--accent-blue);
    font-size: 42px;
}

.page-subtitle-sport {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Sport Navigation Tabs */
.sport-navigation-section {
    margin-bottom: 40px;
}

.sport-nav-tabs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sport-nav-tabs::-webkit-scrollbar {
    display: none;
}

.sport-nav-tab {
    flex: 1;
    min-width: 180px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.sport-nav-tab i {
    font-size: 20px;
}

.sport-nav-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.sport-nav-tab.active {
    background: linear-gradient(135deg, var(--accent-blue) 0%, rgba(21, 101, 192, 0.9) 100%);
    border-color: var(--accent-blue);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.tab-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    min-width: 35px;
    text-align: center;
}

.sport-nav-tab.active .tab-badge {
    background: rgba(255, 255, 255, 0.3);
}

.live-pulse {
    animation: pulse 2s ease-in-out infinite;
    color: #ff4444;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Sports Grid */
.sports-grid-section {
    margin-top: 40px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.sports-loading,
.no-sports-message,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sports-loading i,
.no-sports-message i,
.error-message i {
    font-size: 48px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.loading-spinner-large {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.sports-loading p,
.no-sports-message p,
.error-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Sport Card */
.sport-card {
    background: linear-gradient(135deg, rgba(26, 40, 54, 0.95) 0%, rgba(20, 30, 42, 0.95) 100%);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sport-card:hover::before {
    transform: scaleX(1);
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.3);
    border-color: var(--accent-blue);
}

.sport-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(21, 101, 192, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sport-card:hover .sport-card-icon {
    background: linear-gradient(135deg, var(--accent-blue), rgba(21, 101, 192, 0.8));
    transform: scale(1.1) rotate(10deg);
}

.sport-card-icon i {
    font-size: 36px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.sport-card:hover .sport-card-icon i {
    color: white;
}

.sport-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.sport-card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.live-dot {
    color: #ff4444;
    font-size: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.sport-card-count {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1;
}

.count-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.sport-card-btn {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--accent-blue), rgba(21, 101, 192, 0.9));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-top: auto;
}

.sport-card-btn:hover {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.9), var(--accent-blue));
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    transform: translateY(-2px);
}

.retry-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--accent-blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: rgba(21, 101, 192, 0.9);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .sports-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title-sport {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title-sport i {
        font-size: 32px;
    }
    
    .sport-nav-tabs {
        flex-direction: column;
    }
    
    .sport-nav-tab {
        min-width: 100%;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   SPORT PAGE STYLES
   ============================ */
.sport-page-main {
    min-height: 100vh;
    padding: 40px 0 80px;
}

.page-header-sport {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(21, 101, 192, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.page-title-sport {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title-sport i {
    color: var(--accent-blue);
    font-size: 42px;
}

.page-subtitle-sport {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.sport-navigation-section {
    margin-bottom: 40px;
}

.sport-nav-tabs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sport-nav-tabs::-webkit-scrollbar {
    display: none;
}

.sport-nav-tab {
    flex: 1;
    min-width: 180px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.sport-nav-tab i {
    font-size: 20px;
}

.sport-nav-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.sport-nav-tab.active {
    background: linear-gradient(135deg, var(--accent-blue) 0%, rgba(21, 101, 192, 0.9) 100%);
    border-color: var(--accent-blue);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.tab-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    min-width: 35px;
    text-align: center;
}

.sport-nav-tab.active .tab-badge {
    background: rgba(255, 255, 255, 0.3);
}

.live-pulse {
    animation: pulse 2s ease-in-out infinite;
    color: #ff4444;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.sports-grid-section {
    margin-top: 40px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.sports-loading,
.no-sports-message,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sports-loading i,
.no-sports-message i,
.error-message i {
    font-size: 48px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.loading-spinner-large {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.sports-loading p,
.no-sports-message p,
.error-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.sport-card {
    background: linear-gradient(135deg, rgba(26, 40, 54, 0.95) 0%, rgba(20, 30, 42, 0.95) 100%);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sport-card:hover::before {
    transform: scaleX(1);
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.3);
    border-color: var(--accent-blue);
}

.sport-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(21, 101, 192, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sport-card:hover .sport-card-icon {
    background: linear-gradient(135deg, var(--accent-blue), rgba(21, 101, 192, 0.8));
    transform: scale(1.1) rotate(10deg);
}

.sport-card-icon i {
    font-size: 36px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.sport-card:hover .sport-card-icon i {
    color: white;
}

.sport-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.sport-card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.live-dot {
    color: #ff4444;
    font-size: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.sport-card-count {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1;
}

.count-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.sport-card-btn {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--accent-blue), rgba(21, 101, 192, 0.9));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-top: auto;
}

.sport-card-btn:hover {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.9), var(--accent-blue));
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    transform: translateY(-2px);
}

.retry-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--accent-blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: rgba(21, 101, 192, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .sports-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title-sport {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title-sport i {
        font-size: 32px;
    }
    
    .sport-nav-tabs {
        flex-direction: column;
    }
    
    .sport-nav-tab {
        min-width: 100%;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   SETTINGS MODAL
   ============================ */
.settings-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.settings-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-modal-content {
    background: linear-gradient(180deg, #0d2847 0%, #1a3a5a 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 150px rgba(30, 136, 229, 0.3);
    border: 1px solid rgba(30, 136, 229, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.settings-header h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.settings-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.settings-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.settings-body {
    padding: 30px;
}

.settings-section {
    margin-bottom: 25px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-select:hover {
    border-color: rgba(30, 136, 229, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.settings-select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

.settings-select option {
    background: #0d2847;
    color: #fff;
    padding: 10px;
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.theme-option {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.theme-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.theme-option.active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(30, 136, 229, 0.5);
}

.theme-preview {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    border-radius: 8px;
}

.theme-preview-dark {
    background: linear-gradient(135deg, #0a1929 0%, #1a2836 100%);
}

.theme-preview-green {
    background: linear-gradient(135deg, #00bfa5 0%, #00897b 100%);
}

.theme-preview-yellow {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

.theme-preview-purple {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.theme-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-option.active .theme-check {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .settings-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .settings-header {
        padding: 20px;
    }
    
    .settings-header h2 {
        font-size: 18px;
    }
    
    .settings-body {
        padding: 20px;
    }
    
    .theme-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================
   SIDE PANEL SETTINGS
   ============================ */
.side-panel-settings {
    width: 320px;
    background: linear-gradient(180deg, #0d2847 0%, #1a3a5a 100%);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    left: -255px;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-panel-settings[style*="display: block"] {
    transform: translateX(0);
    opacity: 1;
}

.settings-panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.settings-back-btn:hover {
    background: rgba(30, 136, 229, 0.3);
    transform: translateX(-3px);
}

.settings-panel-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.settings-panel-content {
    max-height: 400px;
    overflow-y: auto;
}

.settings-panel-section {
    margin-bottom: 20px;
}

.settings-panel-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-panel-select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-panel-select:hover {
    border-color: rgba(30, 136, 229, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.settings-panel-select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.theme-card {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.theme-card.active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(30, 136, 229, 0.5);
}

.theme-color {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 8px;
}

.theme-dark-color {
    background: linear-gradient(135deg, #0a1929 0%, #1a2836 100%);
}

.theme-green-color {
    background: linear-gradient(135deg, #00bfa5 0%, #00897b 100%);
}

.theme-yellow-color {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

.theme-purple-color {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.theme-check-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-card.active .theme-check-icon {
    opacity: 1;
}

@media (max-width: 768px) {
    .side-panel-settings {
        width: 280px;
        left: -255px;
    }
    
    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Notifications Panel */
.side-panel-notifications {
    width: 320px;
    background: linear-gradient(180deg, #0d2847 0%, #1a3a5a 100%);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    left: -255px;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.side-panel-notifications[style*="display: block"] {
    transform: translateX(0);
    opacity: 1;
}

.notifications-clear-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
}

.notifications-clear-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notifications-panel-content {
    flex: 1;
    overflow-y: auto;
    margin-top: 15px;
}

.notification-loading {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.notification-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.notification-item.unread {
    border-left-color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.notification-item.level-up {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.notification-type i {
    font-size: 14px;
}

.notification-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.notification-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    font-size: 14px;
}

.notification-message {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.notification-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.notification-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.3;
}

/* ============================
   USER INFO HEADER (Logged In)
   ============================ */
.user-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    font-weight: 600;
    color: var(--accent-gold);
    animation: pulse-glow 2s ease-in-out infinite;
}

.user-balance i {
    font-size: 18px;
}

.balance-amount {
    font-size: 16px;
    letter-spacing: 0.5px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.user-dropdown {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.user-name {
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-btn i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-menu-btn.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: linear-gradient(180deg, #1a2836 0%, #0f1921 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.user-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.user-menu-item:hover {
    background: rgba(30, 136, 229, 0.1);
    color: var(--text-primary);
}

.user-menu-item i {
    font-size: 16px;
    width: 20px;
}

.user-menu-item.logout {
    color: #f44336;
}

.user-menu-item.logout:hover {
    background: rgba(244, 67, 54, 0.1);
}

.user-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

/* ============================
   LOYALTY MODAL
   ============================ */
.loyalty-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.loyalty-modal.active {
    opacity: 1;
}

.loyalty-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.loyalty-modal-container {
    position: relative;
    display: flex;
    width: 90%;
    max-width: 1400px;
    height: 90%;
    max-height: 900px;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.loyalty-modal.active .loyalty-modal-container {
    transform: scale(1);
}

/* Sidebar */
.loyalty-sidebar {
    width: 260px;
    background: #1a2332;
    padding: 15px;
    border-right: 1px solid #2a3442;
    height: 100%;
    overflow-y: auto;
    flex-shrink: 0;
}

.loyalty-sidebar::-webkit-scrollbar {
    width: 6px;
}

.loyalty-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.loyalty-sidebar::-webkit-scrollbar-thumb {
    background: rgba(30, 136, 229, 0.5);
    border-radius: 3px;
}

.loyalty-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 136, 229, 0.7);
}

.loyalty-user-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a3442;
}

.loyalty-user-avatar {
    /* Icon için font-size inline kullanılıyor */
}

.loyalty-user-info h3 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 3px 0;
}

.loyalty-user-info p {
    color: #6b7a8f;
    font-size: 11px;
    margin: 0;
}

.loyalty-balance-card {
    background: linear-gradient(135deg, #2a3f5f 0%, #1e2d42 100%);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.loyalty-balance-label {
    color: #6b7a8f;
    font-size: 10px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loyalty-balance-amount {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.loyalty-balance-buttons {
    display: flex;
    gap: 8px;
}

.loyalty-balance-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s;
}

.loyalty-balance-btn.deposit {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: #fff;
}

.loyalty-balance-btn.deposit:hover {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

.loyalty-balance-btn.withdraw {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loyalty-balance-btn.withdraw:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.loyalty-bonus-card {
    background: rgba(30, 136, 229, 0.1);
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.loyalty-bonus-amount {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loyalty-menu-wrapper {
    padding: 0;
    margin: 0;
}

/* Loyalty Navigation Sections (Accordion Style) */
.loyalty-nav-section {
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.loyalty-nav-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    color: #8b92a7;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loyalty-nav-header:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.loyalty-nav-header i:first-child {
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.loyalty-nav-header span {
    flex: 1;
}

.loyalty-nav-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.loyalty-nav-section.active .loyalty-nav-arrow {
    transform: rotate(180deg);
}

.loyalty-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.loyalty-nav-section.active .loyalty-nav-submenu {
    max-height: 500px;
}

.loyalty-nav-subitem {
    display: block;
    padding: 10px 12px 10px 45px;
    color: #6b7a8f;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.loyalty-nav-subitem:hover {
    background: rgba(30, 136, 229, 0.1);
    color: #fff;
    border-left-color: var(--accent-blue);
}

.loyalty-nav-subitem.active {
    background: rgba(30, 136, 229, 0.15);
    color: var(--accent-blue);
    border-left-color: var(--accent-blue);
    font-weight: 600;
}

/* Betslip Panel Styles */
.side-panel-betslip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.betslip-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    color: #fff;
}

.betslip-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #6b7a8f;
    font-size: 14px;
    min-height: 300px;
}

.betslip-empty i {
    display: block;
    margin-bottom: 20px;
}

.betslip-empty p {
    margin: 5px 0;
}

.betslip-bets {
    margin-bottom: 20px;
}

.betslip-bet-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.bet-match {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.bet-selection {
    font-size: 12px;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.bet-market {
    font-size: 11px;
    color: #6b7a8f;
    margin-bottom: 6px;
}

.bet-odds {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: right;
}

.betslip-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #b0bec5;
}

.summary-row strong {
    color: #fff;
    font-size: 16px;
}

.betslip-stake-input {
    width: 120px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.betslip-stake-input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.betslip-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-blue), #1565c0);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.betslip-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

.potential-win {
    color: var(--accent-gold) !important;
}

/* Old menu styles (keeping for compatibility) */
.loyalty-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    color: #6b7a8f;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 500;
}

.loyalty-menu-link:hover {
    background: #243140;
    color: #fff;
}

.loyalty-menu-link i {
    width: 18px;
    font-size: 14px;
}

.loyalty-menu-link.active {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: #fff;
}

/* Main Content */
.loyalty-content {
    flex: 1;
    padding: 25px;
    background: #0a1628;
    height: 100%;
    overflow-y: auto;
    position: relative;
    min-width: 0;
}

.loyalty-content::-webkit-scrollbar {
    width: 8px;
}

.loyalty-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.loyalty-content::-webkit-scrollbar-thumb {
    background: rgba(30, 136, 229, 0.5);
    border-radius: 4px;
}

.loyalty-content::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 136, 229, 0.7);
}

.loyalty-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.loyalty-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Top Level Section */
.loyalty-program-section {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5) 80%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.loyalty-program-info {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 25px;
}

.loyalty-program-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.loyalty-program-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.loyalty-program-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
}

.loyalty-points-level {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.loyalty-level-value {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.loyalty-level-info {
    color: #8e9aaf;
    font-size: 13px;
    margin: 0;
}

.loyalty-program-right {
    flex: 1;
    min-width: 0;
}

.loyalty-points-numbers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.loyalty-points-prev,
.loyalty-points-next {
    color: #8e9aaf;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.loyalty-points-next {
    color: #fff;
}

.loyalty-points-numbers span {
    font-size: 11px;
    opacity: 0.7;
}

.loyalty-progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.loyalty-progress-fill {
    background: #1e88e5;
    height: 100%;
    transition: width 1s ease;
}

.loyalty-level-points {
    color: #8e9aaf;
    font-size: 12px;
    text-align: right;
    margin: 0;
}

.loyalty-level-points span {
    color: #fff;
    font-weight: 600;
}

.loyalty-level-points-text {
    color: #8e9aaf !important;
    font-weight: 400 !important;
}

/* Rewards Section */
.loyalty-rewards-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
}

.loyalty-rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.loyalty-rewards-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.loyalty-select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 30px 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.loyalty-rewards-content {
    min-height: 60px;
}

.loyalty-rewards-error {
    text-align: center;
    padding: 20px;
    color: #8e9aaf;
    font-size: 13px;
}

/* Horizontal Slider */
.loyalty-slider-wrapper {
    position: relative;
    margin: 25px 0;
    padding: 0 45px;
}

.loyalty-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 136, 229, 0.2);
    border: 1px solid rgba(30, 136, 229, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88e5;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.loyalty-slider-nav:hover {
    background: rgba(30, 136, 229, 0.3);
    border-color: rgba(30, 136, 229, 0.5);
}

.loyalty-slider-nav.prev {
    left: 0;
}

.loyalty-slider-nav.next {
    right: 0;
}

/* Horizontal Slider Wrapper */
.horizontalSliderWrapper {
    position: relative;
    width: 100%;
    padding: 20px 45px;
}

.horizontalSliderWrapper.loyaltyHorizontalList {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin: 20px 0;
}

.horizontalSliderWrapper.horizontalItemsExpanded {
    /* Expanded görünüm */
}

.horizontalSliderWrapper.scroll-start {
    /* Scroll başlangıç durumu */
}

.horizontalSliderRow,
.loyalty-slider-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: thin;
}

.horizontalSliderRow::-webkit-scrollbar,
.loyalty-slider-container::-webkit-scrollbar {
    height: 6px;
}

.horizontalSliderRow::-webkit-scrollbar-track,
.loyalty-slider-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.horizontalSliderRow::-webkit-scrollbar-thumb,
.loyalty-slider-container::-webkit-scrollbar-thumb {
    background: rgba(30, 136, 229, 0.5);
    border-radius: 3px;
}

.horizontalSliderNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.horizontalSliderNav:hover {
    background: rgba(30, 136, 229, 0.8);
}

.horizontalSliderNav.bc-i-small-arrow-left,
.loyalty-slider-nav.prev {
    left: 5px;
}

.horizontalSliderNav.bc-i-small-arrow-right,
.loyalty-slider-nav.next {
    right: 5px;
}

/* Arrow Icons */
.bc-i-small-arrow-left::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.bc-i-small-arrow-right::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.loyalty-slider-container::-webkit-scrollbar-thumb {
    background: rgba(30, 136, 229, 0.5);
    border-radius: 3px;
}

/* Horizontal Category Wrapper */
.horizontalCategoryItemWrp {
    flex: 0 0 auto;
    padding: 0 5px;
}

/* Loyalty Slider Card */
.loyaltySliderCard {
    width: 120px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.loyaltySliderCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.loyaltySliderCard.active {
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.loyaltySliderCardImg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.loyaltySliderCardTitle {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.loyaltySliderCardTitle.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Global ellipsis utility */
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loyaltySliderCardInfo {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid;
    margin-top: 8px;
}

/* Legacy support */
.loyalty-slider-card {
    flex: 0 0 auto;
    width: 140px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.loyalty-slider-card:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(30, 136, 229, 0.3);
    transform: translateY(-3px);
}

.loyalty-slider-card.active {
    background: rgba(30, 136, 229, 0.2);
    border-color: rgba(30, 136, 229, 0.5);
}

.loyalty-slider-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.loyalty-slider-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.loyalty-slider-info {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: #8e9aaf;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 0;
}

/* Old badges removed, using slider now */

.loyalty-section {
    margin-bottom: 30px;
}

.loyalty-section-title {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.loyalty-section-content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.loyalty-empty-state {
    text-align: center;
    padding: 30px 20px;
    color: #8e9aaf;
    font-size: 13px;
}

/* New Table Style */
/* Loyalty Level Table - New Naming */
.loyaltyLevelTable,
.loyalty-level-table {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loyaltyLevelTableHeader,
.loyalty-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 15px;
    gap: 10px;
}

.loyaltyLevelTableHeader .loyaltyLevelTableCell p,
.loyalty-table-header .loyalty-table-cell {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.loyaltyLevelTableBody,
.loyalty-table-body {
    padding: 5px 0;
}

.loyaltyLevelTableRow,
.loyalty-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 15px;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.loyaltyLevelTableRow.loyaltyCurrentRow,
.loyalty-table-row.active {
    background: rgba(30, 136, 229, 0.15);
    border-left: 3px solid #1e88e5;
}

.loyaltyCurrentRowBorder {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1e88e5;
    box-shadow: 0 0 10px rgba(30, 136, 229, 0.5);
}

.loyaltyLevelTableCell,
.loyalty-table-cell {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* Loyalty Program Wrapper */
.loyaltyProgramWrapper {
    margin-top: 30px;
}

.loyaltyProgramItems {
    display: grid;
    gap: 30px;
}

.loyaltyLevelCards,
.loyaltyLevelBonus {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.loyaltyLevelInfoTitle {
    color: #1e88e5;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.loyaltyLevelCardsItem {
    padding: 15px;
}

.loyaltyLevelCardsError {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Legacy support */
.loyalty-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 15px;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.loyalty-table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.loyalty-table-row:last-child {
    border-bottom: none;
}

.loyalty-table-row.active {
    background: rgba(30, 136, 229, 0.15);
    border-left: 3px solid #1e88e5;
}

.loyalty-table-row.active .loyalty-table-cell {
    color: #1e88e5;
    font-weight: 600;
}

.loyalty-table-cell {
    color: #b0bec5;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .loyalty-modal-container {
        width: 95%;
        height: 95%;
        flex-direction: column;
    }
    
    .loyalty-sidebar {
        width: 100%;
        height: auto;
        max-height: 200px;
        border-right: none;
        border-bottom: 1px solid #2a3442;
    }
    
    .loyalty-content {
        padding: 20px;
    }
    
    .loyalty-program-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .loyalty-program-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .loyalty-slider-wrapper {
        padding: 0 35px;
    }
    
    .loyalty-table-header,
    .loyalty-table-row {
        font-size: 11px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ================================
   LOYALTY MODAL TAB SYSTEM
   ================================ */
.loyalty-tab-content {
    display: none;
}

.loyalty-tab-content.active {
    display: block;
}

/* ================================
   BALANCE MANAGEMENT (DEPOSIT/WITHDRAW)
   ================================ */
.balance-sub-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.balance-sub-tab {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #8b92a7;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.balance-sub-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.balance-sub-tab.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-color: var(--accent-blue);
    color: #fff;
}

.balance-section {
    display: none;
}

.balance-section.active {
    display: block;
}

.my-profile-info-block {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
}

/* Payment Methods Grid */
.m-block-nav-items-bc {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.m-nav-items-list-item-bc {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.m-nav-items-list-item-bc:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.m-nav-items-list-item-bc.active {
    background: rgba(30, 136, 229, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(30, 136, 229, 0.3);
}

.nav-ico-w-row-bc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.payment-logo {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

/* Payment Details */
.payment-details-scrollable-container {
    padding: 30px 20px;
}

.payment-info-bc {
    margin-bottom: 30px;
}

.description-c-row-c-title-bc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.description-c-r-c-t-column-bc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.description-title {
    font-size: 11px;
    color: #6b7a8f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.description-value {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* Withdraw Form */
.withdraw-form-l-bc {
    margin-top: 30px;
}

.u-i-p-control-item-holder-bc {
    margin-bottom: 20px;
}

.form-control-bc {
    position: relative;
}

.form-control-label-bc {
    display: block;
    width: 100%;
}

.form-control-input-bc {
    width: 100%;
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control-input-bc:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.form-control-input-bc:focus + .form-control-input-stroke-bc + .form-control-title-bc,
.form-control-input-bc:not(:placeholder-shown) + .form-control-input-stroke-bc + .form-control-title-bc {
    top: -10px;
    font-size: 11px;
    background: #1a1d2e;
    padding: 0 8px;
    color: var(--accent-blue);
}

.form-control-title-bc {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6b7a8f;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s;
    background: transparent;
}

.form-control-input-stroke-bc {
    display: none;
}

.u-i-p-c-footer-bc .btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.u-i-p-c-footer-bc .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.u-i-p-c-footer-bc .btn.withdraw {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.u-i-p-c-footer-bc .btn.withdraw:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .m-block-nav-items-bc {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
        padding: 15px;
    }
    
    .description-c-row-c-title-bc {
        grid-template-columns: 1fr;
    }
    
    .balance-sub-tabs {
        grid-template-columns: 1fr;
    }
    
    .balance-sub-tab {
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* ================================
   PROFILE PANEL MODAL (REMOVED - Merged with Loyalty Modal)
   ================================ */
.profile-panel-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-panel-modal.active {
    display: flex;
    opacity: 1;
}

.profile-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.profile-panel-container {
    position: relative;
    width: 1000px;
    max-width: 95%;
    max-height: 90vh;
    background: linear-gradient(180deg, #1a1d2e 0%, #0f1117 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.profile-panel-modal.active .profile-panel-container {
    transform: scale(1);
}

.profile-panel-close {
    position: sticky;
    top: 10px;
    left: calc(100% - 50px);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0 auto;
    flex-shrink: 0;
}

.profile-panel-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: rotate(90deg);
}

.profile-panel-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.profile-main-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
}

/* Custom Scrollbar for Main Content */
.profile-main-content::-webkit-scrollbar {
    width: 8px;
}

.profile-main-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.profile-main-content::-webkit-scrollbar-thumb {
    background: rgba(30, 136, 229, 0.5);
    border-radius: 4px;
}

.profile-main-content::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 136, 229, 0.7);
}

.profile-content-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
}

/* User Header */
.u-i-p-p-u-i-edit-button-bc {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.u-i-p-p-u-i-avatar-holder-bc {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.u-i-p-p-u-i-identifiers-bc {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.u-i-p-p-u-i-d-username-bc {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.u-i-p-p-u-i-d-user-id-bc {
    font-size: 13px;
    color: #8b92a7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.u-i-p-p-u-i-d-user-id-copy-bc {
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
}

.u-i-p-p-u-i-d-user-id-copy-bc:hover {
    color: var(--accent-blue);
}

/* Balance Section */
.u-i-p-amount-holder-bc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.u-i-p-amounts-bc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.u-i-p-a-content-bc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.total-balance-r-bc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.u-i-p-a-user-balance {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.u-i-p-a-title-bc {
    font-size: 12px;
    color: #8b92a7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.u-i-p-a-amount-bc {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.u-i-p-a-c-icon-bc {
    font-size: 20px;
    color: #8b92a7;
    cursor: pointer;
    transition: color 0.3s;
}

.u-i-p-a-c-icon-bc:hover {
    color: #fff;
}

.u-i-p-a-buttons-bc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.u-i-p-a-deposit-bc,
.u-i-p-a-withdraw-bc {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.u-i-p-a-deposit-bc {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
}

.u-i-p-a-deposit-bc:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

.u-i-p-a-withdraw-bc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.u-i-p-a-withdraw-bc:hover {
    background: rgba(255, 255, 255, 0.1);
}

.u-i-p-amounts-bc.bonuses {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border-color: rgba(245, 158, 11, 0.2);
}

.bonus-info-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-info-section div {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.bonus-info-section span {
    color: #8b92a7;
}

.bonus-info-section b {
    color: var(--accent-gold);
}

/* Loyalty Points Card */
.u-i-p-a-loyaltyPoint-bc {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(0, 172, 193, 0.05));
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.u-i-p-a-loyaltyPoint-bc:hover {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(0, 172, 193, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.loyaltyBonusHeader {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loyaltyBonusImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.u-i-p-a-loyaltyPointText-bc {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* Navigation Sections */
.user-profile-nav {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.user-profile-nav-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.user-profile-nav-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-profile-nav-icon {
    font-size: 18px;
    color: var(--accent-blue);
}

.user-profile-nav-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-profile-nav-arrow {
    font-size: 14px;
    color: #8b92a7;
    transition: transform 0.3s;
}

.user-profile-nav.active .user-profile-nav-arrow {
    transform: rotate(180deg);
}

.user-profile-nav-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.user-profile-nav.active .user-profile-nav-list {
    max-height: 500px;
}

.user-profile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 14px 50px;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.user-profile-nav-item:hover {
    background: rgba(30, 136, 229, 0.1);
    border-left-color: var(--accent-blue);
}

.user-profile-nav-item-title {
    font-size: 13px;
    color: #b0bec5;
}

.user-profile-nav-item:hover .user-profile-nav-item-title {
    color: #fff;
}

/* Promo Code */
.promoCodeWrapper-bc {
    margin: 20px 0;
}

.u-i-p-control-item-holder-bc {
    margin-bottom: 15px;
}

.form-control-bc {
    position: relative;
}

.form-control-label-bc {
    display: block;
    width: 100%;
}

.form-control-input-bc {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control-input-bc:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.form-control-title-bc {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #8b92a7;
    font-size: 13px;
    pointer-events: none;
    transition: all 0.3s;
}

.form-control-input-bc:focus + .form-control-input-stroke-bc + .form-control-title-bc,
.form-control-input-bc:not(:placeholder-shown) + .form-control-input-stroke-bc + .form-control-title-bc {
    top: -10px;
    font-size: 11px;
    background: #1a1d2e;
    padding: 0 5px;
    color: var(--accent-blue);
}

.u-i-p-c-footer-bc {
    display: flex;
}

.u-i-p-c-footer-bc .btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.u-i-p-c-footer-bc .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.u-i-p-c-footer-bc .btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

/* Logout Button */
.userLogoutBtn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.userLogoutBtn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.userLogoutIcon {
    font-size: 18px;
}

/* Custom Icons (BC Icons) */
.bc-i-copy::before { content: "\f0c5"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-eye::before { content: "\f06e"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-wallet::before { content: "\f555"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-withdraw::before { content: "\f3ed"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-history::before { content: "\f1da"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-balance-management::before { content: "\f53a"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-promotion::before { content: "\f06b"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-user::before { content: "\f007"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-message::before { content: "\f0e0"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-rewards::before { content: "\f559"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-logout::before { content: "\f2f5"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-small-arrow-up::before { content: "\f106"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.bc-i-small-arrow-right::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* Responsive */
@media (max-width: 1024px) {
    .profile-panel-container {
        width: 95%;
    }
    
    .profile-panel-wrapper {
        flex-direction: column;
    }
    
    .loyalty-sidebar {
        width: 100%;
        min-width: 100%;
    }
    
    .profile-main-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .profile-panel-container {
        width: 95%;
        max-width: 95%;
        max-height: 85vh;
        border-radius: 12px;
    }
    
    .profile-content-title {
        font-size: 20px;
    }
}

/* Sidebar için Scrollbar */
.profile-panel-wrapper .loyalty-sidebar::-webkit-scrollbar {
    width: 6px;
}

.profile-panel-wrapper .loyalty-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.profile-panel-wrapper .loyalty-sidebar::-webkit-scrollbar-thumb {
    background: rgba(30, 136, 229, 0.5);
    border-radius: 3px;
}

.profile-panel-wrapper .loyalty-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 136, 229, 0.7);
}

/* Bet History Toggle */
.bet-row { transition: all 0.3s ease; }
.bet-details { transition: all 0.3s ease; overflow: hidden; }
.bet-details.show { animation: slideDown 0.3s ease-out; }
@keyframes slideDown { from { opacity: 0; max-height: 0; } to { opacity: 1; max-height: 1000px; } }
