body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

#visual-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#start-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
}

#start-overlay.hidden {
    display: none;
}

#start-btn {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#start-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.overlay-text {
    position: absolute;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    letter-spacing: 5px;
    text-transform: uppercase;
    z-index: 10;
}

.top-title {
    top: 40px;
    font-size: 1.2rem;
}

.bottom-title {
    bottom: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}
