
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
          font-family: "Istok Web", sans-serif;
            overflow-x: hidden;
        }
        .bg-gradient {
           background: linear-gradient(180deg, #000000 0%, #1a2a4f 50%, #007bff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 2rem;
            position: relative;
        }

    
    

       
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            max-width: 800px;
            width: 100%;
            z-index: 10;
        }
        .rocket-outline{
        color: transparent;
        -webkit-text-stroke: 1.5px #007bff; 
        }

        .rocket-container {
            margin-bottom: 2rem;
            display: inline-block;
        }

        .rocket-float {
            color: #007bff; 
            animation: float 3s ease-in-out infinite;
        }
        .logo-container{
                    display: flex;
                    justify-content: center;
                    flex-direction: column-reverse;
                    align-items: normal;
            }
        
        .fa-solid.fa-rocket{font-size: 2.5rem;}

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
            line-height: 1.2;
        }

        p {
            font-size: 1.125rem;
            opacity: 0.8;
            margin-bottom: 3rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        @media (min-width: 768px) {
            h1 { font-size: 3.75rem; }
            p { font-size: 1.24rem; }
        }

      
        @media (max-width: 640px) {
            .glass-card {
                padding: 2rem 1rem;
            }
        }