     /* ================= VARIABLES & THEME SETUP ================= */
        :root {
            --primary: #00aaff;
            --primary-dark: #008ecc;
            --primary-light: #e0f2fe;
            --bg-body: #f8faff;
            --bg-card: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --sidebar-width: 260px;
            --header-height: 70px;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --purple: #8b5cf6;
            --nav-height: 70px;
        }

        body.dark-mode {
            --primary: #53d6ff;
            --primary-dark: #00aaff;
            --primary-light: #1e3a8a;
            --bg-body: #0f172a;
            --bg-card: #1e293b;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border-color: #334155;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
        }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            padding-bottom: var(--nav-height);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* ================= SIDEBAR ================= */
        .sidebar {
            width: var(--sidebar-width);
            height: 100vh;
            background: var(--bg-card);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1300;
            border-right: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .sidebar { 
                transform: translateX(-100%); 
                width: 280px; 
             padding-bottom: 50px;
            }
            .sidebar.active { 
                transform: translateX(0); 
                box-shadow: 0 0 50px rgba(0,0,0,0.5); 
            }
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            backdrop-filter: blur(3px);
        }
        
        .sidebar-overlay.active {
            display: block;
        }

        .brand {
            height: var(--header-height);
            display: flex;
            align-items: center;
            padding: 0 20px;
            border-bottom: 1px solid var(--border-color);
            gap: 12px;
        }

        .brand-logo {
            width: 45px; 
            height: 45px; 
            overflow: hidden;
            flex-shrink: 0;
        }

        .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .brand-text {
            font-size: 23px;
            font-weight: 700;
            color: var(--primary);
        }

        .sidebar-menu {
            padding: 20px 0;
            flex: 1;
            overflow-y: auto;
        }

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

        .sidebar-menu::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 3px;
        }

        .menu-item {
            padding: 12px 24px;
            display: flex;
            align-items: center;
            color: var(--text-muted);
            font-weight: 500;
            border-left: 4px solid transparent;
            margin-bottom: 2px;
        }

        .menu-item i { 
            width: 25px; 
            font-size: 18px; 
            margin-right: 12px; 
        }

        .menu-item:hover, .menu-item.active {
            background: var(--primary-light);
            color: var(--primary);
            border-left-color: var(--primary);
        }

       .sidebar-footer { 
            padding: 10px; 
            border-top: 1px solid var(--border-color); 
            margin-top: 20px;
        }

        .logout-btn {
            width: 100%; 
            padding: 12px; 
            background: rgba(239, 68, 68, 0.1); 
            color: #ef4444; 
            border: none;
            border-radius: 8px; 
            cursor: pointer; 
            font-weight: 600; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            gap: 10px;
            
        }
        .logout-btn:hover { background: #ef4444; color: white; }
        
        /* ================= MAIN CONTENT ================= */
        .main-content {
            margin-left: var(--sidebar-width);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            width: calc(100% - var(--sidebar-width));
        }
        
        @media (max-width: 768px) {
            .main-content { margin-left: 0; width: 100%; }
        }

        .top-header {
            height: var(--header-height);
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            position: sticky;
            top: 0;
            z-index: 900;
            border-bottom: 1px solid var(--border-color);
        }

        .menu-toggle { 
            display: none; 
            font-size: 24px; 
            cursor: pointer; 
        }
        
        @media (max-width: 768px) { 
            .menu-toggle { display: block; } 
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-logo-img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            overflow: hidden;
        }

        .header-logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .header-brand-text {
            font-size: 23px;
            font-weight: 700;
            color: var(--primary);
        }

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

    
        .notif-btn {
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notif-btn i {
            font-size: 22px;
            color: var(--text-main);
        }

        .notif-badge {
            position: absolute; 
            top: -8px; 
            right: -8px; 
            background: #ef4444; 
            color: white; 
            border-radius: 50%; 
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px; 
            font-weight: 600;
            border: 2px solid var(--bg-card);
        }

        /* 🔔 NOTIFICATION ENABLE BUTTON */
        .notif-enable-btn {
            background: var(--primary-light);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            transition: 0.3s;
        }

        .notif-enable-btn:hover {
            background: var(--primary);
            color: white;
        }

        .notif-enable-btn.enabled {
            background: rgba(16, 185, 129, 0.1);
            border-color: var(--success);
            color: var(--success);
        }

        .eye-toggle {
            background: var(--primary-light); 
            border: none; 
            color: var(--text-main);
            width: 40px; 
            height: 40px; 
            border-radius: 50%; 
            cursor: pointer;
            display: flex; 
            align-items: center; 
            justify-content: center;
            font-size: 18px;
        }

        .container {
            padding: 25px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            flex: 1;
        }

        /* ⚠️ ACTIVATION BANNER */
        .activation-banner {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            color: white;
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .activation-banner.hidden {
            display: none;
        }

        .activation-content {
            flex: 1;
        }

        .activation-content h3 {
            font-size: 18px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .activation-content p {
            font-size: 14px;
            opacity: 0.95;
        }

        .activation-btn {
            background: white;
            color: #f59e0b;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            font-size: 15px;
            white-space: nowrap;
            transition: 0.3s;
        }

        .activation-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .activation-banner {
                flex-direction: column;
                text-align: center;
            }
            .activation-btn {
                width: 100%;
            }
        }



/* ⚠️ ACTIVATION BANNER - DYNAMIC COLORS */
.activation-banner {
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.activation-banner.warning {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.activation-banner.info {
    background: linear-gradient(135deg, #00aaff, #0066cc);
}

.activation-banner.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.activation-banner.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.activation-banner.purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.activation-banner.hidden {
    display: none;
}
        /* 📢 ADMIN MESSAGE BANNER */
        .admin-message-banner {
            background: var(--bg-card);
            padding: 18px 20px;
            border-radius: var(--radius);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
        }

        .admin-message-banner.hidden {
            display: none;
        }

        .admin-message-banner.warning {
            border-left-color: var(--warning);
            background: rgba(245, 158, 11, 0.05);
        }

        .admin-message-banner.success {
            border-left-color: var(--success);
            background: rgba(16, 185, 129, 0.05);
        }

        .admin-message-banner.danger {
            border-left-color: var(--danger);
            background: rgba(239, 68, 68, 0.05);
        }

        .admin-message-icon {
            font-size: 28px;
            flex-shrink: 0;
        }

        .admin-message-banner.warning .admin-message-icon {
            color: var(--warning);
        }

        .admin-message-banner.success .admin-message-icon {
            color: var(--success);
        }

        .admin-message-banner.danger .admin-message-icon {
            color: var(--danger);
        }

        .admin-message-content {
            flex: 1;
        }

        .admin-message-content h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--text-main);
        }

        .admin-message-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .admin-message-close {
            font-size: 20px;
            cursor: pointer;
            color: var(--text-muted);
            flex-shrink: 0;
            transition: 0.3s;
        }

        .admin-message-close:hover {
            color: var(--text-main);
        }

        .welcome-section {
            margin-bottom: 25px;
        }

        .welcome-text h2 {
            font-size: 24px;
            font-weight: 600;
        }
        
        .welcome-text p {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 5px;
        }

        /* ================= WALLET + IMAGE SLIDER ================= */
        .wallet-slider-container {
            margin-bottom: 30px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .wallet-swiper {
            width: 100%;
            height: 240px;
        }

        .wallet-slide {
            border-radius: var(--radius);
        }

        /* Blue Wallet Card */
        .wallet-card {
            background: linear-gradient(135deg, #00aaff 0%, #0066cc 100%);
            color: white;
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .wallet-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .balance-wrapper { 
            display: flex; 
            justify-content: space-between;
            align-items: center; 
            margin-bottom: 20px; 
        }
        
        .wallet-amount { 
            font-size: 32px; 
            font-weight: 700; 
        }
        
        .wallet-amount.hidden { 
            filter: blur(12px); 
        }
        
        .wallet-eye-toggle {
            background: rgba(255,255,255,0.2); 
            border: none; 
            color: white;
            width: 40px; 
            height: 40px; 
            border-radius: 50%; 
            cursor: pointer;
            display: flex; 
            align-items: center; 
            justify-content: center;
        }

        .wallet-actions {
            display: flex;
            gap: 15px;
        }

        .w-action-btn {
            flex: 1; 
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.4); 
            color: white; 
            padding: 12px;
            border-radius: 10px; 
            font-weight: 600; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            gap: 8px; 
            cursor: pointer;
            font-size: 14px;
        }
        
        .w-action-btn:hover { 
            background: rgba(255, 255, 255, 0.3); 
        }

        /* 🎉 Green Celebration Image Card */
        .celebration-card {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .celebration-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .celebration-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 20px 30px;
            color: white;
        }

        .celebration-overlay h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .celebration-overlay p {
            font-size: 13px;
            opacity: 0.9;
        }

        /* ================= REFERRALS CARD ================= */
        .referrals-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            margin-bottom: 30px;
        }

        .referrals-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .referrals-header h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
        }

        /* 💰 REFERRAL BENEFITS - TOP */
        .ref-benefits {
            background: var(--primary-light);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }

        .ref-benefits h4 {
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ref-benefit-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ref-benefit-item {
            font-size: 13px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ref-benefit-item i {
            color: var(--success);
            font-size: 16px;
        }

        .ref-link-section {
            background: var(--bg-body);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .ref-link-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .ref-link-input-group {
            display: flex;
            gap: 10px;
        }

        .ref-link-input {
            flex: 1;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-card);
            color: var(--text-main);
            font-size: 14px;
        }

        .ref-copy-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ref-copy-btn:hover {
            background: var(--primary-dark);
        }

        .ref-progress-section {
            margin-top: 20px;
        }

        .ref-progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .ref-progress-header h4 {
            font-size: 14px;
            color: var(--text-muted);
        }

        .ref-progress-stats {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
        }

        .ref-progress-bar {
            height: 12px;
            background: var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .ref-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--success));
            border-radius: 10px;
            transition: width 1s ease;
        }

        .ref-goal-text {
            font-size: 13px;
            color: var(--text-muted);
            text-align: center;
        }

  
  /* 🏆 ACHIEVEMENT SECTION */
.ref-achievement-section {
    background: var(--bg-body);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

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

.achievement-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--warning), var(--danger));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.achievement-header h4 {
    font-size: 16px;
    color: var(--text-main);
    margin: 0;
}

.ref-progress-section {
    margin-top: 15px;
}

.ref-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ref-progress-header h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.ref-progress-stats {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.ref-progress-bar {
    height: 12px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ref-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 10px;
    transition: width 1s ease;
}

.ref-goal-text {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}
        /* ================= STATS CARDS ================= */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid var(--border-color);
        }
        
        .stat-card:hover {
            transform: translateY(-3px);
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }
        
        .stat-1 .stat-icon { background: var(--primary); }
        .stat-2 .stat-icon { background: var(--success); }
        .stat-3 .stat-icon { background: var(--warning); }
        .stat-4 .stat-icon { background: var(--danger); }
        .stat-5 .stat-icon { background: #8b5cf6; }
        .stat-6 .stat-icon { background: #f59e0b; }
        
        .stat-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-content p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ================= WITHDRAW CARDS ================= */
        .withdraw-stack {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .withdraw-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        
        .withdraw-card h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: var(--text-muted);
            font-size: 14px;
        }
        
        .withdraw-card .amount {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
        }

        /* ================= POLL & SPONSORED - HIDDEN BY DEFAULT ================= */
        .poll-section, .sponsored-section {
            display: none;
            margin-bottom: 30px;
        }

        .poll-section.active, .sponsored-section.active {
            display: block;
        }
        
        .poll-card, .sponsored-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        .poll-header, .sponsored-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .poll-question {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        .poll-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .poll-option {
            display: flex;
            flex-direction: column;
            padding: 12px 15px;
            background: var(--bg-body);
            border-radius: 8px;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .poll-option:hover {
            border-color: var(--primary);
        }

        .poll-option.selected {
            background: var(--primary-light);
            border-color: var(--primary);
        }

        .option-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .option-radio {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .option-radio::after {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary);
            display: none;
        }

        .poll-option.selected .option-radio::after {
            display: block;
        }

        .option-text {
            flex: 1;
        }

        .option-percentage {
            font-weight: 600;
            color: var(--primary);
            font-size: 14px;
        }

        .option-bar {
            height: 6px;
            background: var(--border-color);
            border-radius: 3px;
            overflow: hidden;
        }

        .option-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 3px;
            transition: width 1s ease;
        }

        .poll-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .vote-btn {
            padding: 10px 25px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }

        .sponsored-content {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .sponsored-image {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .sponsored-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sponsored-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .sponsored-description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .sponsored-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .sponsored-actions {
            display: flex;
            gap: 10px;
        }

        .btn-get-now, .btn-view {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-get-now {
            background: var(--primary);
            color: white;
            border: none;
        }

        .btn-view {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        /* ================= CHART SECTION ================= */
        .chart-section {
            margin-bottom: 30px;
        }
        
        .chart-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            height: 400px;
            display: flex;
            flex-direction: column;
        }
        
        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .chart-header h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .chart-container {
            flex: 1;
            position: relative;
        }

        /* ================= TRUSTPILOT ================= */
        .trustpilot-section {
            margin-bottom: 30px;
        }
        
        .trustpilot-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            text-align: center;
        }
        
        .trustpilot-card h3 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .trustpilot-widget {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ================= BOTTOM NAV BAR ================= */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: var(--nav-height);
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
            padding: 0 20px;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: var(--text-muted);
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 10px;
            transition: 0.3s;
            flex: 1;
            max-width: 80px;
        }

        .nav-item i {
            font-size: 22px;
        }

        .nav-item span {
            font-size: 11px;
            font-weight: 500;
        }

        .nav-item.active, .nav-item:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        /* ================= MODALS ================= */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(8px);
        }
        
        .modal-content {
            background: var(--bg-card);
            width: 90%;
            max-width: 600px;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid var(--border-color);
        }

        .modal-wide {
            max-width: 900px;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-muted);
        }
        
        .modal-icon {
            font-size: 50px;
            margin-bottom: 15px;
            color: var(--primary);
            text-align: center;
            display: flex;
            justify-content: center;
        }
        
        .modal-title {
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 22px;
        }
        
        .modal-body {
            text-align: left;
            margin-bottom: 20px;
        }

        .modal-body h4 {
            margin-bottom: 10px;
            color: var(--primary);
            font-size: 18px;
        }

        .modal-body p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .btn-modal {
            background: var(--primary); 
            color: white;
            border: none; 
            padding: 12px 30px; 
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer; 
            width: 100%;
        }

        .btn-modal:hover {
            background: var(--primary-dark);
        }

        /* 🎉 Congrats Modal - LARGER IMAGE */
        .congrats-icon {
            font-size: 80px;
            margin-bottom: 20px;
            color: #f59e0b;
        }

        .congrats-title {
            font-size: 26px;
            margin-bottom: 20px;
            color: #f59e0b;
            font-weight: 700;
        }

        .congrats-image {
            width: 100%;
            max-width: 700px;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            margin: 20px auto;
        }

        .congrats-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sponsored Modal */
        .modal-slider {
            margin-bottom: 25px;
            border-radius: 12px;
            overflow: hidden;
            height: 300px;
        }

        .sponsored-modal-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin: 15px 0;
        }

        .sponsored-modal-description {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 16px;
        }


/* ====== AD MODAL ====== */
.ad-modal-box {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 60%, #1a6b3c 100%);
    border-radius: 20px;
    padding: 32px 28px 24px;
    max-width: 360px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    animation: adModalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes adModalIn {
    from { opacity: 0; transform: scale(0.7) translateY(40px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.ad-modal-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    margin-bottom: 16px;
}

.ad-modal-title {
    color: white;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ad-modal-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 22px;
}

.ad-modal-action {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: white;
    color: #1e3c72;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ad-modal-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}


#adModalTimer {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.4);
}
/* ================= SUCCESS/WARNING MODALS ================= */
.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--success);
    animation: scaleIn 0.5s ease;
}

.warning-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--warning);
    animation: scaleIn 0.5s ease;
}

.success-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--success);
    font-weight: 700;
    text-align: center;
}

.warning-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--warning);
    font-weight: 700;
    text-align: center;
}

/* 🎯 FIX: CENTER ALL MODAL TITLES */
.modal-title {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 22px;
    text-align: center; /* ← Na gyara wannan */
}

.congrats-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: #f59e0b;
    font-weight: 700;
    text-align: center; /* ← Na gyara wannan */
}

/* Animation */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
                padding-bottom: calc(var(--nav-height) + 20px);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .chart-card {
                height: 400px;
            }

            .sponsored-content {
                flex-direction: column;
            }

            .sponsored-image {
                width: 100%;
                height: 200px;
            }

            .ref-link-input-group {
                flex-direction: column;
            }

            .ref-copy-btn {
                width: 100%;
            }

            .notif-enable-btn span {
                display: none;
            }

            .notif-enable-btn {
                padding: 8px 12px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .header-right {
                gap: 10px;
            }

            .notif-enable-btn {
                padding: 8px;
            }

            .congrats-image {
                height: 350px;
            }
        }

        body::-webkit-scrollbar {
            width: 8px;
        }

        body::-webkit-scrollbar-track {
            background: transparent;
        }

        body::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 4px;
        }

        .content-columns {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 100%;
            max-width: 100%;
        }
        
        .left-column, .right-column {
            width: 100%;
        }

        /* ── Sidebar group labels ── */
        .menu-group-label {
            padding: 16px 24px 5px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--text-muted);
            opacity: 0.55;
            pointer-events: none;
            user-select: none;
        }

        #wcBtn:hover { background: rgba(255,255,255,0.38) !important; }

        #wcPanel {
            display: none;
            position: fixed;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 16px;
            width: 270px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.22);
            z-index: 99999;
            animation: wcUp .15s ease;
        }
        #wcPanel.open { display: block; }
        @keyframes wcUp {
            from { opacity:0; transform:translateY(6px); }
            to   { opacity:1; transform:translateY(0); }
        }
        .wcp-label {
            font-size: 10px; font-weight: 700; letter-spacing: 1px;
            text-transform: uppercase; color: var(--text-muted);
            margin-bottom: 8px; margin-top: 10px;
        }
        .wcp-label:first-child { margin-top: 0; }
        .wcp-dots { display:flex; gap:7px; flex-wrap:wrap; }
        .wcp-dot {
            width:28px; height:28px; border-radius:8px;
            cursor:pointer; border:2.5px solid transparent;
            transition:transform .15s, border-color .15s;
        }
        .wcp-dot:hover { transform:scale(1.2); }
        .wcp-dot.active { border-color:#fff; box-shadow:0 0 0 2.5px var(--primary); }
        .wcp-grads { display:flex; gap:6px; flex-wrap:wrap; }
        .wcp-grad {
            flex:1; min-width:70px; height:34px; border-radius:9px;
            cursor:pointer; border:2px solid transparent;
            display:flex; align-items:flex-end; padding:4px 7px;
            transition:transform .15s;
        }
        .wcp-grad:hover { transform:scale(1.04); }
        .wcp-grad.active { border-color:#fff; box-shadow:0 0 0 2.5px var(--primary); }
        .wcp-grad span {
            font-size:9px; font-weight:700; color:#fff;
            text-shadow:0 1px 3px rgba(0,0,0,.5);
        }
        .wcp-custom {
            display:flex; align-items:center; gap:8px; margin-top:8px;
            padding-top:10px; border-top:1px solid var(--border-color);
        }
        .wcp-custom span { font-size:11px; color:var(--text-muted); font-weight:600; }
        .wcp-custom input[type=color] {
            width:30px; height:30px; border-radius:8px;
            border:1.5px solid var(--border-color); cursor:pointer; padding:2px;
        }
        .wallet-card { position: relative; }
