/* Three.js Background Canvas Styles */

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: #050505;
    pointer-events: none;
}

#canvas-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* Luxury dark vignette overlay to ensure high text contrast */
.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(5, 5, 5, 0.2) 0%,
        rgba(5, 5, 5, 0.75) 70%,
        rgba(5, 5, 5, 0.95) 100%
    );
}

/* Background grid details for sublte complexity */
.tech-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(197, 168, 128, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 168, 128, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center;
    opacity: 0.7;
}
