/* stand_by_ingles.css */

/* Botão da Lâmpada */
.standby-btn {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    display: none; /* Escondido por padrão, aparece via JS */
    justify-content: center;
    align-items: center;
    font-size: 1.0rem;
    transition: all 0.3s ease;
}

.standby-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

/* Tela Escura (Overlay) */
.standby-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000; /* Acima de tudo */
    display: none; /* Ativado via JS */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Container do Slider de Desbloqueio */
.unlock-container {
    width: 80px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.unlock-text {
    position: absolute;
    width: 90%;
    text-align: center;
    line-height: 50px;
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* O Botão de Arrastar */
.unlock-handle {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #444, #222);
    border-radius: 50%;
    cursor: grab;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff8c00; /* Laranja */
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
    position: absolute;
    left: 5px;
    z-index: 2;
    transition: left 0.1s linear;
}

.unlock-handle::after {
    content: '➜';
    font-size: 0.9rem;
}

.unlock-handle:active {
    cursor: grabbing;
    background: linear-gradient(135deg, #555, #333);
}