* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
            -webkit-tap-highlight-color: transparent;
            text-decoration: none;
        }

        :root {
            --black-0: #000000;
            --black-1: #080808;
            --black-2: #0e0e0e;
            --black-3: #141414;
            --black-4: #1a1a1a;
            --graphite-1: #222222;
            --graphite-2: #2a2a2a;
            --graphite-3: #333333;
            --graphite-4: #3a3a3a;
            --silver-1: #c0c0c0;
            --silver-2: #d0d0d0;
            --silver-3: #e0e0e0;
            --silver-4: #f0f0f0;
            --white: #ffffff;
            --glow-effect: rgba(255, 255, 255, 0.03);
            --glass-bg: rgba(15, 15, 15, 0.4);
            --glass-border: rgba(255, 255, 255, 0.1);
            --gradient-silver: linear-gradient(135deg, var(--silver-2) 0%, var(--white) 100%);
            --gradient-silver-vertical: linear-gradient(to bottom, var(--silver-3) 0%, var(--white) 100%);
            --gradient-silver-horizontal: linear-gradient(to right, var(--silver-3) 0%, var(--white) 100%);
            --gradient-dark: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 100%);
            --gradient-glass-dark: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
            --diamond-gradient: linear-gradient(135deg, rgba(220,220,220,0.8) 0%, rgba(255,255,255,0.9) 50%, rgba(220,220,220,0.8) 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--black-0);
            color: var(--silver-2);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            background: var(--gradient-dark);
            background-attachment: fixed;
            will-change: transform, opacity;
            min-height: 100vh;
            padding: 20px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Manrope', sans-serif;
            font-weight: 500;
            letter-spacing: -0.5px;
            background: var(--gradient-silver);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(255,255,255,0.1);
            position: relative;
            display: inline-block;
        }

        .text-gradient-light {
            background: var(--gradient-silver);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform, box-shadow;
        }

        .glass-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-glass);
            opacity: 0.3;
            z-index: -1;
        }

        .glass-card {
            background: rgba(25, 25, 25, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            will-change: transform, box-shadow;
        }

        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            border-color: rgba(255,255,255,0.2);
        }
		
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 42px;
            border-radius: 0;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            border: none;
            outline: none;
            position: relative;
            overflow: hidden;
            background: transparent;
            color: var(--silver-3);
            border: 1px solid var(--silver-2);
            box-shadow: 0 0 15px var(--glow-effect);
            opacity: 1;
            transform: translateY(0);
            z-index: 1;
            will-change: transform, box-shadow;
        }

        .btn::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: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: -1;
        }

        .btn:hover {
            color: var(--silver-4);
            box-shadow: 0 0 25px var(--glow-effect);
            transform: translateY(-3px) !important;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn i {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .btn-glass {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            color: var(--white);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .btn-glass-gradient {
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
        }

        .btn-glass-gradient:hover {
            background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 100%);
        }

        .dashboard-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding: 30px;
        }

        .dashboard-header h2 {
            font-size: 2.2rem;
            margin: 0;
        }

        .dashboard-actions {
            display: flex;
            gap: 15px;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .dashboard-card {
            padding: 30px;
            opacity: 0;
            transform: translateY(30px);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .dashboard-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--silver-3);
            font-family: 'Manrope', sans-serif;
            text-align: center;
        }

        .dashboard-card p {
            margin-bottom: 15px;
            color: var(--silver-2);
            text-align: center;
        }

        .dashboard-card strong {
            color: var(--silver-3);
        }

        .profile-actions {
            display: flex;
            gap: 15px;
            margin-top: auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .status-active {
            color: var(--silver-3);
            font-weight: 600;
        }

        .alert {
            padding: 12px 15px;
            margin: 15px 0;
            background: rgba(255, 255, 255, 0.1);
            border-left: 3px solid var(--silver-3);
            color: var(--silver-3);
            font-size: 0.9rem;
            text-align: center;
        }

        .referral-input {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            justify-content: center;
        }

        .referral-input input {
            padding: 12px 15px;
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--silver-3);
            font-family: 'Inter', sans-serif;
            text-align: center;
            min-width: 200px;
        }

        .download-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 40px;
            padding: 30px;
        }

        .download-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .download-btn {
            display: flex;
            align-items: center;
            padding: 15px 25px;
            background: rgba(30, 30, 30, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--silver-3);
            transition: all 0.3s ease;
            min-width: 200px;
            justify-content: center;
        }

        .download-btn:hover {
            background: rgba(40, 40, 40, 0.8);
            transform: translateY(-3px);
        }

        .download-icon {
            font-size: 1.8rem;
            margin-right: 12px;
        }

        .download-text {
            display: flex;
            flex-direction: column;
        }

        .download-label {
            font-size: 0.7rem;
            color: var(--silver-2);
        }

        .download-platform {
            font-size: 1rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .dashboard-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .dashboard-actions {
                justify-content: center;
            }
            
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            
            .profile-actions {
                flex-direction: column;
            }
            
            .referral-input {
                flex-direction: column;
                align-items: center;
            }
            
            .download-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .dashboard-header h2 {
                font-size: 1.8rem;
            }
            
            .dashboard-card {
                padding: 20px;
            }
            
            .dashboard-card h3 {
                font-size: 1.3rem;
            }
            
            .btn {
                padding: 14px 28px;
                font-size: 0.8rem;
            }
        }
		.profile-actions .btn {
			min-width: 180px;
			text-align: center;
			justify-content: center;
			white-space: nowrap;
		}

		@media (max-width: 768px) {
			.profile-actions .btn {
				min-width: 160px;
			}
		}

		@media (max-width: 576px) {
			.profile-actions .btn {
				min-width: 140px;
				font-size: 0.75rem;
				padding: 12px 20px;
			}
		}