@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;400;700&display=swap');

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

#app-root {
    width: 100%;
    height: 100%;
}

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

#start-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    transition: opacity 1s ease;
}

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

#start-btn {
    padding: 20px 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 100;
    font-family: 'JetBrains Mono', monospace;
}

#start-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    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.3);
    pointer-events: none;
    letter-spacing: 8px;
    text-transform: uppercase;
    z-index: 10;
    font-weight: 100;
}

.top-title {
    top: 50px;
    font-size: 1.0rem;
}

.bottom-title {
    bottom: 50px;
    font-size: 0.8rem;
}

#ui-layer {
    transition: opacity 1.5s ease-in-out;
    opacity: 1;
}

#ui-layer.hidden {
    opacity: 0;
    pointer-events: none;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 10;
    transition: width 0.1s linear;
}
