  * { font-family: 'Plus Jakarta Sans', sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: #05070f; overflow-x: hidden; }
        
        .glass-nav-premium {
            background: rgba(5, 7, 15, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }
        .glass-nav-premium.scrolled {
            background: rgba(5, 7, 15, 0.95);
            border-bottom-color: rgba(139, 92, 246, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        .gradient-text {
            background: linear-gradient(135deg, #C084FC, #60A5FA, #F472B6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: shimmer 4s linear infinite;
        }
        @keyframes shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        .btn-premium {
            background: linear-gradient(105deg, #8B5CF6 0%, #3B82F6 100%);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
            z-index: -1;
        }
        .btn-premium:hover::before { left: 100%; }
        .btn-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
        }
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #C084FC, #60A5FA);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .nav-link.active { color: #C084FC; }
        
        .blob-bg {
            position: fixed;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
            pointer-events: none;
        }
        
        .mobile-menu-container {
            position: fixed;
            top: 73px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(5, 7, 15, 0.98);
            backdrop-filter: blur(24px);
            z-index: 40;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-menu-container::-webkit-scrollbar {
            width: 4px;
        }
        .mobile-menu-container::-webkit-scrollbar-track {
            background: #1e1a2f;
        }
        .mobile-menu-container::-webkit-scrollbar-thumb {
            background: #8B5CF6;
            border-radius: 10px;
        }
        .accordion-content {
            transition: all 0.2s ease;
        }