* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #000;
            color: #fff;
            font-family: 'Arial', sans-serif;
            overflow: hidden;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            perspective: 1000px;
        }
        
        .intro-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeOut 3.5s forwards;
        }
        
        .loader {
            width: 100px;
            height: 100px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes fadeOut {
            0% { opacity: 1; }
            70% { opacity: 1; }
            100% { opacity: 0; visibility: hidden; }
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        

        
        
        
        .nebula {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, 
                                      rgba(0, 0, 0, 0) 0%, 
                                      rgba(32, 0, 64, 0.2) 40%,
                                      rgba(0, 32, 64, 0.1) 60%, 
                                      rgba(0, 0, 0, 0) 100%);
            opacity: 0.5;
            mix-blend-mode: screen;
            animation: nebulaFloat 120s infinite alternate;
        }
        
        @keyframes nebulaFloat {
            0% { transform: scale(1) translate(-5%, -5%); }
            50% { transform: scale(1.2) translate(5%, 5%); }
            100% { transform: scale(1) translate(-5%, -5%); }
        }
        
        .container {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 1200px;
            padding: 20px;
            transform-style: preserve-3d;
            animation: containerReveal 4s ease-out forwards;
            opacity: 0;
        }
        
        @keyframes containerReveal {
            0% { 
                opacity: 0;
                transform: translateZ(-400px); 
            }
            50% { 
                opacity: 0;
            }
            100% { 
                opacity: 1;
                transform: translateZ(0); 
            }
        }
        
        .globe-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto 60px;
            aspect-ratio: 1/1;
            transform-style: preserve-3d;
            animation: floatGlobe 8s ease-in-out infinite alternate;
        }
        
        @keyframes floatGlobe {
            0% { transform: translateY(-10px) rotateX(5deg); }
            100% { transform: translateY(10px) rotateX(-5deg); }
        }
        
        #globe {
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 50%;
            box-shadow: 0 0 60px rgba(0, 150, 255, 0.4);
        }
        
        .glow-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 110%;
            height: 110%;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            background: transparent;
            box-shadow: 0 0 80px 10px rgba(0, 150, 255, 0.3);
            animation: pulseRing 8s ease-in-out infinite alternate;
        }
        
        @keyframes pulseRing {
            0% { box-shadow: 0 0 80px 10px rgba(0, 150, 255, 0.3); }
            50% { box-shadow: 0 0 110px 20px rgba(0, 200, 255, 0.5); }
            100% { box-shadow: 0 0 80px 10px rgba(0, 150, 255, 0.3); }
        }
        
        .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            width: 130%;
            height: 130%;
        }
        
        .orbit:before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.7);
            animation: orbitSatellite 12s linear infinite;
        }
        
        @keyframes orbitSatellite {
            0% { transform: rotate(0deg) translateX(calc(65% - 7.5px)) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(calc(65% - 7.5px)) rotate(-360deg); }
        }
        
        .text-container {
            margin-top: 40px;
            position: relative;
            perspective: 800px;
        }
        
        .animated-text {
            font-size: 6rem;
            font-weight: bold;
            letter-spacing: 16px;
            text-transform: uppercase;
            background: linear-gradient(to right, #fff, #89CFF0, #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            animation: textReveal 6s ease forwards, textFloat 6s ease-in-out 6s infinite alternate;
            opacity: 0;
            transform: translateZ(0);
        }
        
        @keyframes textReveal {
            0% { 
                opacity: 0;
                transform: translateZ(-100px);
                filter: blur(10px);
            }
            60% { 
                opacity: 0.5;
                transform: translateZ(50px);
                filter: blur(2px);
            }
            100% { 
                opacity: 1;
                transform: translateZ(0);
                filter: blur(0);
            }
        }
        
        @keyframes textFloat {
            0% { transform: translateZ(0); }
            100% { transform: translateZ(30px); }
        }
        
        .text-shadow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-align: center;
            text-shadow: 0 0 20px rgba(0, 150, 255, 0.8);
            opacity: 0;
            animation: shadowReveal 6s ease forwards, shadowPulse 4s ease-in-out 6s infinite alternate;
        }
        
        @keyframes shadowReveal {
            0% { opacity: 0; }
            80% { opacity: 0; }
            100% { opacity: 1; }
        }
        
        @keyframes shadowPulse {
            0% { 
                text-shadow: 0 0 20px rgba(0, 150, 255, 0.8);
                opacity: 0.7;
            }
            50% { 
                text-shadow: 0 0 40px rgba(0, 150, 255, 0.8), 
                             0 0 60px rgba(0, 150, 255, 0.4),
                             0 0 80px rgba(0, 150, 255, 0.2);
                opacity: 1;
            }
            100% { 
                text-shadow: 0 0 20px rgba(0, 150, 255, 0.8);
                opacity: 0.7; 
            }
        }

        @media (max-width: 768px) {
            .globe-container {
                max-width: 300px;
                margin-bottom: 40px;
            }
            
            .animated-text {
                font-size: 2.5rem;
                letter-spacing: 6px;
            }
        }
        
        @media (max-width: 480px) {
            .globe-container {
                max-width: 220px;
                margin-bottom: 30px;
            }
            
            .animated-text {
                font-size: 2rem;
                letter-spacing: 4px;
            }
        }