* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    background: #000000;
}

#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

#overlay-text {
    position: fixed;
    top: 44%;
    left: 0;
    right: 0;
    width: 100%;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    /* Font, color, glow, transition are applied via CONFIG in main.js */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    #overlay-text {
        font-size: clamp(1.5rem, 8vw, 3rem) !important;
        top: 12%;
        white-space: nowrap;
        /* iOS Safari safe area */
        padding-top: env(safe-area-inset-top, 0);
    }
}

#overlay-text.visible {
    opacity: 1;
}

