/* NEXUS 3D Gaming Login - Advanced CSS */

/* FORCE INPUT VISIBILITY - Professional Solution */
input[type="text"], input[type="password"], input[type="email"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 9999 !important;
    background: linear-gradient(145deg, rgba(0, 20, 40, 0.95), rgba(0, 40, 80, 0.85)) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    color: #00ffff !important;
    width: 100% !important;
    height: 45px !important;
    padding: 12px 15px !important;
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 14px !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
    border-color: rgba(0, 255, 255, 0.8) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 255, 255, 0.4),
        0 0 25px rgba(0, 255, 255, 0.2) !important;
    background: linear-gradient(145deg, rgba(0, 30, 60, 0.95), rgba(0, 50, 100, 0.85)) !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background: #000;
    font-family: 'Orbitron', 'Share Tech Mono', monospace;
    perspective: 2000px;
    perspective-origin: center center;
}

/* Main 3D Scene Container */
.nexus-3d-scene {
    position: relative;
    width: 100vw;
    height: 100vh;
    transform-style: preserve-3d;
    background: radial-gradient(ellipse at center, #001122 0%, #000 70%);
    overflow: hidden;
}

/* Starfield Background with 3D Parallax - Moving Background */
.starfield-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    transform-style: preserve-3d;
    animation: backgroundMovement 25s ease-in-out infinite;
}

@keyframes backgroundMovement {
    0% { 
        transform: translateX(0) translateY(0) translateZ(0) scale(1) rotateZ(0deg);
        filter: brightness(1);
    }
    15% { 
        transform: translateX(-80px) translateY(-50px) translateZ(-20px) scale(1.08) rotateZ(-2deg);
        filter: brightness(1.1);
    }
    30% { 
        transform: translateX(-120px) translateY(-80px) translateZ(-40px) scale(1.15) rotateZ(-4deg);
        filter: brightness(1.2);
    }
    45% { 
        transform: translateX(-90px) translateY(-100px) translateZ(-30px) scale(1.12) rotateZ(-3deg);
        filter: brightness(1.15);
    }
    60% { 
        transform: translateX(-40px) translateY(-70px) translateZ(-10px) scale(1.06) rotateZ(-1deg);
        filter: brightness(1.08);
    }
    75% { 
        transform: translateX(20px) translateY(-30px) translateZ(10px) scale(1.02) rotateZ(1deg);
        filter: brightness(1.04);
    }
    90% { 
        transform: translateX(40px) translateY(-10px) translateZ(20px) scale(1.04) rotateZ(2deg);
        filter: brightness(1.06);
    }
    100% { 
        transform: translateX(0) translateY(0) translateZ(0) scale(1) rotateZ(0deg);
        filter: brightness(1);
    }
}

.stars-near, .stars-mid, .stars-far {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 40% 70%, #00ffff, transparent),
        radial-gradient(1px 1px at 90% 40%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #ff00ff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    animation: starfieldRotation 120s linear infinite;
}

.stars-near {
    transform: translateZ(-100px) scale(1.2);
    opacity: 0.8;
    animation-duration: 80s;
}

.stars-mid {
    transform: translateZ(-300px) scale(1.5);
    opacity: 0.6;
    animation-duration: 120s;
}

.stars-far {
    transform: translateZ(-500px) scale(2);
    opacity: 0.4;
    animation-duration: 200s;
}

.nebula-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 40%, rgba(0, 100, 255, 0.05) 0%, transparent 60%);
    transform: translateZ(-200px);
    animation: nebulaFlow 60s ease-in-out infinite alternate;
}

@keyframes starfieldRotation {
    from { transform: translateZ(var(--z-pos, 0)) scale(var(--scale, 1)) rotateZ(0deg); }
    to { transform: translateZ(var(--z-pos, 0)) scale(var(--scale, 1)) rotateZ(360deg); }
}

@keyframes nebulaFlow {
    0%, 100% { opacity: 0.3; transform: translateZ(-200px) scale(1); }
    50% { opacity: 0.6; transform: translateZ(-200px) scale(1.1); }
}

/* 3D Space Environment */
.space-environment-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.planet-earth-3d {
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    transform: translateZ(-800px) rotateX(15deg) rotateY(-30deg);
    transform-style: preserve-3d;
}

.earth-surface {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, #4a90e2 0%, #2c5282 40%, #1a365d  100%);
    background-image: 
        radial-gradient(ellipse at 20% 20%, rgba(34, 139, 34, 0.7) 0%, transparent 30%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 69, 19, 0.5) 0%, transparent 25%),
        radial-gradient(ellipse at 50% 80%, rgba(34, 139, 34, 0.6) 0%, transparent 35%);
    animation: earthRotation 200s linear infinite;
}

.earth-atmosphere {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 70%, rgba(135, 206, 250, 0.3) 80%, rgba(0, 191, 255, 0.2) 90%, transparent 100%);
    animation: atmosphereGlow 8s ease-in-out infinite alternate;
}

.earth-clouds {
    position: absolute;
    width: 105%;
    height: 105%;
    top: -2.5%;
    left: -2.5%;
    border-radius: 50%;
    background-image: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 35%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 30%);
    animation: cloudsRotation 150s linear infinite;
}

@keyframes earthRotation {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes atmosphereGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes cloudsRotation {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* 3D Rocket Container */
.rocket-3d-container {
    position: absolute;
    bottom: 10%;
    left: -20%;
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
    transform: translateZ(-50px) rotateY(-20deg) rotateX(5deg);
    opacity: 1;
    animation: rocketFloating 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 150, 255, 0.4));
}

@keyframes rocketFloating {
    0% { 
        transform: translateZ(-50px) rotateY(-20deg) rotateX(5deg) translateY(0) translateX(0);
    }
    15% { 
        transform: translateZ(-40px) rotateY(-18deg) rotateX(7deg) translateY(-8px) translateX(5px);
    }
    30% { 
        transform: translateZ(-30px) rotateY(-15deg) rotateX(10deg) translateY(-15px) translateX(12px);
    }
    45% { 
        transform: translateZ(-25px) rotateY(-12deg) rotateX(12deg) translateY(-20px) translateX(18px);
    }
    60% { 
        transform: translateZ(-20px) rotateY(-10deg) rotateX(15deg) translateY(-25px) translateX(25px);
    }
    75% { 
        transform: translateZ(-30px) rotateY(-15deg) rotateX(10deg) translateY(-18px) translateX(15px);
    }
    90% { 
        transform: translateZ(-40px) rotateY(-18deg) rotateX(8deg) translateY(-10px) translateX(8px);
    }
    100% { 
        transform: translateZ(-50px) rotateY(-20deg) rotateX(5deg) translateY(0) translateX(0);
    }
}

/* Removed entrance animation - rocket is immediately visible */

/* 3D Rocket Structure */
.rocket-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rocketHover 4s ease-in-out infinite;
}

@keyframes rocketHover {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    50% { transform: translateY(-20px) rotateZ(2deg); }
}

.rocket-hull {
    position: absolute;
    width: 80px;
    height: 300px;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    transform-style: preserve-3d;
}

.hull-main {
    position: absolute;
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 50%, #808080 100%);
    border-radius: 20px 20px 5px 5px;
    box-shadow: 
        inset -10px 0 20px rgba(0, 0, 0, 0.3),
        inset 10px 0 20px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateZ(0);
}

.hull-main::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 10px;
}

.hull-nose-cone {
    position: absolute;
    top: -15%;
    left: 20%;
    width: 60%;
    height: 30%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e  50%, #ff4757 100%);
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.6),
        inset -5px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateZ(10px);
}

.hull-windows {
    position: absolute;
    top: 25%;
    left: 15%;
    width: 70%;
    height: 30%;
    transform-style: preserve-3d;
}

.window {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(0, 100, 255, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 10px rgba(0, 255, 255, 0.5),
        0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateZ(5px);
}

.main-window {
    top: 20%;
    left: 25%;
    width: 50%;
    height: 40%;
}

.side-window {
    top: 70%;
    left: 35%;
    width: 30%;
    height: 25%;
}

/* Rocket Wings */
.rocket-wings {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    transform-style: preserve-3d;
}

.wing {
    position: absolute;
    background: linear-gradient(45deg, #c0392b 0%, #e74c3c 50%, #ff6b6b 100%);
    box-shadow: 
        0 0 15px rgba(231, 76, 60, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.wing-left {
    left: -30px;
    top: 0;
    width: 40px;
    height: 60px;
    clip-path: polygon(0% 0%, 100% 20%, 100% 80%, 0% 100%);
    transform: rotateY(-30deg) translateZ(-10px);
}

.wing-right {
    right: -30px;
    top: 0;
    width: 40px;
    height: 60px;
    clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 80%);
    transform: rotateY(30deg) translateZ(-10px);
}

.wing-bottom {
    bottom: -20px;
    left: 20%;
    width: 60%;
    height: 30px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    transform: rotateX(-15deg) translateZ(-5px);
}

/* Rocket Engines */
.rocket-engines {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    transform-style: preserve-3d;
}

.engine {
    position: absolute;
    transform-style: preserve-3d;
}

.main-engine {
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 60px;
}

.side-engine {
    bottom: 10px;
    width: 20%;
    height: 40px;
}

.side-engine.left {
    left: 5%;
    transform: rotateZ(-10deg);
}

.side-engine.right {
    right: 5%;
    transform: rotateZ(10deg);
}

.engine-nozzle {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #5d6d7e 100%);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(52, 73, 94, 0.4);
}

.engine-flame {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 40px;
    background: 
        radial-gradient(ellipse at center top, #ff6b35 0%, #f39c12 30%, #e67e22 60%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
    animation: engineFlame 0.1s ease-in-out infinite alternate;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

@keyframes engineFlame {
    0% { 
        transform: scaleY(0.6) scaleX(0.8) translateZ(0);
        opacity: 0.7;
        filter: brightness(1) hue-rotate(0deg);
    }
    25% { 
        transform: scaleY(1.1) scaleX(1.05) translateZ(-5px);
        opacity: 0.9;
        filter: brightness(1.3) hue-rotate(10deg);
    }
    50% { 
        transform: scaleY(1.4) scaleX(1.2) translateZ(-8px);
        opacity: 1;
        filter: brightness(1.5) hue-rotate(15deg);
    }
    75% { 
        transform: scaleY(1.2) scaleX(1.1) translateZ(-6px);
        opacity: 0.95;
        filter: brightness(1.4) hue-rotate(12deg);
    }
    100% { 
        transform: scaleY(0.9) scaleX(0.95) translateZ(-3px);
        opacity: 0.8;
        filter: brightness(1.1) hue-rotate(5deg);
    }
}

/* Tractor Beam Effect */
.tractor-beam-3d {
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 60%;
    height: 30%;
    transform-style: preserve-3d;
    pointer-events: none;
    z-index: 5;
}

.beam-core {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.1) 0%,
        rgba(0, 150, 255, 0.3) 25%,
        rgba(100, 200, 255, 0.4) 50%,
        rgba(0, 255, 255, 0.2) 75%,
        transparent 100%);
    clip-path: polygon(0% 100%, 15% 100%, 85% 0%, 100% 0%);
    animation: tractorBeamPulse 2s ease-in-out infinite;
    filter: blur(2px);
}

.beam-particles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 80%, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(100, 200, 255, 0.9), transparent),
        radial-gradient(3px 3px at 60% 60%, rgba(0, 150, 255, 0.7), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 30% 40%, rgba(100, 200, 255, 0.9), transparent);
    background-size: 50px 50px, 30px 30px, 70px 70px, 40px 40px, 25px 25px;
    animation: beamParticlesFlow 3s linear infinite;
    clip-path: polygon(0% 100%, 15% 100%, 85% 0%, 100% 0%);
}

.beam-energy-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 255, 0.1) 10px,
        rgba(0, 255, 255, 0.3) 20px,
        transparent 20px,
        transparent 30px
    );
    clip-path: polygon(0% 100%, 15% 100%, 85% 0%, 100% 0%);
    animation: energyWavesMove 1.5s linear infinite;
}

@keyframes tractorBeamPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scaleY(1) scaleX(1);
    }
    50% { 
        opacity: 1; 
        transform: scaleY(1.1) scaleX(1.05);
    }
}

@keyframes beamParticlesFlow {
    0% { 
        transform: translateY(0) rotateZ(0deg);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-100px) rotateZ(5deg);
        opacity: 0.4;
    }
}

@keyframes energyWavesMove {
    0% { 
        background-position: 0 0;
    }
    100% { 
        background-position: 40px 40px;
    }
}

/* Rocket Exhaust Effects */
.rocket-exhaust {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    transform-style: preserve-3d;
}

.exhaust-trail {
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 107, 53, 0.8) 0%,
        rgba(243, 156, 18, 0.6) 30%,
        rgba(230, 126, 34, 0.4) 60%,
        transparent 100%);
    border-radius: 50% 50% 10% 10% / 20% 20% 80% 80%;
    animation: exhaustTrail 0.2s ease-in-out infinite alternate;
    filter: blur(2px);
}

.exhaust-particles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.exhaust-particles::before,
.exhaust-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
    border-radius: 50%;
    animation: exhaustParticles 1s ease-out infinite;
}

.exhaust-particles::before {
    left: 30%;
    animation-delay: 0s;
}

.exhaust-particles::after {
    left: 60%;
    animation-delay: 0.5s;
}

@keyframes exhaustTrail {
    0% { transform: scaleY(0.9) scaleX(0.8); opacity: 0.7; }
    100% { transform: scaleY(1.1) scaleX(1.2); opacity: 1; }
}

@keyframes exhaustParticles {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Rocket Hatch */
.rocket-hatch {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 40px;
    height: 60px;
    transform-style: preserve-3d;
    animation: hatchOpening 2s ease-out 8s forwards;
}

.hatch-door {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 50%, #5d6d7e 100%);
    border-radius: 0 10px 10px 0;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(149, 165, 166, 0.4);
    transform-origin: left center;
    transform: rotateY(0deg);
    transition: transform 1s ease-out;
}

@keyframes hatchOpening {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-120deg); }
}

/* 3D Astronaut Container */
.astronaut-3d-container {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 200px;
    height: 300px;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateY(0deg);
    opacity: 1;
}

/* Removed entrance animation - astronaut is immediately visible */

/* 3D Astronaut Structure */
.astronaut-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: astronautFloat 6s ease-in-out infinite;
}

@keyframes astronautFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateZ(0deg);
    }
    33% { 
        transform: translateY(-10px) rotateX(2deg) rotateZ(1deg);
    }
    66% { 
        transform: translateY(-5px) rotateX(-1deg) rotateZ(-1deg);
    }
}

/* Astronaut Helmet - Mouse Tracking */
.astronaut-helmet {
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 35%;
    transform-style: preserve-3d;
    transition: none; /* Removed transition for instant response */
    transform: translateZ(120px) rotateX(0deg) rotateY(0deg) scale(1.2);
    filter: drop-shadow(0 0 25px rgba(100, 200, 255, 0.6));
    will-change: transform; /* Optimize for frequent transforms */
}

.astronaut-helmet.mouse-tracking {
    animation: none;
}

.astronaut-helmet.privacy-mode {
    animation: helmetPrivacyMode 0.5s ease-out forwards;
}

@keyframes helmetPrivacyMode {
    0% { 
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% { 
        transform: rotateX(-15deg) rotateY(-10deg);
    }
}

.helmet-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 25% 25%, 
            rgba(255, 255, 255, 0.95) 0%,
            rgba(240, 245, 255, 0.9) 20%,
            rgba(220, 230, 245, 0.85) 50%,
            rgba(180, 190, 210, 0.9) 80%,
            rgba(140, 150, 170, 0.95) 100%);
    box-shadow: 
        inset -20px -20px 40px rgba(0, 0, 0, 0.25),
        inset 15px 15px 30px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(100, 200, 255, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateZ(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.helmet-glass {
    position: absolute;
    top: 12%;
    left: 12%;
    width: 76%;
    height: 76%;
    border-radius: 50%;
    background: 
        radial-gradient(ellipse at 25% 25%, 
            rgba(0, 255, 255, 0.15) 0%,
            rgba(100, 200, 255, 0.2) 30%,
            rgba(0, 150, 255, 0.3) 60%,
            rgba(0, 100, 200, 0.4) 100%);
    box-shadow: 
        inset 0 0 25px rgba(0, 255, 255, 0.25),
        inset -8px -8px 20px rgba(0, 0, 0, 0.1),
        inset 8px 8px 15px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 200, 255, 0.5),
        0 0 40px rgba(0, 150, 255, 0.3);
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.helmet-glass.privacy-active {
    background: radial-gradient(ellipse at 30% 30%, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(50, 50, 50, 0.8) 40%,
        rgba(0, 0, 0, 0.95) 100%);
}

/* Helmet Technology Panel */
.helmet-tech-panel {
    position: absolute;
    top: 8%;
    right: 15%;
    width: 20px;
    height: 60px;
    background: 
        linear-gradient(135deg,
            rgba(80, 90, 100, 0.9) 0%,
            rgba(60, 70, 80, 0.85) 50%,
            rgba(40, 50, 60, 0.8) 100%);
    border-radius: 8px;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(100, 120, 140, 0.6);
}

.tech-light {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 6px auto;
    border-radius: 50%;
    background: 
        radial-gradient(circle,
            rgba(0, 255, 100, 0.9) 0%,
            rgba(0, 200, 80, 0.7) 70%,
            rgba(0, 150, 60, 0.5) 100%);
    box-shadow: 
        0 0 8px rgba(0, 255, 100, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: techPulse 2s ease-in-out infinite;
}

.tech-light:nth-child(2) {
    background: 
        radial-gradient(circle,
            rgba(0, 150, 255, 0.9) 0%,
            rgba(0, 120, 200, 0.7) 70%,
            rgba(0, 100, 150, 0.5) 100%);
    box-shadow: 
        0 0 8px rgba(0, 150, 255, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation-delay: 0.5s;
}

.tech-light:nth-child(3) {
    background: 
        radial-gradient(circle,
            rgba(255, 150, 0, 0.9) 0%,
            rgba(200, 120, 0, 0.7) 70%,
            rgba(150, 100, 0, 0.5) 100%);
    box-shadow: 
        0 0 8px rgba(255, 150, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation-delay: 1s;
}

@keyframes techPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Helmet Ventilation */
.helmet-ventilation {
    position: absolute;
    top: 20%;
    left: 12%;
    width: 30px;
    height: 40px;
}

.vent-line {
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: 
        linear-gradient(90deg,
            transparent 0%,
            rgba(120, 130, 140, 0.8) 20%,
            rgba(100, 110, 120, 0.9) 50%,
            rgba(80, 90, 100, 0.8) 80%,
            transparent 100%);
    border-radius: 2px;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        inset 0 0 2px rgba(255, 255, 255, 0.2);
}

/* HUD Overlay */
.hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hud-element {
    position: absolute;
    font-family: 'Orbitron', monospace;
    font-size: 8px;
    font-weight: 600;
    color: rgba(0, 255, 150, 0.8);
    text-shadow: 0 0 4px rgba(0, 255, 150, 0.6);
    animation: hudGlow 3s ease-in-out infinite;
}

.hud-element.top-left {
    top: 15%;
    left: 20%;
}

.hud-element.top-right {
    top: 15%;
    right: 20%;
}

@keyframes hudGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
}

.crosshair-line {
    position: absolute;
    background: rgba(0, 255, 150, 0.6);
    box-shadow: 0 0 4px rgba(0, 255, 150, 0.4);
}

.crosshair-line.horizontal {
    top: 50%;
    left: 20%;
    width: 60%;
    height: 1px;
    transform: translateY(-50%);
}

.crosshair-line.vertical {
    top: 20%;
    left: 50%;
    width: 1px;
    height: 60%;
    transform: translateX(-50%);
}

/* Astronaut Face & Eyes */
.astronaut-face {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 60%;
    height: 50%;
    transform: translateX(-50%) translateZ(15px);
    z-index: 2;
}

.eye-container {
    position: absolute;
    width: 25px;
    height: 18px;
    top: 20%;
}

.left-eye-container {
    left: 25%;
}

.right-eye-container {
    right: 25%;
}

.eye {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
    background: 
        radial-gradient(ellipse at 50% 40%, 
            rgba(255, 255, 255, 0.95) 0%,
            rgba(245, 248, 255, 0.9) 80%,
            rgba(220, 225, 235, 0.85) 100%);
    overflow: hidden;
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 -2px 4px rgba(255, 255, 255, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(200, 200, 200, 0.3);
}

.eyeball {
    position: absolute;
    width: 75%;
    height: 75%;
    top: 12%;
    left: 12%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 35% 30%, 
            #6fa8dc 0%, 
            #4285f4 30%,
            #1a73e8 60%,
            #1557b0 90%);
    transition: transform 0.1s ease-out;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.2),
        0 0 8px rgba(26, 115, 232, 0.3);
}

.pupil {
    position: absolute;
    width: 45%;
    height: 45%;
    top: 27%;
    left: 27%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 35% 25%, 
            #000 0%, 
            #1a1a1a  60%,
            #000 100%);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        0 0 6px rgba(0, 0, 0, 0.5);
}

.pupil::before {
    content: '';
    position: absolute;
    width: 25%;
    height: 25%;
    top: 15%;
    left: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.pupil::after {
    content: '';
    position: absolute;
    width: 12%;
    height: 12%;
    top: 45%;
    right: 25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

.iris {
    position: absolute;
    width: 85%;
    height: 85%;
    top: 7%;
    left: 7%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 35% 30%, 
            rgba(111, 168, 220, 0.4) 0%, 
            rgba(66, 133, 244, 0.6) 40%,
            rgba(26, 115, 232, 0.8) 70%,
            rgba(21, 87, 176, 0.9) 100%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.eyelid {
    position: absolute;
    width: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(200, 210, 220, 0.95) 0%, 
            rgba(180, 190, 200, 0.9) 50%,
            rgba(160, 170, 180, 0.85) 100%);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(140, 150, 160, 0.4);
}

.top-eyelid {
    top: 0;
    height: 0%;
    transform-origin: bottom;
    border-radius: 50px 50px 30px 30px;
}

.bottom-eyelid {
    bottom: 0;
    height: 0%;
    transform-origin: top;
    border-radius: 30px 30px 50px 50px;
}

.eyelid.closed .top-eyelid {
    height: 60%;
}

.eyelid.closed .bottom-eyelid {
    height: 50%;
}

/* Realistic Eyelashes */
.eyelashes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.upper-lashes {
    top: -3px;
}

.lower-lashes {
    bottom: -2px;
}

.lash {
    position: absolute;
    width: 1px;
    background: 
        linear-gradient(to bottom,
            rgba(80, 80, 80, 0.9) 0%,
            rgba(40, 40, 40, 0.8) 50%,
            rgba(20, 20, 20, 0.6) 100%);
    transform-origin: bottom;
    border-radius: 0.5px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.upper-lashes .lash:nth-child(1) {
    left: 15%;
    height: 8px;
    transform: rotate(-15deg);
}

.upper-lashes .lash:nth-child(2) {
    left: 30%;
    height: 12px;
    transform: rotate(-5deg);
}

.upper-lashes .lash:nth-child(3) {
    left: 50%;
    height: 15px;
    transform: rotate(0deg);
}

.upper-lashes .lash:nth-child(4) {
    left: 70%;
    height: 12px;
    transform: rotate(5deg);
}

.upper-lashes .lash:nth-child(5) {
    right: 15%;
    height: 8px;
    transform: rotate(15deg);
}

.lower-lashes .lash:nth-child(1) {
    left: 25%;
    height: 4px;
    transform: rotate(10deg);
}

.lower-lashes .lash:nth-child(2) {
    left: 50%;
    height: 5px;
    transform: rotate(0deg);
}

.lower-lashes .lash:nth-child(3) {
    right: 25%;
    height: 4px;
    transform: rotate(-10deg);
}

/* Realistic Eyebrows */
.eyebrow {
    position: absolute;
    width: 45px;
    height: 8px;
    top: -15px;
    background: 
        linear-gradient(135deg,
            rgba(60, 60, 60, 0.9) 0%,
            rgba(40, 40, 40, 0.85) 30%,
            rgba(80, 80, 80, 0.8) 60%,
            rgba(20, 20, 20, 0.75) 100%);
    border-radius: 4px 8px 2px 6px;
    transform-origin: center;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.eyebrow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg,
            transparent 0px,
            rgba(30, 30, 30, 0.3) 1px,
            transparent 2px,
            rgba(50, 50, 50, 0.2) 3px);
    border-radius: inherit;
}

.left-eyebrow {
    left: 25px;
    transform: rotate(-8deg) scaleX(1.1);
}

.right-eyebrow {
    right: 25px;
    transform: rotate(8deg) scaleX(1.1);
}

.nose {
    position: absolute;
    top: 52%;
    left: 50%;
    width: 12px;
    height: 16px;
    transform: translateX(-50%);
    background: 
        linear-gradient(135deg, 
            rgba(220, 200, 180, 0.9) 0%, 
            rgba(200, 180, 160, 0.85) 40%,
            rgba(180, 160, 140, 0.8) 100%);
    border-radius: 6px 6px 8px 8px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(160, 140, 120, 0.4);
}

.nose::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 25%;
    width: 2px;
    height: 4px;
    background: rgba(100, 80, 60, 0.6);
    border-radius: 50%;
    box-shadow: 6px 0 0 rgba(100, 80, 60, 0.6);
}

.mouth {
    position: absolute;
    top: 72%;
    left: 50%;
    width: 24px;
    height: 10px;
    transform: translateX(-50%);
    background: 
        linear-gradient(135deg, 
            rgba(180, 100, 80, 0.9) 0%, 
            rgba(160, 80, 60, 0.85) 50%,
            rgba(140, 60, 40, 0.8) 100%);
    border-radius: 12px 12px 8px 8px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(120, 40, 20, 0.6);
}

.mouth::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: rgba(100, 20, 10, 0.4);
    border-radius: 50%;
}

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    top: -80%;
    left: 120%;
    width: 200px;
    min-height: 60px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 255, 0.9) 100%);
    border: 2px solid rgba(0, 150, 255, 0.6);
    border-radius: 15px;
    padding: 10px 15px;
    opacity: 0;
    transform: scale(0.8) translateZ(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.speech-bubble.show {
    opacity: 1;
    transform: scale(1) translateZ(20px);
}

.bubble-content p {
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #2c3e50;
    line-height: 1.4;
    text-align: center;
}

.bubble-tail {
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 150, 255, 0.6);
}

.bubble-tail::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.95);
}

/* Privacy Hand Cover */
.helmet-privacy-cover {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: linear-gradient(135deg, #f8c471 0%, #f39c12 50%, #d68910 100%);
    border-radius: 50% 30% 40% 60%;
    opacity: 0;
    transform: translateZ(5px) rotateZ(-20deg) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    pointer-events: none;
}

.helmet-privacy-cover.active {
    opacity: 0.9;
    transform: translateZ(5px) rotateZ(-10deg) scale(1.1);
}

.helmet-reflection {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 40%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    border-radius: 50% 30% 40% 20%;
    transform: rotateZ(-20deg);
    animation: helmetReflection 4s ease-in-out infinite;
}

@keyframes helmetReflection {
    0%, 100% { opacity: 0.6; transform: rotateZ(-20deg) scale(1); }
    50% { opacity: 0.9; transform: rotateZ(-15deg) scale(1.1); }
}

.helmet-glare {
    position: absolute;
    top: 25%;
    right: 20%;
    width: 15%;
    height: 20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: helmetGlare 3s ease-in-out infinite;
}

@keyframes helmetGlare {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.helmet-collar {
    position: absolute;
    bottom: -10%;
    left: 5%;
    width: 90%;
    height: 25%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #5d6d7e 100%);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(52, 73, 94, 0.4);
    transform: translateZ(-5px);
}

/* Helmet Tubes */
.helmet-tubes {
    position: absolute;
    bottom: 10%;
    width: 100%;
    height: 30%;
    transform-style: preserve-3d;
}

.tube {
    position: absolute;
    width: 12px;
    height: 60%;
    background: linear-gradient(45deg, #7f8c8d 0%, #95a5a6 50%, #bdc3c7 100%);
    border-radius: 6px;
    box-shadow: 
        inset 0 0 5px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(127, 140, 141, 0.4);
}

.tube.left {
    left: 10%;
    transform: rotateZ(-15deg) rotateY(-20deg) translateZ(5px);
}

.tube.right {
    right: 10%;
    transform: rotateZ(15deg) rotateY(20deg) translateZ(5px);
}

/* Astronaut Body */
.astronaut-body {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 70%;
    height: 50%;
    transform-style: preserve-3d;
}

.body-torso {
    position: relative;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 50%, #95a5a6 100%);
    border-radius: 20px 20px 10px 10px;
    box-shadow: 
        inset -10px 0 20px rgba(0, 0, 0, 0.2),
        inset 10px 0 15px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(236, 240, 241, 0.3);
    transform: translateZ(0);
}

.chest-panel {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 50%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
    border-radius: 10px;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(44, 62, 80, 0.4);
    transform: translateZ(5px);
}

.panel-display {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 40%;
    background: linear-gradient(45deg, #0f4c75 0%, #3282b8 50%, #0f4c75 100%);
    border-radius: 5px;
    box-shadow: 
        inset 0 0 10px rgba(15, 76, 117, 0.5),
        0 0 15px rgba(50, 130, 184, 0.6);
    animation: panelGlow 2s ease-in-out infinite alternate;
}

@keyframes panelGlow {
    0% { box-shadow: inset 0 0 10px rgba(15, 76, 117, 0.5), 0 0 15px rgba(50, 130, 184, 0.6); }
    100% { box-shadow: inset 0 0 15px rgba(15, 76, 117, 0.8), 0 0 25px rgba(50, 130, 184, 0.9); }
}

.panel-buttons {
    position: absolute;
    bottom: 15%;
    left: 20%;
    width: 60%;
    height: 25%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #e74c3c 0%, #c0392b 70%);
    box-shadow: 
        0 0 8px rgba(231, 76, 60, 0.6),
        inset 0 0 4px rgba(255, 255, 255, 0.3);
    animation: buttonBlink 3s ease-in-out infinite;
}

.button:nth-child(2) { animation-delay: 1s; }
.button:nth-child(3) { animation-delay: 2s; }

@keyframes buttonBlink {
    0%, 90%, 100% { opacity: 0.6; }
    5%, 85% { opacity: 1; }
}

.life-support-unit {
    position: absolute;
    top: 70%;
    left: 10%;
    width: 80%;
    height: 25%;
    background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 50%, #bdc3c7 100%);
    border-radius: 10px;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.2),
        0 0 12px rgba(127, 140, 141, 0.4);
    transform: translateZ(-2px);
}

/* Astronaut Arms */
.astronaut-arms {
    position: absolute;
    top: 35%;
    width: 100%;
    height: 40%;
    transform-style: preserve-3d;
}

.arm {
    position: absolute;
    width: 25%;
    height: 80%;
    transform-style: preserve-3d;
}

.arm-left {
    left: -15%;
    transform: rotateZ(-20deg) rotateY(-10deg);
}

.arm-right {
    right: -15%;
    transform: rotateZ(20deg) rotateY(10deg);
    animation: armFloat 4s ease-in-out infinite;
}

.throwing-arm {
    animation: throwingPrep 1s ease-in-out 12s forwards, 
               throwingMotion 0.8s ease-out 13s forwards;
}

@keyframes armFloat {
    0%, 100% { transform: rotateZ(20deg) rotateY(10deg) translateY(0); }
    50% { transform: rotateZ(25deg) rotateY(15deg) translateY(-5px); }
}

@keyframes throwingPrep {
    0% { transform: rotateZ(20deg) rotateY(10deg); }
    100% { transform: rotateZ(-10deg) rotateY(-20deg) rotateX(-20deg); }
}

@keyframes throwingMotion {
    0% { transform: rotateZ(-10deg) rotateY(-20deg) rotateX(-20deg); }
    50% { transform: rotateZ(-45deg) rotateY(-40deg) rotateX(-40deg); }
    100% { transform: rotateZ(30deg) rotateY(20deg) rotateX(10deg); }
}

.shoulder-joint, .elbow-joint {
    position: absolute;
    width: 100%;
    height: 25%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(52, 73, 94, 0.4);
}

.shoulder-joint {
    top: 0;
    transform: translateZ(2px);
}

.elbow-joint {
    top: 40%;
    width: 80%;
    left: 10%;
    transform: translateZ(1px);
}

.upper-arm, .forearm {
    position: absolute;
    width: 90%;
    left: 5%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 50%, #95a5a6 100%);
    border-radius: 15px;
    box-shadow: 
        inset -5px 0 10px rgba(0, 0, 0, 0.2),
        inset 5px 0 8px rgba(255, 255, 255, 0.2);
}

.upper-arm {
    top: 15%;
    height: 35%;
}

.forearm {
    top: 55%;
    height: 30%;
}

.hand {
    position: absolute;
    bottom: 5%;
    left: 20%;
    width: 60%;
    height: 20%;
    background: linear-gradient(135deg, #f8c471 0%, #f39c12 50%, #d68910 100%);
    border-radius: 10px;
    box-shadow: 
        inset 0 0 5px rgba(0, 0, 0, 0.2),
        0 0 8px rgba(248, 196, 113, 0.4);
    transform: translateZ(3px);
}

.throwing-hand .fingers {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: linear-gradient(45deg, #f8c471 0%, #f39c12 100%);
    border-radius: 5px 15px 15px 5px;
    transform: rotateZ(-30deg);
}

/* Astronaut Legs */
.astronaut-legs {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 25%;
    transform-style: preserve-3d;
}

.leg {
    position: absolute;
    width: 40%;
    height: 100%;
    transform-style: preserve-3d;
}

.leg-left {
    left: 0;
    transform: rotateY(-5deg);
}

.leg-right {
    right: 0;
    transform: rotateY(5deg);
}

.thigh, .shin {
    position: absolute;
    width: 100%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 50%, #95a5a6 100%);
    border-radius: 10px;
    box-shadow: 
        inset -3px 0 6px rgba(0, 0, 0, 0.2),
        inset 3px 0 4px rgba(255, 255, 255, 0.2);
}

.thigh {
    top: 0;
    height: 50%;
}

.shin {
    bottom: 20%;
    height: 40%;
}

.knee-joint {
    position: absolute;
    top: 45%;
    left: 20%;
    width: 60%;
    height: 15%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 5px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(52, 73, 94, 0.4);
}

.boot {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 25%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 5px 5px 15px 10px;
    box-shadow: 
        inset 0 0 5px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(44, 62, 80, 0.4);
}

/* Astronaut Jetpack */
.astronaut-jetpack {
    position: absolute;
    top: 35%;
    left: -10%;
    width: 40%;
    height: 50%;
    transform: rotateY(10deg) translateZ(-15px);
    transform-style: preserve-3d;
}

.jetpack-main {
    position: relative;
    width: 100%;
    height: 80%;
    transform-style: preserve-3d;
}

.fuel-tank {
    position: absolute;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 50%, #bdc3c7 100%);
    border-radius: 15px;
    box-shadow: 
        inset -5px 0 10px rgba(0, 0, 0, 0.2),
        inset 5px 0 8px rgba(255, 255, 255, 0.2),
        0 0 15px rgba(127, 140, 141, 0.3);
}

.fuel-tank.left {
    left: 0;
    transform: rotateY(-10deg);
}

.fuel-tank.right {
    right: 0;
    transform: rotateY(10deg);
}

.control-unit {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 10px;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(44, 62, 80, 0.4);
    transform: translateZ(5px);
}

.jetpack-thrusters {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    transform-style: preserve-3d;
}

.thruster {
    position: absolute;
    width: 25%;
    height: 100%;
    transform-style: preserve-3d;
}

.thruster-left {
    left: 5%;
    transform: rotateY(-15deg);
}

.thruster-right {
    right: 5%;
    transform: rotateY(15deg);
}

.thruster-main {
    left: 37.5%;
    transform: translateZ(-5px);
}

.nozzle {
    position: absolute;
    bottom: 20%;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(52, 73, 94, 0.3);
}

.thruster .flame {
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 30px;
    background: radial-gradient(ellipse at center top, #3498db 0%, #2980b9 50%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
    animation: jetpackFlame 0.15s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
}

@keyframes jetpackFlame {
    0% { 
        transform: scaleY(0.7) scaleX(0.8);
        opacity: 0.7;
    }
    100% { 
        transform: scaleY(1.3) scaleX(1.2);
        opacity: 1;
    }
}

/* 3D Login Paper Container - Robot Compatible */
.login-paper-3d-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 750px !important; /* Increased width for robot */
    height: 650px !important; /* Increased height for robot */
    transform: translate(-50%, -50%) translateZ(0) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 1;
    /* Remove complex animations for stable display */
    animation: paperFloating 8s ease-in-out infinite;
    overflow: visible !important;
    z-index: 10;
}

/* Gentle paper floating animation */
@keyframes paperFloating {
    0%, 100% {
        transform: translate(-50%, -50%) translateZ(0) rotateX(0deg) rotateY(0deg) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateZ(10px) rotateX(2deg) rotateY(1deg) translateY(-5px);
    }
}

@keyframes rocketPullingPaper {
    0%, 100% {
        transform: translate(-50%, -50%) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
        filter: blur(0px) brightness(1);
        box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
    }
    25% {
        transform: translate(-48%, -49%) translateZ(-20px) rotateX(2deg) rotateY(-5deg) rotateZ(-1deg) scale(1.01);
        filter: blur(0.3px) brightness(1.05);
        box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
    }
    50% {
        transform: translate(-46%, -48%) translateZ(-35px) rotateX(4deg) rotateY(-10deg) rotateZ(-3deg) scale(1.02);
        filter: blur(0.8px) brightness(1.1);
        box-shadow: 0 0 35px rgba(0, 150, 255, 0.5);
    }
    75% {
        transform: translate(-48%, -49%) translateZ(-20px) rotateX(2deg) rotateY(-5deg) rotateZ(-1deg) scale(1.01);
        filter: blur(0.3px) brightness(1.05);
        box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
    }
}

/* Removed entrance animation - paper is immediately ready for interaction */

/* 3D Paper Physics Wrapper - Subtle Animation */
.paper-physics-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: paperFloat 12s ease-in-out infinite;
}

@keyframes paperFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    33% { 
        transform: translateY(-8px) rotateX(1deg) rotateY(1deg) rotateZ(0.5deg);
    }
    66% { 
        transform: translateY(-5px) rotateX(-0.5deg) rotateY(-0.5deg) rotateZ(-0.5deg);
    }
}

/* Paper Faces - Cleaner Design */
.paper-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.paper-front {
    background: 
        linear-gradient(135deg, 
            rgba(10, 15, 30, 0.92) 0%,
            rgba(15, 25, 45, 0.88) 50%,
            rgba(20, 35, 60, 0.85) 100%
        );
    border: 2px solid rgba(0, 255, 255, 0.4);
    transform: translateZ(15px);
}

.paper-back {
    background: 
        linear-gradient(135deg, 
            rgba(30, 10, 15, 0.92) 0%,
            rgba(45, 15, 25, 0.88) 50%,
            rgba(60, 20, 35, 0.85) 100%
        );
    border: 2px solid rgba(255, 100, 0, 0.4);
    transform: rotateY(180deg) translateZ(15px);
}

/* Paper Surface Content - Robot Compatible */
.paper-surface {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; /* Center content horizontally */
    transform: translateZ(8px);
    overflow: visible !important; /* Allow robot to show outside */
}

/* NEXUS Header - Cleaner Design */
.nexus-header {
    text-align: center;
    margin-bottom: 20px;
}

.nexus-logo-3d {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    transform-style: preserve-3d;
}

.logo-outer-ring, .logo-inner-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: logoRotation 15s linear infinite;
}

.logo-outer-ring {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: rgba(0, 255, 255, 0.7);
    animation-direction: normal;
}

.logo-inner-ring {
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    border-color: rgba(255, 0, 255, 0.5);
    animation-direction: reverse;
    animation-duration: 12s;
}

.logo-core {
    position: absolute;
    top: 35%;
    left: 35%;
    width: 30%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateZ(10px);
}

.logo-core i {
    font-size: 24px;
    color: #00ffff;
    animation: coreGlow 2s ease-in-out infinite alternate;
}

@keyframes logoRotation {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}

@keyframes coreGlow {
    0% { 
        color: #00ffff; 
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    100% { 
        color: #ffffff; 
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    }
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.logo-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #00ffff 0%, transparent 70%);
    border-radius: 50%;
    animation: particleOrbit 6s linear infinite;
}

.logo-particles .particle:nth-child(1) {
    animation-delay: 0s;
    top: 10%;
    left: 50%;
}

.logo-particles .particle:nth-child(2) {
    animation-delay: 2s;
    top: 50%;
    left: 90%;
}

.logo-particles .particle:nth-child(3) {
    animation-delay: 4s;
    top: 90%;
    left: 50%;
}

@keyframes particleOrbit {
    from { 
        transform: rotate(0deg) translateX(50px) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    to { 
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
        opacity: 0;
    }
}

.nexus-title {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 0.6),
        0 0 25px rgba(0, 255, 255, 0.3);
    margin: 0;
    letter-spacing: 1px;
}

.access-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: rgba(0, 255, 255, 0.7);
    margin: 5px 0 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.header-line {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.8) 50%, transparent 100%);
    margin: 15px auto 0;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 20px rgba(0, 255, 255, 0.3),
            0 0 30px rgba(0, 255, 255, 0.2);
    }
    100% { 
        text-shadow: 
            0 0 15px rgba(0, 255, 255, 0.8),
            0 0 25px rgba(0, 255, 255, 0.5),
            0 0 35px rgba(0, 255, 255, 0.3);
    }
}

@keyframes lineGlow {
    0% { opacity: 0.6; box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
    100% { opacity: 1; box-shadow: 0 0 15px rgba(0, 255, 255, 0.6); }
}

/* 3D Login Interface - Professional Layout with Robot */
.login-interface-3d, .recovery-interface-3d {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important; /* Center align all form elements */
    gap: 20px !important;
    padding: 20px 40px !important; /* Increase horizontal padding for better centering */
    margin-top: 20px !important;
    width: 100% !important;
    max-width: 400px !important; /* Slightly increase max width */
    box-sizing: border-box !important;
    min-height: 280px !important;
    z-index: 100 !important;
    position: relative !important;
}

.form-field-3d {
    position: relative !important;
    transform-style: preserve-3d !important;
    width: 100% !important;
    max-width: 320px !important; /* Limit field width for better centering */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Center field content */
    margin-bottom: 15px !important;
    z-index: 105 !important;
}

.field-label {
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 12px !important;
    color: rgba(0, 255, 255, 1) !important;
    margin-bottom: 8px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4) !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important; /* Center align labels */
    z-index: 110 !important;
    position: relative !important;
}

/* Field Container - Clean & Professional */
.field-container {
    position: relative;
    width: 100%;
    max-width: 300px; /* Limit container width */
    height: auto;
    margin-bottom: 5px;
    transform-style: preserve-3d;
    z-index: 10;
}

/* Field Icon - Trendy & Visible */
.field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%) translateZ(10px);
    color: #00ffff;
    font-size: 18px;
    z-index: 15;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.field-container:focus-within .field-icon {
    color: #ffffff;
    transform: translateY(-50%) translateZ(15px) scale(1.2);
    text-shadow: 0 0 15px rgba(0, 255, 255, 1);
}

/* Input Field - Maximum Visibility & Professional Style */
.field-input-3d {
    width: 100% !important;
    height: 50px !important;
    padding: 15px 20px 15px 50px !important;
    background: linear-gradient(135deg, 
        rgba(0, 20, 40, 0.95) 0%,
        rgba(0, 30, 60, 0.9) 50%,
        rgba(0, 15, 35, 0.95) 100%) !important;
    border: 3px solid #00ffff !important;
    border-radius: 15px !important;
    color: #ffffff !important;
    font-family: 'Orbitron', monospace !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    outline: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateZ(5px) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 2px 10px rgba(0, 255, 255, 0.1) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 12 !important;
}

/* Placeholder Styling - Professional Look */
.field-input-3d::placeholder {
    color: rgba(0, 255, 255, 0.7) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
}

/* Focus State - Maximum Impact */
.field-input-3d:focus {
    border-color: #ffffff !important;
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.4),
        inset 0 2px 20px rgba(0, 255, 255, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.5) !important;
    transform: translateZ(10px) scale(1.02) !important;
    background: linear-gradient(135deg, 
        rgba(0, 30, 60, 0.98) 0%,
        rgba(0, 50, 100, 0.95) 50%,
        rgba(0, 25, 50, 0.98) 100%) !important;
}

/* Enhanced Border & Glow Effects */
.field-border-3d {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid transparent;
    border-radius: 18px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    background-size: 300% 300%;
    animation: borderFlow 2s ease-in-out infinite;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateZ(2px);
    z-index: 8;
}

.field-input-3d:focus + .field-border-3d {
    opacity: 0.8;
    animation-duration: 1s;
}

.field-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 255, 255, 0.3) 0%, 
        rgba(0, 255, 255, 0.1) 50%,
        transparent 70%);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateZ(1px);
    z-index: 7;
}

.field-input-3d:focus ~ .field-glow {
    opacity: 1;
    transform: translateZ(1px) scale(1.1);
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 3D Action Buttons - Improved Design */
.action-buttons-3d {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center buttons horizontally */
    gap: 12px;
    margin-top: 25px;
    width: 100%;
}

.nexus-button-3d {
    position: relative;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 280px; /* Limit button width for better appearance */
}

.nexus-button-3d:hover {
    transform: translateZ(8px) scale(1.02);
}

.nexus-button-3d:active {
    transform: translateZ(12px) scale(0.98);
}

.button-surface {
    position: relative;
    padding: 14px 28px;
    background: linear-gradient(135deg, 
        rgba(0, 120, 255, 0.9) 0%,
        rgba(0, 160, 255, 0.95) 50%,
        rgba(0, 200, 255, 0.9) 100%);
    border: 1px solid rgba(0, 255, 255, 0.7);
    border-radius: 10px;
    transform: translateZ(6px);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.secondary-button .button-surface {
    background: linear-gradient(135deg, 
        rgba(120, 0, 120, 0.9) 0%,
        rgba(160, 0, 160, 0.95) 50%,
        rgba(200, 0, 200, 0.9) 100%);
    border-color: rgba(255, 0, 255, 0.7);
}

.button-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.button-content i {
    font-size: 16px;
}

.button-content span {
    font-family: 'Orbitron', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.button-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateZ(1px);
}

.nexus-button-3d:hover .button-glow-effect {
    opacity: 1;
}

.button-hologram {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateZ(8px);
}

.primary-button:hover .button-hologram {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.secondary-button:hover .button-hologram {
    opacity: 1;
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

/* System Status Display - Cleaner Look */
.system-status-3d {
    margin-top: 15px;
    padding: 12px 16px;
    background: linear-gradient(135deg, 
        rgba(0, 10, 25, 0.7) 0%,
        rgba(5, 15, 35, 0.5) 100%);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 10px;
    transform: translateZ(4px);
    backdrop-filter: blur(5px);
}

.status-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
}

.status-line:last-child {
    margin-bottom: 0;
}

.status-label {
    color: rgba(0, 255, 255, 0.7);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.status-value {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px currentColor;
}

.status-value.ready {
    color: #00ff00;
}

.status-value.pending {
    color: #ffff00;
    animation: statusBlink 1s ease-in-out infinite alternate;
}

.status-value.standby {
    color: #ff8800;
}

.status-value.offline {
    color: #ff4444;
}

.status-value.green {
    color: #00ff88;
}

@keyframes statusBlink {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Paper Flip Animation */
.login-paper-3d.flipping {
    animation: paperFlip 1s ease-in-out forwards;
}

@keyframes paperFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg) scale(1.1); }
    100% { transform: rotateY(180deg); }
}

.login-paper-3d.flipping-back {
    animation: paperFlipBack 1s ease-in-out forwards;
}

@keyframes paperFlipBack {
    0% { transform: rotateY(180deg); }
    50% { transform: rotateY(90deg) scale(1.1); }
    100% { transform: rotateY(0deg); }
}

/* Success Launch Sequence */
.launch-success-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateZ(-100px);
    opacity: 0;
    pointer-events: none;
    transition: all 1s ease-out;
}

.launch-success-3d.active {
    opacity: 1;
    pointer-events: all;
    transform: translateZ(100px);
}

.success-environment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.warp-tunnel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
}

.tunnel-ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: warpTunnel 2s linear infinite;
}

.tunnel-ring:nth-child(1) { 
    width: 100px; height: 100px; 
    top: 50%; left: 50%; 
    margin: -50px 0 0 -50px;
    animation-delay: 0s;
}

.tunnel-ring:nth-child(2) { 
    width: 200px; height: 200px; 
    top: 50%; left: 50%; 
    margin: -100px 0 0 -100px;
    animation-delay: 0.4s;
}

.tunnel-ring:nth-child(3) { 
    width: 300px; height: 300px; 
    top: 50%; left: 50%; 
    margin: -150px 0 0 -150px;
    animation-delay: 0.8s;
}

.tunnel-ring:nth-child(4) { 
    width: 400px; height: 400px; 
    top: 50%; left: 50%; 
    margin: -200px 0 0 -200px;
    animation-delay: 1.2s;
}

.tunnel-ring:nth-child(5) { 
    width: 500px; height: 500px; 
    top: 50%; left: 50%; 
    margin: -250px 0 0 -250px;
    animation-delay: 1.6s;
}

@keyframes warpTunnel {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.success-content-3d {
    position: relative;
    z-index: 10;
    text-align: center;
    transform-style: preserve-3d;
}

.success-orb {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    transform-style: preserve-3d;
}

.orb-core {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, #00ffff 0%, #0088ff 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: orbPulse 2s ease-in-out infinite alternate;
}

.orb-energy-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.energy-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: energyRotation 3s linear infinite;
}

.ring-1 {
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-color: rgba(0, 255, 255, 0.6);
    animation-direction: normal;
}

.ring-2 {
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    border-color: rgba(255, 255, 0, 0.6);
    animation-direction: reverse;
    animation-duration: 2s;
}

.ring-3 {
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    border-color: rgba(255, 0, 255, 0.6);
    animation-direction: normal;
    animation-duration: 4s;
}

@keyframes orbPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes energyRotation {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}

.success-text-3d {
    color: #ffffff;
    text-align: center;
}

.launch-title {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.4);
    margin-bottom: 10px;
    animation: successTitleGlow 3s ease-in-out infinite alternate;
}

.welcome-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.system-message {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: rgba(0, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes successTitleGlow {
    0% { 
        text-shadow: 
            0 0 20px rgba(0, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(0, 255, 255, 1),
            0 0 60px rgba(0, 255, 255, 0.6);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .login-paper-3d-container {
        width: 90vw;
        height: 70vh;
        max-width: 400px;
    }
    
    .nexus-title {
        font-size: 24px;
    }
    
    .launch-title {
        font-size: 32px;
    }
    
    .speech-bubble {
        width: 150px;
        min-height: 50px;
        font-size: 10px;
        left: 80%;
    }
}

/* ================================
   LOGO ROBOT HEAD INTERACTIVE
   ================================ */

/* Logo Robot Head Container */
.logo-robot-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: logoRobotPulse 3s ease-in-out infinite;
}

@keyframes logoRobotPulse {
    0%, 100% { 
        transform: scale(1) rotateY(0deg);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05) rotateY(5deg);
        filter: brightness(1.1);
    }
}

/* Logo Robot Head */
.logo-robot-head {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a2332, #2a3442);
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: headBob 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(0, 255, 255, 0.4);
}

.logo-robot-head:hover {
    transform: scale(1.1);
    box-shadow: 
        inset 0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 35px rgba(0, 255, 255, 0.7);
}

/* Logo Robot Eyes */
.logo-robot-eyes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 18px;
    margin-bottom: 8px;
}

.logo-robot-eye {
    position: relative;
    width: 18px;
    height: 18px;
    animation: logoRobotBlink 4s ease-in-out infinite;
}

@keyframes logoRobotBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.logo-eye-socket {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #000 40%, #1a2332 80%);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00ffff 30%, #0088ff 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    animation: logoEyeGlow 2s ease-in-out infinite;
}

@keyframes logoEyeGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.6);
    }
    50% { 
        box-shadow: 0 0 10px rgba(0, 255, 255, 1);
    }
}

/* Logo Robot Mouth */
.logo-robot-mouth {
    width: 25px;
    height: 12px;
    margin-top: 5px;
}

.logo-mouth-speaker {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #000, #1a2332);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-speaker-grid {
    width: 18px;
    height: 6px;
    background-image: 
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 1px, 
            rgba(0, 255, 255, 0.3) 1px, 
            rgba(0, 255, 255, 0.3) 2px);
}

.logo-sound-waves {
    position: absolute;
    top: 50%;
    left: 105%;
    transform: translateY(-50%);
    width: 20px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-sound-waves.speaking {
    opacity: 1;
    animation: logoSoundWaveAnimation 0.8s ease-in-out infinite;
}

.logo-sound-wave {
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    border: 1px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    transform: translateY(-50%);
}

.logo-sound-wave:nth-child(1) { left: 0; animation-delay: 0s; }
.logo-sound-wave:nth-child(2) { left: 6px; animation-delay: 0.2s; }
.logo-sound-wave:nth-child(3) { left: 12px; animation-delay: 0.4s; }

@keyframes logoSoundWaveAnimation {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(-50%) scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.2); 
    }
}

/* Logo Antenna */
.logo-antenna {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
}

.logo-antenna-signal {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo-signal-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    animation: logoSignalPulse 2s ease-out infinite;
}

.logo-signal-wave.signal-1 { 
    width: 6px; height: 6px; 
    margin: -3px 0 0 -3px; 
    animation-delay: 0s; 
}
.logo-signal-wave.signal-2 { 
    width: 10px; height: 10px; 
    margin: -5px 0 0 -5px; 
    animation-delay: 0.3s; 
}
.logo-signal-wave.signal-3 { 
    width: 14px; height: 14px; 
    margin: -7px 0 0 -7px; 
    animation-delay: 0.6s; 
}

@keyframes logoSignalPulse {
    0% {
        opacity: 1;
        transform: scale(0.1);
    }
    70% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Logo Speech Bubble */
.logo-speech-bubble {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    min-height: 50px;
    background: linear-gradient(145deg, rgba(0, 20, 40, 0.95), rgba(0, 40, 80, 0.9));
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(0, 255, 255, 0.1),
        0 0 15px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateX(-50%) translateY(5px) scale(0.9);
    transition: all 0.4s ease;
    z-index: 1000;
}

.logo-speech-bubble.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.logo-speech-content {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #00ffff;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 0 3px rgba(0, 255, 255, 0.3);
    animation: logoSpeechGlow 2s ease-in-out infinite;
}

@keyframes logoSpeechGlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.logo-speech-pointer {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 255, 255, 0.4);
}

.logo-speech-pointer::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 20, 40, 0.95);
}

.antenna-base {
    width: 6px;
    height: 15px;
    background: linear-gradient(180deg, #00ffff, #0088ff);
    border-radius: 3px;
    animation: antennaGlow 2s ease-in-out infinite;
}

@keyframes antennaGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.6); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 1); }
}

.antenna-signal {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
}

.signal-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    animation: signalPulse 2s ease-out infinite;
}

.signal-1 { 
    width: 8px; height: 8px; 
    margin: -4px 0 0 -4px; 
    animation-delay: 0s; 
}
.signal-2 { 
    width: 12px; height: 12px; 
    margin: -6px 0 0 -6px; 
    animation-delay: 0.3s; 
}
.signal-3 { 
    width: 16px; height: 16px; 
    margin: -8px 0 0 -8px; 
    animation-delay: 0.6s; 
}

@keyframes signalPulse {
    0% {
        opacity: 1;
        transform: scale(0.1);
    }
    70% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Robot Head */
.robot-head {
    position: absolute !important;
    top: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 90px !important;
    animation: headBob 3s ease-in-out infinite !important;
    display: block !important;
    visibility: visible !important;
    background: linear-gradient(145deg, #1a2332, #2a3442) !important;
    border: 3px solid rgba(0, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    box-shadow: 
        inset 0 5px 10px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(0, 255, 255, 0.5) !important;
}

@keyframes headBob {
    0%, 100% { transform: translateX(-50%) rotateZ(-2deg); }
    50% { transform: translateX(-50%) rotateZ(2deg); }
}

.head-shell {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a2332, #2a3442);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px 20px 15px 15px;
    box-shadow: 
        inset 0 5px 10px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 255, 255, 0.2);
}

/* Robot Eyes */
.robot-eyes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    display: flex;
    justify-content: space-between;
}

.robot-eye {
    position: relative;
    width: 25px;
    height: 20px;
    animation: robotBlink 4s ease-in-out infinite;
}

@keyframes robotBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.eye-socket {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #000 40%, #1a2332 80%);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #00ffff 30%, #0088ff 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    animation: pupilGlow 2s ease-in-out infinite;
}

@keyframes pupilGlow {
    0%, 100% { 
        box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        box-shadow: 0 0 15px rgba(0, 255, 255, 1);
        transform: translate(-50%, -50%) scale(1.1); 
    }
}

.eye-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, transparent 40%, rgba(0, 255, 255, 0.1) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: eyeGlowPulse 3s ease-in-out infinite;
}

@keyframes eyeGlowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

/* Robot Mouth */
.robot-mouth {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
}

.mouth-speaker {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #000, #1a2332);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.speaker-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 8px;
    background-image: 
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 2px, 
            rgba(0, 255, 255, 0.3) 2px, 
            rgba(0, 255, 255, 0.3) 3px);
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 110%;
    transform: translateY(-50%);
    width: 30px;
    height: 15px;
    opacity: 0;
}

.sound-waves.speaking {
    opacity: 1;
    animation: soundWaveAnimation 0.8s ease-in-out infinite;
}

.sound-wave {
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border: 1px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    transform: translateY(-50%);
}

.sound-wave:nth-child(1) { animation-delay: 0s; }
.sound-wave:nth-child(2) { animation-delay: 0.2s; left: 8px; }
.sound-wave:nth-child(3) { animation-delay: 0.4s; left: 16px; }

@keyframes soundWaveAnimation {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(-50%) scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.2); 
    }
}

/* Robot Body */
.robot-body {
    position: absolute !important;
    top: 120px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 110px !important;
    height: 140px !important;
    display: block !important;
    visibility: visible !important;
    background: linear-gradient(145deg, #1a2332, #2a3442) !important;
    border: 2px solid rgba(0, 255, 255, 0.6) !important;
    border-radius: 15px !important;
    box-shadow: 
        inset 0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 255, 0.3) !important;
}

.body-chassis {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a2332, #2a3442);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 
        inset 0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 255, 0.1);
}

.chest-panel {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, #0a1118, #1a2332);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 10px;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.4);
}

.status-lights {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

.status-light.green {
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    animation-delay: 0s;
}

.status-light.blue {
    background: #0088ff;
    box-shadow: 0 0 8px rgba(0, 136, 255, 0.6);
    animation-delay: 0.3s;
}

.status-light.cyan {
    background: #00ffff;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation-delay: 0.6s;
}

@keyframes statusBlink {
    0%, 80%, 100% { opacity: 1; }
    90% { opacity: 0.3; }
}

.chest-screen {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: linear-gradient(145deg, #000, #001122);
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, 
            transparent 0px, 
            transparent 1px, 
            rgba(0, 255, 255, 0.1) 1px, 
            rgba(0, 255, 255, 0.1) 2px);
}

.screen-text {
    position: relative;
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
    animation: screenTextGlow 3s ease-in-out infinite;
}

@keyframes screenTextGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Robot Arms */
.robot-arms {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
}

.robot-arm {
    position: absolute;
    top: 0;
    width: 60px;
    height: 80px;
    transform-style: preserve-3d;
}

.left-arm {
    left: -20px;
    animation: leftArmGesture 6s ease-in-out infinite;
}

.right-arm {
    right: -20px;
    animation: rightArmGesture 6s ease-in-out infinite;
}

@keyframes leftArmGesture {
    0%, 100% { transform: rotateZ(-10deg) rotateX(10deg); }
    33% { transform: rotateZ(-25deg) rotateX(5deg); }
    66% { transform: rotateZ(5deg) rotateX(15deg); }
}

@keyframes rightArmGesture {
    0%, 100% { transform: rotateZ(10deg) rotateX(10deg); }
    33% { transform: rotateZ(25deg) rotateX(5deg); }
    66% { transform: rotateZ(-5deg) rotateX(15deg); }
}

.arm-upper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 35px;
    background: linear-gradient(145deg, #1a2332, #2a3442);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.arm-joint {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #2a3442, #1a2332);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 255, 255, 0.2);
    animation: jointGlow 4s ease-in-out infinite;
}

@keyframes jointGlow {
    0%, 100% { 
        box-shadow: 
            inset 0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 10px rgba(0, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            inset 0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 15px rgba(0, 255, 255, 0.5);
    }
}

.arm-lower {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 30px;
    background: linear-gradient(145deg, #1a2332, #2a3442);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.robot-hand {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
}

.hand-palm {
    position: relative;
    width: 100%;
    height: 10px;
    background: linear-gradient(145deg, #1a2332, #2a3442);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hand-fingers {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 8px;
    display: flex;
    justify-content: space-between;
}

.finger {
    width: 3px;
    height: 8px;
    background: linear-gradient(145deg, #1a2332, #2a3442);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    animation: fingerTwitch 5s ease-in-out infinite;
}

.finger:nth-child(1) { animation-delay: 0s; }
.finger:nth-child(2) { animation-delay: 0.5s; }
.finger:nth-child(3) { animation-delay: 1s; }

@keyframes fingerTwitch {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.8); }
}

/* Robot Speech Bubble */
.robot-speech-bubble {
    position: absolute;
    top: -50px;
    right: -120px;
    width: 200px;
    min-height: 60px;
    background: linear-gradient(145deg, rgba(0, 20, 40, 0.95), rgba(0, 40, 80, 0.9));
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 15px;
    padding: 12px 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 10px rgba(0, 255, 255, 0.1),
        0 0 20px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: all 0.5s ease;
    z-index: 100;
}

.robot-speech-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.speech-content {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #00ffff;
    line-height: 1.4;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    animation: speechTextGlow 2s ease-in-out infinite;
}

@keyframes speechTextGlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.speech-pointer {
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 255, 255, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.speech-pointer::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 20, 40, 0.95);
}

/* Forgot Password Button Styling */
.forgot-button {
    background: linear-gradient(145deg, rgba(255, 100, 0, 0.2), rgba(255, 150, 0, 0.1)) !important;
    border: 1px solid rgba(255, 150, 0, 0.4) !important;
}

.forgot-button:hover {
    background: linear-gradient(145deg, rgba(255, 100, 0, 0.3), rgba(255, 150, 0, 0.2)) !important;
    border-color: rgba(255, 150, 0, 0.6) !important;
    box-shadow: 
        0 0 20px rgba(255, 150, 0, 0.3),
        inset 0 2px 10px rgba(255, 150, 0, 0.1) !important;
}

.forgot-button .button-content {
    color: #ff9600 !important;
}

.forgot-button .button-glow-effect {
    background: radial-gradient(circle, rgba(255, 150, 0, 0.3) 0%, transparent 70%) !important;
}

/* Robot Pointing Gesture Animation */
.robot-assistant-3d.pointing-gesture {
    animation: pointingGesture 3s ease-in-out;
}

@keyframes pointingGesture {
    0%, 100% { transform: translateY(0px) rotateY(-10deg) rotateX(5deg); }
    30% { transform: translateY(-5px) rotateY(-15deg) rotateX(10deg) scale(1.05); }
    60% { transform: translateY(-3px) rotateY(-5deg) rotateX(8deg) scale(1.02); }
}

.robot-assistant-3d.pointing-gesture .right-arm {
    animation: pointingArmGesture 3s ease-in-out;
}

@keyframes pointingArmGesture {
    0%, 100% { transform: rotateZ(10deg) rotateX(10deg); }
    30% { transform: rotateZ(45deg) rotateX(-10deg) rotateY(20deg); }
    60% { transform: rotateZ(35deg) rotateX(-5deg) rotateY(15deg); }
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .main-content-area {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    .robot-assistant-3d {
        width: 150px;
        height: 220px;
        order: -1;
    }
    
    .robot-speech-bubble {
        right: -80px;
        width: 150px;
        font-size: 10px;
    }
    
    .login-interface-3d {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .robot-assistant-3d {
        width: 120px;
        height: 180px;
    }
    
    .robot-speech-bubble {
        right: -60px;
        width: 120px;
        font-size: 9px;
        padding: 8px 10px;
    }
    
    .main-content-area {
        padding: 10px !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .robot-assistant-3d {
        width: 100px;
        height: 150px;
    }
    
    .robot-speech-bubble {
        display: none; /* Hide speech bubble on very small screens */
    }
}

/* ========================================
   REGISTER PAGE SPECIFIC STYLES
   ======================================== */

.register-interface-3d {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 20px 40px !important;
    margin-top: 20px !important;
    width: 100% !important;
    max-width: 400px !important;
    box-sizing: border-box !important;
    min-height: 400px !important;
    z-index: 100 !important;
    position: relative !important;
}

.register-interface-3d.animate-in {
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Progress Indicator */
.progress-indicator-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
    transform: scale(1.1);
}

.progress-step.completed {
    opacity: 1;
}

.step-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    background: rgba(0, 20, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #00ffff;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    border-color: rgba(0, 255, 255, 0.8);
    background: rgba(0, 120, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.progress-step.completed .step-circle {
    border-color: rgba(0, 255, 100, 0.8);
    background: rgba(0, 255, 100, 0.3);
    color: #00ff88;
}

.step-label {
    font-size: 11px;
    color: #88aacc;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
}

.progress-step.active .step-label {
    color: #00ffff;
}

.progress-step.completed .step-label {
    color: #00ff88;
}

/* Register Steps */
.register-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.register-step.hidden {
    display: none;
}

/* Username Checker */
.username-checker {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    opacity: 0;
    transition: all 0.3s ease;
}

.username-checker.available {
    color: #00ff88;
    opacity: 1;
}

.username-checker.unavailable {
    color: #ff4444;
    opacity: 1;
}

.username-checker i {
    font-size: 12px;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
    width: 100%;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #ff4444;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 10px;
    color: #88aacc;
    font-family: 'Share Tech Mono', monospace;
}

.strength-text span {
    font-weight: bold;
}

/* Password Match Indicator */
.password-match {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #00ff88;
    opacity: 0;
    transition: all 0.3s ease;
}

.password-match:not(.hidden) {
    opacity: 1;
}

/* Checkbox Styling */
.checkbox-field {
    align-items: flex-start !important;
}

.checkbox-label-3d {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #88aacc;
    font-size: 13px;
    line-height: 1.4;
}

.custom-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 3px;
    background: rgba(0, 20, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.custom-checkbox i {
    font-size: 10px;
    color: #00ffff;
    opacity: 0;
    transition: all 0.3s ease;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .custom-checkbox {
    background: rgba(0, 120, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

input[type="checkbox"]:checked + .custom-checkbox i {
    opacity: 1;
}

.nexus-link {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nexus-link:hover {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Completion Animation */
.completion-animation {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 48px;
    color: #00ff88;
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon.animate-success {
    opacity: 1;
    transform: scale(1);
}

.completion-title {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.completion-message {
    color: #88aacc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.account-summary {
    background: rgba(0, 120, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #88aacc;
}

.summary-item i {
    color: #00ffff;
    width: 16px;
}

/* Register Footer */
.register-footer {
    margin-top: 20px;
    text-align: center;
}

.register-login-link {
    font-size: 12px;
    color: #88aacc;
}

/* ========================================
   FORGOT PASSWORD PAGE SPECIFIC STYLES
   ======================================== */

.recovery-interface-3d {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 25px !important;
    padding: 20px 40px !important;
    margin-top: 20px !important;
    width: 100% !important;
    max-width: 450px !important;
    box-sizing: border-box !important;
    min-height: 400px !important;
    z-index: 100 !important;
    position: relative !important;
}

.recovery-interface-3d.animate-in {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Recovery Steps */
.recovery-steps {
    width: 100%;
}

.recovery-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recovery-step.hidden {
    display: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    background: rgba(0, 20, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step-icon.success {
    border-color: rgba(0, 255, 100, 0.8);
    background: rgba(0, 255, 100, 0.3);
    color: #00ff88;
}

.step-icon.animate-success {
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 100, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(0, 255, 100, 0.6);
    }
}

.step-content {
    width: 100%;
}

.step-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    color: #00ffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #88aacc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Recovery Options */
.recovery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    width: 100%;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 20, 40, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 40, 80, 0.5);
}

.option-item input[type="radio"] {
    width: 16px;
    height: 16px;
}

.option-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #88aacc;
    font-size: 13px;
    cursor: pointer;
    flex: 1;
}

.option-item i {
    color: #00aaff;
}

/* Verification Code Input */
.verification-code-input {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.code-digit {
    width: 45px !important;
    height: 50px !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: bold !important;
    border: 2px solid rgba(0, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    background: rgba(0, 20, 40, 0.8) !important;
    color: #00ffff !important;
    font-family: 'Orbitron', monospace !important;
    transition: all 0.3s ease !important;
}

.code-digit:focus {
    border-color: rgba(0, 255, 255, 0.8) !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4) !important;
    background: rgba(0, 40, 80, 0.8) !important;
}

/* Code Timer */
.code-timer {
    margin-top: 15px;
    font-size: 13px;
    color: #88aacc;
}

.code-timer strong {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

/* Resend Code Button */
.resend-code-btn {
    background: none;
    border: 1px solid rgba(255, 150, 0, 0.4);
    border-radius: 6px;
    padding: 8px 15px;
    color: #ff9600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.resend-code-btn:hover {
    border-color: rgba(255, 150, 0, 0.6);
    background: rgba(255, 150, 0, 0.1);
}

/* Password Requirements */
.password-requirements {
    margin-top: 15px;
    text-align: left;
    width: 100%;
}

.password-requirements h4 {
    font-size: 13px;
    color: #00aaff;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 12px;
    color: #666;
    transition: color 0.3s ease;
}

.req-item i {
    color: #ff4444;
    transition: color 0.3s ease;
}

.req-item.met {
    color: #88aacc;
}

.req-item.met i {
    color: #00ff88;
}

/* Success Animation Elements */
.success-animation {
    position: relative;
    margin: 20px 0;
}

.success-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.success-particles.animate {
    opacity: 1;
    animation: particleExplosion 2s ease-out;
}

@keyframes particleExplosion {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 100, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: successGlow 3s ease-in-out infinite;
}

@keyframes successGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Next Steps */
.next-steps {
    margin-top: 25px;
    text-align: left;
    width: 100%;
}

.next-steps h4 {
    font-size: 14px;
    color: #00aaff;
    margin-bottom: 12px;
    font-family: 'Orbitron', monospace;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: #88aacc;
}

.next-steps i {
    color: #00ffff;
    width: 16px;
}

/* Recovery Footer */
.recovery-footer {
    margin-top: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recovery-login-link,
.recovery-support-link {
    font-size: 12px;
    color: #88aacc;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 11px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: "⚠";
    font-size: 12px;
}

.code-error-message {
    text-align: center;
    margin-top: 10px;
}

/* Field States */
.field-container.error input,
.form-field-3d.error input {
    border-color: rgba(255, 68, 68, 0.6) !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3) !important;
}

.field-container.success input,
.form-field-3d.success input {
    border-color: rgba(0, 255, 136, 0.6) !important;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3) !important;
}

.field-container.focused {
    transform: translateZ(5px);
}

/* Button States */
.nexus-button-3d.loading .button-text {
    opacity: 0.7;
}

.nexus-button-3d.loading .button-surface {
    animation: buttonLoading 2s ease-in-out infinite;
}

@keyframes buttonLoading {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 120, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.nexus-button-3d.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Secondary Button Styling */
.secondary-button .button-surface {
    background: linear-gradient(135deg, 
        rgba(120, 120, 120, 0.4) 0%,
        rgba(160, 160, 160, 0.45) 50%,
        rgba(180, 180, 180, 0.4) 100%);
    border-color: rgba(200, 200, 200, 0.4);
}

.secondary-button:hover .button-surface {
    background: linear-gradient(135deg, 
        rgba(140, 140, 140, 0.5) 0%,
        rgba(180, 180, 180, 0.55) 50%,
        rgba(200, 200, 200, 0.5) 100%);
}

/* Date Input Styling */
input[type="date"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 9999 !important;
    background: linear-gradient(145deg, rgba(0, 20, 40, 0.95), rgba(0, 40, 80, 0.85)) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    color: #00ffff !important;
    width: 100% !important;
    height: 45px !important;
    padding: 12px 15px !important;
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 14px !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

input[type="date"]:focus {
    border-color: rgba(0, 255, 255, 0.8) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 255, 255, 0.4),
        0 0 25px rgba(0, 255, 255, 0.2) !important;
    background: linear-gradient(145deg, rgba(0, 30, 60, 0.95), rgba(0, 50, 100, 0.85)) !important;
}

/* Responsive Design for Register and Recovery Pages */
@media (max-width: 1024px) {
    .register-interface-3d,
    .recovery-interface-3d {
        max-width: 380px !important;
        padding: 15px 30px !important;
    }
    
    .progress-indicator-3d {
        gap: 15px;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .verification-code-input {
        gap: 8px;
    }
    
    .code-digit {
        width: 40px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .register-interface-3d,
    .recovery-interface-3d {
        max-width: 100% !important;
        padding: 15px 25px !important;
        margin-top: 10px !important;
    }
    
    .progress-indicator-3d {
        gap: 10px;
    }
    
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .completion-title {
        font-size: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .register-interface-3d,
    .recovery-interface-3d {
        padding: 10px 20px !important;
    }
    
    .progress-indicator-3d {
        gap: 8px;
    }
    
    .step-circle {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .verification-code-input {
        gap: 5px;
    }
    
    .code-digit {
        width: 35px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    
    .action-buttons-3d {
        gap: 10px !important;
    }
    
    .recovery-footer {
        flex-direction: column;
        gap: 8px;
    }
}