.maze-container {
    width: 100%;
    height: 100%;
    background: #05060f;
    overflow: hidden;
    position: relative;
}

.maze-ui {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    color: #fff;
    font-family: var(--font-accent);
    pointer-events: none;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(5px);
}

.maze-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    text-align: center;
    padding: 2rem;
}

.maze-btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 18px 50px;
    border-radius: 10px;
    font-family: var(--font-accent);
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: 0.3s;
    box-shadow: 0 10px 30px var(--glow-p);
}

.maze-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--glow-p);
}

#maze-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: none;
}
