/* =====================
   PAINEL PARENTAL (<18) E TEMPO
   ===================== */
#parental-overlay,
#time-block-overlay,
#account-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.parental-box {
    background: linear-gradient(135deg, #222, #111);
    border: 2px solid #ffcc00;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.2);
}

.time-block-box {
    background: linear-gradient(135deg, #400, #100);
    border: 2px solid #ff0000;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    }
}

/* =====================
   GERENCIAR CONTA
   ===================== */
.account-box {
    background: linear-gradient(135deg, #1f2833, #0b0c10);
    border: 2px solid #fff;
    padding: 30px;
    border-radius: 10px;
    width: 450px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.account-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.acc-section h3 {
    margin-bottom: 10px;
    font-size: 1.1em;
}