body {
    margin: 0;
    padding: 0;
    background-color: #020205;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    user-select: none;
}

#app-root {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#visual-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Typography Overlays */
.overlay-text {
    position: absolute;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 10;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.top-title {
    top: 10%;
    font-size: 2vw;
    font-weight: 200;
    letter-spacing: 0.8vw;
    color: rgba(200, 240, 255, 0.8);
}

.bottom-title {
    bottom: 10%;
    font-size: 1.2vw;
    font-weight: 300;
    letter-spacing: 0.3vw;
    color: rgba(100, 200, 255, 0.6);
}

/* Start Overlay */
#start-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 5, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    transition: opacity 2s ease-out;
}

#start-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

#start-btn {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: rgba(200, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2vw;
    font-weight: 300;
    letter-spacing: 0.4vw;
    padding: 2vw 4vw;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1) inset, 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.5s ease;
}

#start-btn:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.8);
    color: #fff;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3) inset, 0 0 40px rgba(0, 255, 255, 0.3);
}
