@charset "UTF-8";
/* CSS Document */
.glass {
            background: rgba(17, 24, 39, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                        0 2px 4px -1px rgba(0, 0, 0, 0.06),
                        inset 0 1px 1px rgba(255, 255, 255, 0.05);
        }
        
        .glass-button {
            background: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .glass-button:hover {
            background: rgba(37, 44, 59, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        .bg-mesh {
            background-color: #0F172A;
            background-image: 
                radial-gradient(at 20% 0%, rgba(124, 58, 237, 0.15) 0px, transparent 50%),
                radial-gradient(at 80% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
                radial-gradient(at 0% 50%, rgba(56, 189, 248, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 50%, rgba(167, 139, 250, 0.15) 0px, transparent 50%),
                radial-gradient(at 0% 100%, rgba(52, 211, 153, 0.15) 0px, transparent 50%),
                radial-gradient(at 80% 100%, rgba(124, 58, 237, 0.15) 0px, transparent 50%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #818cf8, #e879f9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .highlight {
            position: relative;
        }
        
        .highlight::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #818cf8, #e879f9);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .highlight:hover::after {
            transform: scaleX(1);
        }

        .glow {
            box-shadow: 0 0 20px rgba(129, 140, 248, 0.1);
        }
