/* Base Reset */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #fff;
    font-family: 'Playfair Display', serif;
}

/* Splash Screen */
#enter-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 1s ease;
}

/* Info Content - Ensure scrolling works here */
#content-wrapper {
    width: 100%;
    overflow-y: auto;
    position: relative;
}

.module {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    text-align: center;
}

/* Button Styling */
#activate-universe {
    padding: 20px 40px;
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    background: #000;
    color: #fff;
    border: none;
    z-index: 100;
}

/* Quantum Space */
#interaction-space {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #000;
    z-index: 10000;
    display: none;
}

#quantum-canvas {
    width: 100%;
    height: 100%;
}

.pillars {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    font-size: 0.6rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

.pillars li {
    border: 1px solid #000;
    padding: 5px 10px;
}
#content-wrapper {
    color: #000;
    background: #fff;
    line-height: 1.6;
}

#activate-universe {
    background: #000;
    color: #fff;
    border: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s;
}

#activate-universe:hover {
    background: #ff007f;
}

#interaction-space {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}
#interaction-space {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 999;
}
#quantum-canvas {
    width: 100%;
    height: 100%;
}
#interaction-space {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000 !important;
    z-index: 9999;
}

canvas {
    display: block;
}
#interaction-space {
    background: radial-gradient(circle, #111 0%, #000 100%);
    cursor: crosshair;
}
#interaction-space::after {
    content: "UNIVERSE DORMANT - INITIATE MOVEMENT";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 10px;
    letter-spacing: 5px;
    pointer-events: none;
}
/* Hide default cursor only in the Void */
#interaction-space {
    cursor: none;
}

/* The Observer Cursor */
#custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    display: none;
}

/* Inner focal point */
#custom-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
/* Click state for the observer */
.cursor-pulse {
    width: 80px !important;
    height: 80px !important;
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
