@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Source+Code+Pro:wght@300;500&display=swap');

:root {
    --bg-dark: #030B20;
    --neon-blue: #00d2ff;
    --neon-purple: #9d50bb;
    --text-dim: #a0aec0;
}

/* Global Styles & Disable Selection */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Disable Long Press/Selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none; /* Disable Callout on iOS */
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Source Code Pro', monospace;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Advanced Space Background */
#starfield {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px white);
}

.nebula-cloud {
    position: fixed;
    width: 150vw;
    height: 150vh;
    background: radial-gradient(circle at center, rgba(157, 80, 187, 0.08), transparent 60%);
    z-index: -2;
    filter: blur(100px);
}

/* Glassmorphism Multiverse Container */
.multiverse-container {
    perspective: 2000px;
    z-index: 10;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    transform-style: preserve-3d;
}

/* Astronaut Styles */
.astronaut-box {
    position: relative;
    width: 160px;
    margin: 0 auto 30px;
}

.astronaut-svg {
    width: 100%;
    animation: floatCycle 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--neon-blue));
}

@keyframes floatCycle {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-40px) rotate(15deg); }
}

/* Glitch Heading */
.glitch-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(80px, 15vw, 140px);
    font-weight: 900;
    background: linear-gradient(to bottom, #fff, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -5px;
}

.alert-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #ff4b2b;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.mission-log {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.blink { animation: blinker 1s linear infinite; color: var(--neon-blue); font-weight: bold; }
@keyframes blinker { 50% { opacity: 0; } }

/* Professional Buttons */
.control-panel {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.nav-btn {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.primary {
    background: var(--neon-blue);
    color: var(--bg-dark);
}

.primary:hover {
    box-shadow: 0 0 30px var(--neon-blue);
    transform: translateY(-5px);
}

.secondary {
    border-color: rgba(255,255,255,0.2);
    color: white;
}

.secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: white;
}

.data-stream {
    margin-top: 40px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
}
