/* --- 0. CORE BODY LOCK --- */
:root {
    --onyx: #0B132B;
    --gold: #FFB800;
    --teal: #1C7293;
    --glow: rgba(255, 184, 0, 0.4);
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    background-color: var(--onyx);
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- 1. THE MOVING COSMIC LAYER --- */
.evospace-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: url('evospace.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2;
    animation: cosmicPulse 40s ease-in-out infinite;
}

/* Dark overlay to ensure text readability */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--onyx);
    opacity: 0.75;
    z-index: -1; 
}

@keyframes cosmicPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* --- 2. BIO MIRROR SOVEREIGN LAYER --- */
.mirror-chamber {
    position: relative;
    backdrop-filter: blur(15px) saturate(150%);
    border: 2px solid var(--gold) !important;
    padding: 40px;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(11, 19, 43, 0.8) 0%, rgba(28, 114, 147, 0.2) 100%);
    box-shadow: 0 0 30px var(--glow);
    text-align: center;
    width: 85%;
    max-width: 500px;
    z-index: 10;
    transition: all 0.3s ease;
}

.mirror-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    border-radius: 13px;
}

/* --- 3. TYPOGRAPHY & ELEMENTS --- */
h1 {
    color: var(--gold);
    font-size: clamp(2rem, 10vw, 4rem);
    letter-spacing: 0.6rem;
    margin: 0;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    user-select: none;
}

.manifesto {
    color: var(--teal);
    letter-spacing: 0.15rem;
    margin-top: 20px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.pulse-core {
    height: 2px;
    width: 60px;
    background: var(--gold);
    margin: 25px auto;
    transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

/* --- 4. SYSTEM FOOTER --- */
.status-bar {
    position: absolute;
    bottom: 20px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .status-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
}