/* Velddea Premium - Forced Red Cosmic Dust Art */

/* 1. THE FIXED ART LAYER (Nuclear Strength) */
.fixed-background-layer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -9999 !important;
    background-color: #050505 !important;
    
    /* VIBRANT RED COSMIC DUST DESIGN */
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 0, 0, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 20, 50, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(150, 0, 0, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, #0a0000 0%, #050505 100%) !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}

/* 2. FORCE TRANSPARENCY ON EVERYTHING ELSE */
html, body, #page, .site, .site-main, .evd-content-wrapper {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
}

/* 3. LAYOUT & SCROLLING */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 150vh; /* FORCES SCROLLING TO BE ACTIVE */
}

/* 4. CONTENT WRAPPER */
.evd-content-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30vh 20px 20vh 20px;
    text-align: center;
}

/* 5. TYPOGRAPHY (Glow Effect) */
h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    margin-bottom: 20px;
}

p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* 6. STICKY FOOTER */
.site-footer {
    padding: 100px 20px;
    text-align: center;
    margin-top: auto;
}

.site-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}