/* ============================================
   VIP System - Unified Styles
   ============================================ */

:root {
    /* Molen Gaming Inspired Colors */
    --primary-gradient: linear-gradient(145deg, #08fcfc 0%, #0053ff 100%);
    --secondary-gradient: linear-gradient(145deg, #0053ff 0%, #0053ff 100%);
    --success-gradient: linear-gradient(145deg, #4CAF50 0%, #2E7D32 100%);
    --danger-gradient: linear-gradient(145deg, #f44336 0%, #c62828 100%);
    --warning-gradient: linear-gradient(145deg, #ff9800 0%, #ef6c00 100%);
    --info-gradient: linear-gradient(145deg, #2196F3 0%, #1565C0 100%);
    
    /* Dark Theme Colors */
    --dark-bg: #181b30;
    --card-bg: #181b30;
    --glass-bg: #181b30d1;
    --glass-border: #08fcfc29;
    --hover-bg: #08fcfc17;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    
    /* Accent Colors */
    --accent-red: #08fcfc;
    --accent-red-dark: #0053ff;
    --accent-gold: #0053ff;
}



/* ============================================
   VIP Navigation Tabs
   ============================================ */

.vip-nav-tabs {
    max-width: 1400px;
    margin: 20px auto 0;
}

@media (max-width: 768px) {
    .vip-nav-tabs {
        /* padding: 0 10px; */
        margin: 10px auto 0;
    }
}

.vip-tabs-container {
    display: flex;
    gap: 10px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px 15px 0 0;
    padding: 15px 15px 0;
    border: 1px solid var(--glass-border);
    border-bottom: 2px solid var(--accent-red);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) transparent;
    box-shadow: 0 4px 15px #08fcfc17;
}

.vip-tabs-container::-webkit-scrollbar {
    height: 6px;
}

.vip-tabs-container::-webkit-scrollbar-track {
    background: transparent;
}

.vip-tabs-container::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 3px;
}

.vip-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px 10px 0 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.vip-tab:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.vip-tab.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px #08fcfc61;
}

.vip-tab i {
    font-size: 18px;
    color: inherit;
}

.vip-tab.active i {
    color: white;
}

/* ============================================
   Common Container Styles
   ============================================ */

.vip-container,
.overview-container,
.levelrules-container,
.leaderboard-container,
.claims-container {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 15px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    border: 1px solid var(--glass-border);
    border-top: none;
    box-shadow: 0 8px 32px #08fcfc17;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .vip-container,
    .overview-container,
    .levelrules-container,
    .leaderboard-container,
    .claims-container {
        padding: 30px;
    }
}

.vip-header,
.overview-header,
.levelrules-header,
.leaderboard-header,
.claims-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px #08fcfc29;
}

.vip-header h1,
.overview-header h1,
.levelrules-header h1,
.leaderboard-header h1,
.claims-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.vip-header h1 i,
.overview-header h1 i,
.levelrules-header h1 i,
.leaderboard-header h1 i,
.claims-header h1 i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-header p,
.overview-header p,
.levelrules-header p,
.leaderboard-header p,
.claims-header p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Overview Page Styles - New Design
   ============================================ */

/* Hero Section */
.vip-hero-section {
    background: linear-gradient(135deg, #08fcfc17 0%, #08fcfc0d 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.vip-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #08fcfc17 0%, transparent 70%);
    border-radius: 50%;
}

.vip-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.vip-welcome h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.vip-welcome .user-name {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-welcome p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Modern VIP Badge */
.vip-current-badge-modern {
    position: relative;
    padding: 25px 35px;
    background: linear-gradient(135deg, var(--badge-color) 0%, color-mix(in srgb, var(--badge-color) 80%, black) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 5px 15px #181b3045,
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Animated shine effect */
.badge-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Animated border */
.badge-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Badge Content */
.badge-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Icon Wrapper */
.badge-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s ease-in-out infinite;
}

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

.vip-badge-icon {
    font-size: 47px;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

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

/* Badge Text */
.badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: white;
}

.badge-level {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px #181b3045;
}

.badge-name {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px #181b3045;
    filter: drop-shadow(0 2px 4px #181b3045);
}

/* Badge Decoration */
.badge-decoration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.decoration-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: dotPulse 1.5s ease-in-out infinite;
}

.decoration-dot:nth-child(1) {
    animation-delay: 0s;
}

.decoration-dot:nth-child(3) {
    animation-delay: 0.3s;
}

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

.decoration-line {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Old Badge Styles (Fallback) */
.vip-current-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px #181b3045;
    color: white;
}

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

/* Quick Stats Cards */
.vip-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quick-stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.quick-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #08fcfc24;
}

.quick-stat-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

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

.stat-primary .stat-icon {
    background: var(--primary-gradient);
    color: white;
}

.stat-success .stat-icon {
    background: var(--success-gradient);
    color: white;
}

.stat-warning .stat-icon {
    background: var(--warning-gradient);
    color: white;
}

.stat-info .stat-icon {
    background: var(--info-gradient);
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Card */
.vip-progress-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.progress-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.progress-header-left {
    flex: 1;
}

.progress-header-left h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-header-left h3 i {
    color: var(--accent-red);
}

.next-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.next-level-badge i {
    font-size: 20px;
}

.progress-percentage {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.percentage-value {
    font-size: 36px;
    font-weight: 700;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.percentage-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.vip-progress-bar-wrapper {
    margin-bottom: 20px;
}

.progress-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.remaining-amount {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.remaining-amount i {
    color: var(--accent-red);
    font-size: 18px;
}

.btn-deposit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--success-gradient);
    color: #fff !important;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Next Level Preview */
.next-level-preview {
    margin-top: 25px;
    padding: 20px;
    background: #08fcfc0d;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.next-level-preview h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-level-preview h4 i {
    color: var(--accent-gold);
}

.next-level-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.benefit-upgrade {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--glass-bg);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.benefit-upgrade i {
    color: var(--accent-red);
    font-size: 16px;
}

.benefit-upgrade strong {
    color: var(--accent-gold);
}

/* Max Level Card */
.vip-max-level-card {
    background: linear-gradient(135deg, #08fcfc14 0%, #08fcfc0d 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.max-level-content {
    max-width: 600px;
    margin: 0 auto;
}

.max-level-icon {
    font-size: 80px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    animation: crownFloat 3s ease-in-out infinite;
}

.max-level-content h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.max-level-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Empty State - New Design */
.vip-empty-state {
    text-align: center;
    padding: 60px 40px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #08fcfc17 0%, #08fcfc0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon i {
    font-size: 60px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-empty-state h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.empty-state-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.empty-state-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.empty-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #08fcfc0d;
    border-radius: 12px;
}

.empty-benefit i {
    font-size: 32px;
    color: var(--accent-red);
}

.empty-benefit span {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.first-level-preview {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #08fcfc0d;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.first-level-preview h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.first-level-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px #181b3045;
}

.first-level-requirement {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.first-level-requirement i {
    color: var(--accent-red);
}

.first-level-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
}

.benefit-tag i {
    color: var(--accent-red);
}

.btn-start-vip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px #08fcfc61;
}

.btn-start-vip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #08fcfc75;
}

/* Old Overview Styles */

.vip-status-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px #181b3045;
    transition: all 0.3s ease;
    text-align: center;
}

.vip-status-card:hover {
    border-color: #08fcfc52;
    box-shadow: 0 12px 40px #08fcfc24;
}

.vip-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.vip-level-badge i {
    font-size: 28px;
}

.vip-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.vip-stat-item {
    text-align: center;
    padding: 20px 15px;
    background: #08fcfc0d;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.vip-stat-item:hover {
    background: #08fcfc17;
    border-color: #08fcfc52;
    transform: translateY(-2px);
}

.vip-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    word-break: break-word;
}

.vip-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-progress-section {
    margin: 40px 0;
    padding: 25px;
    background: #08fcfc0d;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.vip-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.vip-progress-info h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-primary);
    flex: 1;
    min-width: 200px;
}

.vip-progress-info span {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-red);
}

.vip-progress-bar {
    height: 45px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 3px 10px #181b3080,
        inset 0 -2px 6px rgba(255, 255, 255, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

/* Progress bar track pattern */
.vip-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(255, 255, 255, 0.02) 10px,
        transparent 20px
    );
    pointer-events: none;
}

.vip-progress-fill {
    height: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, 
        #4CAF50 0%, 
        #66BB6A 25%,
        #81C784 50%,
        #66BB6A 75%,
        #4CAF50 100%);
    background-size: 200% 100%;
    border-radius: 25px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(76, 175, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: progressPulse 3s ease-in-out infinite;
    /* Width inline style'dan gelecek, flex-shrink ile ezilmesin */
    flex-shrink: 0;
}

@keyframes progressPulse {
    0%, 100% {
        box-shadow: 
            0 2px 8px rgba(76, 175, 80, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 12px rgba(76, 175, 80, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.vip-progress-fill .progress-text {
    position: relative;
    z-index: 3;
    white-space: nowrap;
    font-size: 13px;
}

/* Shine effect */
.vip-progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: progressShine 2.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Stripes effect */
.vip-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent 0,
        transparent 8px,
        rgba(255, 255, 255, 0.08) 8px,
        rgba(255, 255, 255, 0.08) 16px
    );
    animation: progressStripes 1.5s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes progressShine {
    0% { 
        left: -150%; 
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        left: 150%; 
        opacity: 0;
    }
}

@keyframes progressStripes {
    0% { 
        background-position: 0 0; 
    }
    100% { 
        background-position: 32px 0; 
    }
}

.vip-benefits-section {
    margin-top: 40px;
}

.vip-benefits-section h4 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

.vip-benefits-section h4 i {
    color: var(--accent-red);
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.vip-benefit-card {
    background: #08fcfc0d;
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vip-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #08fcfc38;
    border-color: #08fcfc61;
    background: #08fcfc17;
}

@media (hover: none) {
    .vip-benefit-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

.vip-benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px #08fcfc52;
}

.vip-benefit-content {
    flex: 1;
}

.vip-benefit-content h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.vip-benefit-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Special Benefits Highlight */
.vip-special-benefits {
    margin-top: 30px;
}

.vip-benefit-card.special-highlight {
    background: linear-gradient(135deg, #08fcfc29 0%, #08fcfc0d 100%);
    border: 2px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.vip-benefit-card.special-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-gold), var(--accent-red));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-benefit-card.special-highlight:hover::before {
    opacity: 0.3;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.vip-benefit-card.special-highlight .vip-benefit-icon {
    background: linear-gradient(145deg, var(--accent-gold), var(--accent-red));
    animation: iconPulse 2s ease-in-out infinite;
}

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

.vip-benefit-card.special-highlight .vip-benefit-content h4 {
    color: var(--accent-red);
    font-size: 17px;
}

.vip-benefit-card.special-highlight .vip-benefit-content h4 i {
    color: var(--accent-gold);
    margin-right: 5px;
}

@media (hover: none) {
    .vip-benefit-card.special-highlight:active {
        transform: scale(0.98);
        border-color: var(--accent-gold);
    }
}

/* ============================================
   Level Rules Page Styles
   ============================================ */

.vip-levels-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vip-level-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vip-level-card:hover {
    box-shadow: 0 10px 30px #08fcfc24;
    border-color: #08fcfc52;
}

.vip-level-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #08fcfc0d;
    transition: all 0.3s ease;
}

.vip-level-header:hover {
    background: #08fcfc17;
}

.vip-level-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

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

.vip-level-name h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.vip-level-requirement {
    font-size: 14px;
    color: var(--text-muted);
}

.vip-level-toggle {
    font-size: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.vip-level-header.active .vip-level-toggle {
    transform: rotate(180deg);
}

.vip-level-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.vip-level-content.active {
    max-height: 2000px;
}

.vip-level-details {
    padding: 30px;
}

.vip-benefits-section {
    margin-bottom: 30px;
}

.vip-benefits-section h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #08fcfc0d;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.vip-benefit-item:hover {
    background: #08fcfc17;
    border-color: #08fcfc52;
}

.vip-benefit-item:last-child {
    margin-bottom: 0;
}

.vip-benefit-item .vip-benefit-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.vip-benefit-item .vip-benefit-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.vip-benefit-item .vip-benefit-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Leaderboard Page Styles
   ============================================ */

/* Leaderboard Container */
.vip-leaderboard-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.vip-leaderboard-wrapper {
    background: #181b30;
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 1px #08fcfc52,
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 #181b3080;
    border: 1px solid #08fcfc29;
    position: relative;
    overflow: hidden;
    margin: 0 auto 30px;
    border-radius: 0 0 20px 20px;
}

/* Animated background effect */
.vip-leaderboard-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-10%, -10%) scale(1.1);
        opacity: 1;
    }
}

/* Corner decorations */
.vip-leaderboard-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

/* Leaderboard Header */
.vip-leaderboard-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #08fcfc24;
    position: relative;
    z-index: 1;
}

.vip-leaderboard-header-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px #08fcfc61,
        0 0 0 4px #08fcfc17,
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.vip-leaderboard-header-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--primary-gradient);
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(8px);
    animation: iconGlowPulse 2s ease-in-out infinite;
}

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

.vip-leaderboard-header-icon i {
    font-size: 32px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px #181b3045);
}

.vip-leaderboard-header-content h1 {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    filter: drop-shadow(0 2px 8px #181b3045);
}

.vip-leaderboard-header-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 6px 0 0 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Leaderboard Tabs */
.vip-leaderboard-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, #181b3045 100%);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 15px #181b3045;
    position: relative;
    z-index: 1;
}

.vip-leaderboard-tab {
    flex: 1;
    min-width: 140px;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.vip-leaderboard-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #08fcfc17 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-leaderboard-tab:hover {
    background: #08fcfc17;
    border-color: #08fcfc52;
    color: var(--accent-red);
    transform: translateY(-2px);
}

.vip-leaderboard-tab:hover::before {
    opacity: 1;
}

.vip-leaderboard-tab.active {
    background: var(--primary-gradient);
    border-color: var(--accent-red);
    color: #ffffff !important;
    box-shadow: 
        0 4px 20px #08fcfc61,
        0 0 0 1px #08fcfc24,
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.vip-leaderboard-tab.active::before {
    opacity: 0;
}

.vip-leaderboard-tab i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.vip-leaderboard-tab:hover i,
.vip-leaderboard-tab.active i {
    transform: scale(1.1);
}

/* Leaderboard Table Section */
.vip-leaderboard-table-section {
    background: linear-gradient(135deg, 
        #181b3045 0%, 
        rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 20px #181b3045;
    position: relative;
    z-index: 1;
}

.vip-leaderboard-table-section::-webkit-scrollbar {
    height: 8px;
}

.vip-leaderboard-table-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.vip-leaderboard-table-section::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.vip-leaderboard-table-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #ff1a24 0%, #0053ff 100%);
}

/* Loading & Empty States */
.vip-loading {
    text-align: center;
    padding: 60px 20px;
}

.vip-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.vip-loading-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.vip-empty {
    text-align: center;
    padding: 60px 20px;
}

.vip-empty-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.vip-empty-text {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Legacy Leaderboard Tabs (keep for compatibility) */
.leaderboard-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.leaderboard-tab {
    padding: 12px 30px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leaderboard-tab:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.leaderboard-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px #08fcfc61;
}

.leaderboard-table-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

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

.leaderboard-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.leaderboard-table th {
    padding: 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-table td {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.leaderboard-table tbody tr {
    transition: all 0.3s ease;
}

.leaderboard-table tbody tr:hover {
    background: #08fcfc0d;
}

/* VIP Current Player Highlight (Leaderboard Table) */
.leaderboard-table tbody tr.vip-current-player {
    background: linear-gradient(90deg, 
        #08fcfc38 0%, 
        #08fcfc29 50%,
        #08fcfc0d 100%);
    box-shadow: 
        inset 4px 0 0 var(--accent-red),
        inset 0 0 25px #08fcfc29,
        0 2px 10px #08fcfc24;
    position: relative;
    animation: vipPlayerPulse 3s ease-in-out infinite;
}

@keyframes vipPlayerPulse {
    0%, 100% { 
        box-shadow: 
            inset 4px 0 0 var(--accent-red),
            inset 0 0 25px #08fcfc29,
            0 2px 10px #08fcfc24;
    }
    50% { 
        box-shadow: 
            inset 4px 0 0 var(--accent-red),
            inset 0 0 30px #08fcfc38,
            0 4px 15px #08fcfc52;
    }
}

.leaderboard-table tbody tr.vip-current-player td:first-child {
    position: relative;
    padding-left: 28px !important;
}

.leaderboard-table tbody tr.vip-current-player td:first-child::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--accent-red);
    animation: vipStarPulse 2s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 6px rgba(229, 9, 20, 0.6));
}

@keyframes vipStarPulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: translateY(-50%) scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.2) rotate(15deg); 
    }
}

/* VIP Current Player (Podium) */
.podium-place.vip-current-player {
    animation: vipPodiumGlow 2s ease-in-out infinite;
}

@keyframes vipPodiumGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.15) drop-shadow(0 0 20px #08fcfc61);
    }
}

/* ============================================
   Leaderboard Table Cell Styles
   ============================================ */

/* Rank Cell (First Column) */
.leaderboard-table .vip-rank-cell {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    width: 100px;
    padding: 20px 16px;
    vertical-align: middle;
}

/* Rank Badge */
.leaderboard-table .vip-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 19px;
    padding: 0 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.leaderboard-table .vip-rank-badge.rank-other {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.15);
}

.leaderboard-table tbody tr:hover .vip-rank-badge {
    background: linear-gradient(135deg, #08fcfc52 0%, #08fcfc29 100%);
    border-color: var(--accent-red);
    color: var(--text-primary);
    transform: scale(1.08) translateY(-1px);
    box-shadow: 
        0 4px 12px #08fcfc52,
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Username Cell (Second Column) */
.leaderboard-table .vip-username-cell {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    padding: 20px 16px 20px 0;
    vertical-align: middle;
}

.leaderboard-table tbody tr:hover .vip-username-cell {
    color: var(--accent-red);
    transition: color 0.3s ease;
}

/* Wager Cell (Third Column - Points) */
.leaderboard-table .vip-wager-cell {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 18px;
    text-align: right;
    padding: 20px 16px;
    vertical-align: middle;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.leaderboard-table tbody tr:hover .vip-wager-cell {
    color: #08fcfc;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.leaderboard-rank {
    font-size: 20px;
    font-weight: 700;
}

.leaderboard-rank.top-1 {
    color: #08fcfc;
}

.leaderboard-rank.top-2 {
    color: #C0C0C0;
}

.leaderboard-rank.top-3 {
    color: #CD7F32;
}

.leaderboard-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.leaderboard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.leaderboard-username {
    font-size: 16px;
    font-weight: 500;
}

.leaderboard-level {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.leaderboard-wager {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   Claims Page Styles
   ============================================ */

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.bonus-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transition: height 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #08fcfc52;
    border-color: #08fcfc75;
}

.bonus-card:hover::before {
    height: 6px;
}

.bonus-card.daily::before { background: var(--success-gradient); }
.bonus-card.weekly::before { background: var(--info-gradient); }
.bonus-card.monthly::before { background: var(--warning-gradient); }
.bonus-card.birthday::before { background: var(--danger-gradient); }

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bonus-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--primary-gradient);
}

.bonus-card.daily .bonus-icon { background: var(--success-gradient); }
.bonus-card.weekly .bonus-icon { background: var(--info-gradient); }
.bonus-card.monthly .bonus-icon { background: var(--warning-gradient); }
.bonus-card.birthday .bonus-icon { background: var(--danger-gradient); }

.bonus-title {
    flex: 1;
    margin-left: 15px;
}

.bonus-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.bonus-title p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.bonus-amount {
    text-align: center;
    padding: 25px 0;
    margin: 20px 0;
    background: #08fcfc17;
    border-radius: 15px;
}

.bonus-amount-value {
    font-size: 42px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-amount-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.bonus-details {
    margin: 20px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.detail-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* margin: 20px 0; */
}

.countdown-item {
    text-align: center;
    min-width: 60px;
    background-color: #08fcfc29;
    border-radius: 10px;
    padding:5px;
}

.countdown-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
}

.claim-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--success-gradient);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.claim-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
}

.claim-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.claim-button.claimed {
    background: rgba(255, 255, 255, 0.1);
    cursor: default;
}

.no-bonuses {
    text-align: center;
    padding: 80px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px #181b3045;
}

.no-bonuses-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-bonuses h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.no-bonuses p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   Loading & Messages
   ============================================ */

.loading-spinner {
    text-align: center;
    padding: 60px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.success-message, .error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 9999;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.success-message {
    background: rgba(17, 153, 142, 0.9);
    border: 1px solid rgba(56, 239, 125, 0.5);
}

.error-message {
    background: rgba(235, 51, 73, 0.9);
    border: 1px solid rgba(244, 92, 67, 0.5);
}

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

/* ============================================
   Leaderboard Podium
   ============================================ */

.leaderboard-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 50px;
    padding: 30px;
    position: relative;
    background: radial-gradient(ellipse at center, #08fcfc0d 0%, transparent 70%);
}

.leaderboard-podium::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    border-radius: 2px;
}

.podium-place {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
    animation: podiumFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.podium-place.rank-1 {
    order: 2;
    animation-delay: 0.3s;
    transform-origin: bottom;
}

.podium-place.rank-2 {
    order: 1;
    animation-delay: 0.2s;
}

.podium-place.rank-3 {
    order: 3;
    animation-delay: 0.4s;
}

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

/* Trophy Container */
.podium-trophy-container {
    position: relative;
    margin-bottom: 20px;
}

.podium-trophy {
    font-size: 80px;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

.podium-place.rank-1 .podium-trophy {
    font-size: 100px;
}

@keyframes trophyFloat {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}



.podium-place.rank-1 .podium-trophy {
    color: #08fcfc;
}

.podium-place.rank-2 .podium-trophy {
    color: #C0C0C0;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.6);
}



/* Sparkles */
.podium-sparkle {
    position: absolute;
    font-size: 14px;
    opacity: 0;
}

.podium-place.rank-1 .podium-sparkle {
    color: #08fcfc;
}

.podium-place.rank-2 .podium-sparkle {
    color: #C0C0C0;
}

.podium-place.rank-3 .podium-sparkle {
    color: #CD7F32;
}

.sparkle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.sparkle-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5) rotate(180deg);
    }
}

/* Crown for rank 1 */
.podium-crown {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    font-size: 35px;
    color: #08fcfc;
}

@keyframes crownFloat {
    0%, 100% { 
        transform: translateX(-50%) rotate(-15deg) translateY(0px);
    }
    50% { 
        transform: translateX(-50%) rotate(-15deg) translateY(-5px);
    }
}

.podium-rank {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid #181b3045;
}

.podium-place.rank-1 .podium-rank {
    background: linear-gradient(145deg, #08fcfc, #0053ff);
    color: #000;
}

.podium-place.rank-2 .podium-rank {
    background: linear-gradient(145deg, #C0C0C0, #808080);
    color: #000;
}

.podium-place.rank-3 .podium-rank {
    background: linear-gradient(145deg, #CD7F32, #8B4513);
    color: #fff;
}

@keyframes rankPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.podium-username {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.podium-place.rank-1 .podium-username {
    font-size: 22px;
    color: #08fcfc;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.podium-place.rank-2 .podium-username {
    color: #E8E8E8;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.podium-place.rank-3 .podium-username {
    color: #E8A368;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.4);
}

.podium-level {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(145deg, var(--glass-bg), rgba(0, 0, 0, 0.4));
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    box-shadow: 0 4px 12px #181b3045;
}

.podium-wager {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-red);
    text-shadow: 0 2px 8px #08fcfc75;
    letter-spacing: 0.5px;
}

.podium-place.rank-1 .podium-wager {
    font-size: 28px;
    background: linear-gradient(145deg, #08fcfc, #0053ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wagerGlow 2s ease-in-out infinite;
}



.podium-base {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(145deg, var(--glass-bg), rgba(0, 0, 0, 0.4));
    border-radius: 15px;
    border: 3px solid;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.podium-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.podium-place.rank-1 .podium-base {
    border-color: #08fcfc;
    padding: 30px 20px;

}

.podium-place.rank-2 .podium-base {
    border-color: #C0C0C0;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(192, 192, 192, 0.2);
}

.podium-place.rank-3 .podium-base {
    border-color: #CD7F32;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(205, 127, 50, 0.2);
}

.leaderboard-remaining-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 50px 0 25px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #08fcfc17 0%, #08fcfc0f 100%);
    backdrop-filter: blur(10px);
    border: 1px solid #08fcfc24;
    border-left: 5px solid var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px #08fcfc29,
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.leaderboard-remaining-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
}

.leaderboard-remaining-title i {
    font-size: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px #08fcfc52);
    position: relative;
    z-index: 1;
}

@keyframes shimmerSlow {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .vip-hero-section {
        padding: 25px 20px;
    }

    .vip-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .vip-welcome h1 {
        font-size: 26px;
    }

    /* Modern Badge Mobile */
    .vip-current-badge-modern {
        padding: 20px 25px;
    }

    .badge-content {
        gap: 15px;
    }

    .badge-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .vip-badge-icon {
        font-size: 40px;
    }

    .badge-level {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .badge-name {
        font-size: 22px;
    }

    .decoration-line {
        width: 20px;
    }

    /* Old Badge Mobile */
    .vip-current-badge {
        padding: 15px 25px;
        gap: 15px;
    }

    /* Quick Stats Mobile */
    .vip-quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .quick-stat-card {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .quick-stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .stat-value {
        font-size: 22px;
    }

    /* Progress Card Mobile */
    .vip-progress-card {
        padding: 20px 15px;
    }

    .progress-card-header {
        flex-direction: column;
        gap: 15px;
    }

    .progress-header-left h3 {
        font-size: 18px;
    }

    .next-level-badge {
        font-size: 14px;
        padding: 6px 16px;
    }

    .percentage-value {
        font-size: 28px;
    }

    .progress-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .remaining-amount {
        font-size: 13px;
        justify-content: center;
    }

    .btn-deposit {
        width: 100%;
        justify-content: center;
    }

    .next-level-benefits {
        grid-template-columns: 1fr;
    }

    /* Empty State Mobile */
    .vip-empty-state {
        padding: 40px 20px;
    }

    .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .empty-state-icon i {
        font-size: 50px;
    }

    .vip-empty-state h2 {
        font-size: 26px;
    }

    .empty-state-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .first-level-preview {
        padding: 20px 15px;
    }

    /* Max Level Mobile */
    .vip-max-level-card {
        padding: 30px 20px;
    }

    .max-level-icon {
        font-size: 60px;
    }

    .max-level-content h3 {
        font-size: 22px;
    }

    /* Old Styles */
    .vip-container,
    .overview-container,
    .levelrules-container,
    .leaderboard-container,
    .claims-container {
        padding: 20px 12px;
        border-radius: 0 0 15px 15px;
        margin-bottom: 20px;
    }

    .vip-tabs-container {
        gap: 5px;
        padding: 10px 10px 0;
        border-radius: 10px 10px 0 0;
    }

    .vip-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .vip-tab i {
        font-size: 16px;
    }

    .vip-header,
    .overview-header,
    .levelrules-header,
    .leaderboard-header,
    .claims-header {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .vip-header h1,
    .overview-header h1,
    .levelrules-header h1,
    .leaderboard-header h1,
    .claims-header h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .vip-header p,
    .overview-header p,
    .levelrules-header p,
    .leaderboard-header p,
    .claims-header p {
        font-size: 14px;
    }

    /* VIP Leaderboard Tablet */
    .vip-leaderboard-container {
        padding: 0 10px 20px;
    }

    .vip-leaderboard-wrapper {
        padding: 25px;
        /* border-radius: 20px; */
    }

    .vip-leaderboard-header {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .vip-leaderboard-header-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .vip-leaderboard-header-icon i {
        font-size: 28px;
    }

    .vip-leaderboard-header-content h1 {
        font-size: 26px;
    }

    .vip-leaderboard-header-content p {
        font-size: 14px;
    }

    .vip-leaderboard-table-section {
        padding: 20px;
        border-radius: 15px;
    }

    .vip-leaderboard-tabs {
        gap: 8px;
        padding: 6px;
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .vip-leaderboard-tab {
        flex: 1 1 calc(50% - 8px);
        min-width: auto;
        max-width: calc(50% - 8px);
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .vip-leaderboard-tab i {
        font-size: 15px;
    }

    .vip-leaderboard-tab:hover,
    .vip-leaderboard-tab.active {
        transform: translateY(-1px);
    }

    .vip-status-card {
        padding: 20px 15px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .vip-level-badge {
        font-size: 20px;
        padding: 12px 24px;
        gap: 10px;
    }

    .vip-level-badge i {
        font-size: 22px;
    }

    .vip-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .vip-stat-item {
        padding: 18px 12px;
    }

    .vip-stat-value {
        font-size: 20px;
    }

    .vip-stat-label {
        font-size: 11px;
    }

    .vip-progress-section {
        margin: 25px 0;
        padding: 20px 15px;
    }

    .vip-progress-info h3 {
        font-size: 16px;
        min-width: 150px;
    }

    .vip-progress-info span {
        font-size: 18px;
    }

    .vip-progress-bar {
        height: 35px;
    }

    .vip-progress-fill {
        font-size: 12px;
    }

    .vip-progress-fill .progress-text {
        font-size: 11px;
    }

    .vip-benefits-section {
        margin-top: 25px;
    }

    .vip-benefits-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .vip-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vip-benefit-card {
        padding: 18px 15px;
    }

    .vip-benefit-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .vip-benefit-content h4 {
        font-size: 15px;
    }

    .vip-benefit-content p {
        font-size: 13px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bonus-amount-value {
        font-size: 32px;
    }

    .leaderboard-table {
        font-size: 14px;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 10px 8px;
    }

    .vip-level-header {
        padding: 15px;
    }

    .vip-level-name h3 {
        font-size: 18px;
    }

    .vip-level-content {
        padding: 15px;
    }

    /* Leaderboard Podium Tablet */
    .leaderboard-podium {
        gap: 15px;
        padding: 15px;
    }

    .podium-place {
        max-width: 150px;
    }

    .podium-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .podium-place.rank-1 .podium-avatar {
        width: 90px;
        height: 90px;
    }

    .podium-username {
        font-size: 14px;
    }

    .podium-place.rank-1 .podium-username {
        font-size: 16px;
    }

    .podium-wager {
        font-size: 18px;
    }

    .podium-place.rank-1 .podium-wager {
        font-size: 20px;
    }

    /* Leaderboard Table Responsive */
    .leaderboard-table {
        display: block;
        overflow-x: auto;
    }

    .leaderboard-table thead {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .leaderboard-table tbody {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .leaderboard-table tr {
        display: table-row;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        display: table-cell;
        font-size: 13px;
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .vip-nav-tabs {
        /* padding: 0 5px; */
    }

    /* VIP Leaderboard Mobile */
    .vip-leaderboard-container {
        padding: 0 0px 15px;
    }

    .vip-container,
    .overview-container,
    .levelrules-container,
    .leaderboard-container,
    .claims-container {
        padding: 15px 8px;
    }

    .vip-tabs-container {
        padding: 8px 8px 0;
        gap: 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vip-tab {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .vip-tab span {
        display: inline;
        white-space: nowrap;
    }

    .vip-tab i {
        font-size: 14px;
    }

    .vip-header,
    .overview-header,
    .levelrules-header,
    .leaderboard-header,
    .claims-header {
        padding: 20px 12px;
        margin-bottom: 20px;
    }

    .vip-header h1,
    .overview-header h1,
    .levelrules-header h1,
    .leaderboard-header h1,
    .claims-header h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .vip-header p,
    .overview-header p,
    .levelrules-header p,
    .leaderboard-header p,
    .claims-header p {
        font-size: 13px;
    }

    .vip-status-card {
        padding: 18px 12px;
    }

    /* Modern Badge Small Mobile */
    .vip-current-badge-modern {
        padding: 18px 20px;
    }

    .badge-content {
        gap: 12px;
    }

    .badge-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .vip-badge-icon {
        font-size: 34px;
    }

    .badge-level {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .badge-name {
        font-size: 20px;
    }

    .decoration-dot {
        width: 3px;
        height: 3px;
    }

    .decoration-line {
        width: 15px;
    }

    /* Old Badge Styles */
    .vip-level-badge {
        font-size: 18px;
        padding: 10px 20px;
        gap: 8px;
    }

    .vip-level-badge i {
        font-size: 20px;
    }

    .vip-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .vip-stat-item {
        padding: 15px 10px;
    }

    .vip-stat-value {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .vip-stat-label {
        font-size: 10px;
    }

    .vip-progress-section {
        margin: 20px 0;
        padding: 15px 12px;
    }

    .vip-progress-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .vip-progress-info h3 {
        font-size: 15px;
        min-width: auto;
        width: 100%;
    }

    .vip-progress-info span {
        font-size: 16px;
        align-self: flex-end;
    }

    .vip-progress-bar {
        height: 32px;
    }

    .vip-progress-fill {
        font-size: 11px;
        padding: 0 5px;
    }

    .vip-progress-fill .progress-text {
        font-size: 10px;
        display: none;
    }

    .vip-benefits-section {
        margin-top: 20px;
    }

    .vip-benefits-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
        padding-left: 5px;
    }

    .vip-benefits-grid {
        gap: 12px;
    }

    .vip-benefit-card {
        padding: 15px 12px;
        gap: 12px;
    }

    .vip-benefit-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
        border-radius: 10px;
    }

    .vip-benefit-content h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .vip-benefit-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    .no-bonuses {
        padding: 50px 15px;
    }

    .no-bonuses-icon {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .no-bonuses h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .no-bonuses p {
        font-size: 14px;
    }

    .vip-special-benefits {
        margin-top: 20px;
    }

    .vip-benefit-card.special-highlight {
        padding: 15px 12px;
    }

    .vip-benefit-card.special-highlight .vip-benefit-content h4 {
        font-size: 15px;
    }

    .leaderboard-table thead {
        display: none;
    }

    .leaderboard-table tr {
        display: block;
        margin-bottom: 15px;
        background: var(--glass-bg);
        border-radius: 12px;
        overflow: hidden;
    }

    .leaderboard-table td {
        display: block;
        text-align: right;
        padding: 12px 15px;
        border: none;
    }

    .leaderboard-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--text-secondary);
    }

    .bonus-card {
        padding: 20px 15px;
    }

    .vip-level-header {
        padding: 12px;
    }

    .vip-level-content {
        padding: 12px;
    }

    /* Leaderboard Podium Mobile */
    .leaderboard-podium {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-end;
        gap: 5px;
        padding: 15px 5px;
        margin: 20px 0 30px;
    }

    .podium-place {
        flex: 1;
        min-width: 90px;
        max-width: 110px;
        flex-shrink: 1;
    }

    .podium-place.rank-1 {
        order: 2;
        min-width: 100px;
        max-width: 120px;
    }

    .podium-place.rank-2 {
        order: 1;
    }

    .podium-place.rank-3 {
        order: 3;
    }

    .podium-trophy-container {
        margin-bottom: 10px;
    }

    .podium-trophy {
        font-size: 40px !important;
    }

    .podium-place.rank-1 .podium-trophy {
        font-size: 50px !important;
    }

    .podium-crown {
        font-size: 20px;
        top: -15px;
    }

    .podium-rank {
        width: 30px;
        height: 30px;
        font-size: 14px;
        bottom: -10px;
    }

    .podium-username {
        font-size: 11px;
        margin-bottom: 5px;
        padding: 0 2px;
    }

    .podium-place.rank-1 .podium-username {
        font-size: 13px;
    }

    .podium-wager {
        font-size: 13px;
    }

    .podium-place.rank-1 .podium-wager {
        font-size: 15px;
    }

    .podium-base {
        margin-top: 10px;
        padding: 8px 4px !important;
        border-width: 2px;
    }

    .podium-place.rank-1 .podium-base {
        padding: 12px 6px !important;
    }

    .podium-sparkle {
        font-size: 8px;
    }

    .leaderboard-podium::before {
        width: 150px;
        top: -10px;
    }

    /* Leaderboard Table Card View */
    .leaderboard-table thead {
        display: none;
    }

    .leaderboard-table,
    .leaderboard-table tbody,
    .leaderboard-table tr {
        display: block;
        width: 100%;
    }

    .leaderboard-table tr {
        margin-bottom: 15px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 8px;
    }

    .leaderboard-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border: none;
        font-size: 14px;
    }

    .leaderboard-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
    }

    .leaderboard-remaining-title {
        font-size: 18px;
        padding: 15px 18px;
        margin: 35px 0 20px;
    }

    .leaderboard-remaining-title i {
        font-size: 20px;
    }

    /* Leaderboard Table Cells - Tablet */
    .leaderboard-table .vip-rank-cell {
        width: 105px;
        padding: 16px 12px;
    }
    
    .leaderboard-table .vip-rank-badge {
        min-width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 12px;
        margin-left: 10px;
    }

    .leaderboard-table .vip-username-cell {
        font-size: 15px;
        padding: 6px 15px 6px 13px;
    }

    .leaderboard-table .vip-wager-cell {
        font-size: 16px;
        padding: 16px 12px;
    }
    
    /* Current Player - Tablet */
    .leaderboard-table tbody tr.vip-current-player td:first-child {
        padding-left: 5px !important;
    }
    
    .leaderboard-table tbody tr.vip-current-player td:first-child::before {
        left: 6px;
        font-size: 17px;
    }
}

/* ============================================
   VIP User Position (Leaderboard Rank Box)
   ============================================ */

.vip-user-position {
    background: linear-gradient(145deg, #08fcfc24 0%, #08fcfc3b 100%);
    border: 3px solid var(--accent-red);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 8px 30px #08fcfc52, 
                inset 0 0 30px #08fcfc17;
    position: relative;
    overflow: hidden;
}

.vip-user-position::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.vip-user-position-label {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.vip-user-position-label i {
    font-size: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-user-position-value {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(145deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rankGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes rankGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .vip-user-position {
        padding: 15px 20px;
        margin-bottom: 15px;
        gap: 10px;
    }

    .vip-user-position-label {
        font-size: 14px;
    }

    .vip-user-position-label i {
        font-size: 18px;
    }

    .vip-user-position-value {
        font-size: 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .vip-user-position {
        flex-direction: column;
        padding: 15px;
        gap: 8px;
    }

    .vip-user-position-label,
    .vip-user-position-value {
        text-align: center;
    }

    .vip-user-position-label {
        font-size: 13px;
    }

    .vip-user-position-value {
        font-size: 28px;
    }
}

    /* VIP Level Rules Container */
    .vip-rules-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 5px;
    }

    .vip-rules-wrapper {
        background: linear-gradient(145deg, #181b30 0%, #181b30 100%);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 40px #181b3080;
    }

    /* Header */
    .vip-rules-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .vip-rules-header-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(145deg, #08fcfc 0%, #0053ff 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px #08fcfc4a;
    }

        .vip-rules-header-icon i {
            font-size: 24px;
            color: #ffffff;
        }

    .vip-rules-header-content h1 {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
        text-shadow: 0 2px 4px #181b3045;
    }

    .vip-rules-header-content p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin: 4px 0 0 0;
    }

    /* Level Cards Grid */
    .vip-levels-grid {
        display: grid;
        gap: 20px;
    }

    .vip-level-card {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }

        .vip-level-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-color: #08fcfc33;
        }

    /* Level Card Header */
    .vip-level-card-header {
        background: linear-gradient(145deg, #08fcfc 0%, #0053ff 100%);
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        user-select: none;
    }

        .vip-level-card-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

    .vip-level-card:hover .vip-level-card-header::before {
        left: 100%;
    }

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

        .vip-collapse-icon i {
            font-size: 14px;
            color: #ffffff;
            transition: transform 0.3s ease;
        }

    .vip-level-card.expanded .vip-collapse-icon i {
        transform: rotate(180deg);
    }

    .vip-level-card-header:hover .vip-collapse-icon {
        background: rgba(255, 255, 255, 0.25);
    }

    .vip-level-title-section {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .vip-level-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .vip-level-title-content h2 {
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
        text-shadow: 0 2px 4px #181b3045;
    }

    .vip-level-number {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin: 4px 0 0 0;
    }

    .vip-level-badge {
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Level Card Body */
    .vip-level-card-body {
        padding: 24px;
        max-height: 2000px;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease, opacity 0.3s ease;
        opacity: 1;
    }

        .vip-level-card-body.vip-level-collapsed {
            max-height: 0;
            padding: 0 24px;
            opacity: 0;
        }

    /* Requirements Section */
    .vip-requirements-section {
        margin-bottom: 24px;
    }

    .vip-section-title {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 16px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .vip-section-title i {
            color: #08fcfc;
            font-size: 18px;
        }

    .vip-requirements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }

    .vip-requirement-item {
        background: #181b3045;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: all 0.3s ease;
    }

        .vip-requirement-item:hover {
            background: #08fcfc17;
            border-color: #08fcfc33;
        }

    .vip-requirement-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .vip-requirement-value {
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .vip-requirement-value::before {
            content: '';
            width: 5px;
            height: 5px;
            background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
            border-radius: 50%;
            box-shadow: 0 0 8px #08fcfc78;
            flex-shrink: 0;
        }

    /* Benefits Section */
    .vip-benefits-section {
        margin-bottom: 24px;
    }

    .vip-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
    }

    .vip-benefit-item {
        background: #181b3045;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 16px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        transition: all 0.3s ease;
    }

        .vip-benefit-item:hover {
            background: #08fcfc17;
            border-color: #08fcfc33;
            transform: translateX(4px);
        }

    .vip-benefit-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(145deg, #08fcfc33 0%, #08fcfc38 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .vip-benefit-icon i {
            font-size: 20px;
            color: #08fcfc;
        }

    .vip-benefit-content {
        flex: 1;
        min-width: 0;
    }

        .vip-benefit-content h4 {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 4px 0;
        }

        .vip-benefit-content p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            line-height: 1.4;
        }

    /* Special Benefits */
    .vip-special-benefits {
        padding: 16px;
        background: #08fcfc0d;
        border: 1px solid #08fcfc1a;
        border-radius: 10px;
        margin-top: 12px;
    }

    .vip-special-benefits-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .vip-special-benefits-list li {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .vip-special-benefits-list li::before {
                content: 'âœ“';
                width: 20px;
                height: 20px;
                background: linear-gradient(145deg, #08fcfc 0%, #0053ff 100%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-weight: 700;
                color: #ffffff;
                flex-shrink: 0;
            }

    /* Action Buttons */
    .vip-actions {
        display: flex;
        gap: 12px;
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .vip-btn {
        padding: 14px 28px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        border: 2px solid transparent;
    }

    .vip-btn-primary {
        background: linear-gradient(145deg, #08fcfc 0%, #0053ff 100%);
        color: #ffffff;
        box-shadow: 0 4px 15px #08fcfc4a;
    }

        .vip-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px #08fcfc61;
            color: #ffffff;
            text-decoration: none;
        }

    /* Mobile Responsive */
    @@media (max-width: 768px) {
        .vip-rules-wrapper {
            padding: 20px;
        }

        .vip-rules-header-content h1 {
            font-size: 22px;
        }

        .vip-level-card-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .vip-requirements-grid,
        .vip-benefits-grid {
            grid-template-columns: 1fr;
        }

        .vip-actions {
            flex-direction: column;
        }

        .vip-btn {
            width: 100%;
            justify-content: center;
        }
    }