/* Ventanas del minijuego de luces */
.building-window {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    background: #0f172a;
    border: 2px solid #334155;
    cursor: pointer;
    transition: all 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.window-on {
    background: #fef08a; /* Amarillo encendido */
    border-color: #facc15;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}

.window-off {
    background: #0f172a; /* Apagado */
    border-color: #1e293b;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.window-pc {
    background: #bfdbfe; /* Luz azulada de PC */
    border-color: #60a5fa;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.4);
}

.building-window:active {
    transform: scale(0.9);
}
