 /* Core Aesthetic Styles */
        body {
            background-color: #07080B;
            color: #E0E0E0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        /* Holographic Grid Background for Hero */
        .hologrid-bg {
            background-image: linear-gradient(0deg, transparent 24%, #747c92 25%, #a2acc5 26%, transparent 20%), 
                              linear-gradient(90deg, transparent 24%, #8c96b1 25%, #b2c2ea 26%, transparent 15%);
            background-size: 50px 50px;
            background-repeat: repeat;
            position: absolute;
            inset: 0;
            opacity: 0.1;
            animation: hologrid-shift 120s linear infinite;
        }

        /* Neon Text and Button Glow */
        .neon-text-main {
            text-shadow: 0 0 10px #00F0FF, 0 0 20px #4D96FF;
        }
        .neon-cta-glow {
            box-shadow: 0 0 15px #FF00A7, 0 0 30px rgba(255, 0, 167, 0.4);
            transition: all 0.3s ease;
        }
        .neon-cta-glow:hover {
            box-shadow: 0 0 20px #FF00A7, 0 0 50px rgba(255, 0, 167, 0.7);
            transform: translateY(-2px);
        }

        /* Glassmorphism Effect */
        .glass-card {
            background: rgba(28, 33, 46, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(0, 240, 255, 0.2);
            box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.4);
            cursor: pointer; /* Indicate clickable */
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            border: 1px solid rgba(77, 150, 255, 0.6);
            box-shadow: 0 0 20px rgba(77, 150, 255, 0.4);
            transform: translateY(-3px);
        }

        /* Modal Specific Glass */
        .modal-glass {
            background: rgba(16, 19, 26, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid #A700FF;
            box-shadow: 0 0 40px rgba(167, 0, 255, 0.5);
        }

        .slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}

    