/* =========================================
   THREE.JS SOLAR SYSTEM CONTAINER STYLING
   ========================================= */

#three-bg {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    overflow: hidden;
    pointer-events: none !important;
    background: transparent;
}

#three-bg canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    display: block;
    pointer-events: none !important;
}

/* Mobile fallback - simple gradient background */
@media (max-width: 1023px) {
    #three-bg {
        background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    }

    #three-bg canvas {
        display: none !important;
    }
}