/* 0. CORE BODY LOCK - Prevents mobile horizontal wiggling */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    background-color: #0B132B; /* Your original Midnight Onyx base */
    font-family: 'Courier New', monospace; /* Aligning with Sovereign metadata style */
}

/* 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; /* Sits at the very bottom */
    animation: cosmicPulse 30s ease-in-out infinite;
    will-change: transform; /* Hardware acceleration for smooth "breathing" */
}

/* 2. THE ONYX VEIL - Sits between the image and your content */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0B132B; /* Deep Onyx */
    opacity: 0.82; /* Allows cosmic textures to shimmer through */
    z-index: -1; 
}

/* 3. 3D VORTEX CANVAS SETTINGS */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1; /* Sits above the Onyx Veil */
}

/* 4. CONTENT WRAPPER - Ensure your gold text stays on top */
main {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffd700; /* Gold Standard */
    text-align: center;
    padding: 2rem;
}

/* 5. COSMIC BREATHING ANIMATION */
@keyframes cosmicPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); } /* Subtle expansion of the universe */
    100% { transform: scale(1); }
}

/* 6. MOBILE RESPONSIVENESS - Prestige scaling for smaller screens */
@media (max-width: 768px) {
    main h1 {
        font-size: 2.2rem;
    }
}