        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        
        /* Enhanced Glass Panel with Depth */
        .glass-panel {
            background: rgba(11, 17, 32, 0.35);
            backdrop-filter: blur(16px) saturate(1.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 
                        0 20px 40px -20px rgba(0, 0, 0, 0.5),
                        0 0 60px -10px rgba(128, 131, 255, 0.1);
            position: relative;
        }
        
        .glass-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
            pointer-events: none;
        }
        
        /* Glow Auras */
        .glow-aura-primary {
            background: radial-gradient(circle at center, rgba(128, 131, 255, 0.25) 0%, rgba(128, 131, 255, 0.1) 30%, transparent 70%);
            filter: blur(40px);
        }
        
        .glow-aura-secondary {
            background: radial-gradient(circle at center, rgba(111, 0, 190, 0.25) 0%, rgba(111, 0, 190, 0.1) 30%, transparent 70%);
            filter: blur(40px);
        }
        
        .glow-aura-tertiary {
            background: radial-gradient(circle at center, rgba(255, 175, 211, 0.2) 0%, rgba(255, 175, 211, 0.05) 40%, transparent 70%);
            filter: blur(40px);
        }
        
        /* Enhanced Grid Overlay */
        .grid-overlay {
            background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), 
                              linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        
        /* Dark background with depth */
        body {
            background: linear-gradient(180deg, #0a0e1a 0%, #020408 50%, #0f0a1a 100%);
            background-attachment: fixed;
            color: #dde2f3;
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        html {
            overflow-x: hidden;
            width: 100%;
            scroll-behavior: smooth;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(128, 131, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 80%, rgba(111, 0, 190, 0.06) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }
        
        /* Enhanced Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes glow-pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.7; }
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .animate-glow-pulse {
            animation: glow-pulse 3s ease-in-out infinite;
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Enhanced Border Glow */
        .border-glow-hover {
            position: relative;
            overflow: hidden;
        }
        
        .border-glow-hover::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(192, 193, 255, 0.4) 25%, 
                rgba(192, 193, 255, 0.2) 50%, 
                rgba(192, 193, 255, 0.4) 75%, 
                transparent 100%);
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            transition: all 0.4s ease;
            animation: none;
        }
        
        .border-glow-hover:hover::after {
            opacity: 1;
            animation: shimmer 2s infinite;
        }
        
        /* Card Depth Effect */
        .card-depth {
            position: relative;
            transform-style: preserve-3d;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
        }
        
        .card-depth:hover {
            transform: translateZ(20px) translateY(-8px);
            box-shadow: 0 30px 60px -10px rgba(128, 131, 255, 0.2),
                        0 0 40px -5px rgba(128, 131, 255, 0.15);
        }
        
        /* Gradient Text with Glow */
        .gradient-text-glow {
            background: linear-gradient(135deg, #c0c1ff 0%, #8083ff 50%, #ddb7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(192, 193, 255, 0.3));
        }
        
        /* Nav Enhancement */
        nav {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
            background: linear-gradient(180deg, rgba(92, 64, 160, 0.05) 0%, rgba(11, 17, 32, 0.4) 100%) !important;
            box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.3);
        }
        
        /* Section dividers with glow */
        section {
            position: relative;
        }
        
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(128, 131, 255, 0.2), transparent);
        }
        
        /* Button enhancements */
        button {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }
        
        button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        button:hover::before {
            left: 100%;
        }
        
        /* Input focus glow */
        input:focus, select:focus, textarea:focus {
            box-shadow: 0 0 0 2px rgba(192, 193, 255, 0.1),
                        0 0 20px -5px rgba(192, 193, 255, 0.3),
                        inset 0 0 20px -10px rgba(192, 193, 255, 0.1) !important;
            border-color: rgba(192, 193, 255, 0.3) !important;
        }
        
        /* Hero Terminal Glow */
        .terminal-glow {
            box-shadow: 0 0 60px -15px rgba(128, 131, 255, 0.4),
                        0 0 40px -10px rgba(111, 0, 190, 0.2),
                        inset 0 0 40px -20px rgba(128, 131, 255, 0.1);
        }
        
        /* Progress bar glow */
        .progress-bar-glow {
            box-shadow: 0 0 30px -5px rgba(192, 193, 255, 0.6),
                        0 0 20px -2px rgba(221, 183, 255, 0.4);
        }
        
        /* Feature card lift effect */
        .feature-card {
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }
        
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 40px 80px -20px rgba(128, 131, 255, 0.3),
                        0 0 50px -10px rgba(111, 0, 190, 0.15);
        }
        
        /* Text glow on hover */
        .text-glow-hover {
            transition: all 0.4s ease;
        }
        
        .text-glow-hover:hover {
            text-shadow: 0 0 20px rgba(192, 193, 255, 0.4),
                         0 0 40px rgba(128, 131, 255, 0.2);
        }