/* =========================================
   TELA DE MANUTENÇÃO VIP
========================================= */
#maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    color: #fff;
}

/* Classe para esconder a manutenção usando CSS */
#maintenance-overlay.maintenance-hidden {
    display: none !important;
}

.maintenance-box {
    padding: 20px;
    max-width: 500px;
}

.maintenance-box i {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 25px;
}

.maintenance-box h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.maintenance-box p {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.maintenance-box p.highlight {
    font-weight: 600;
    color: #ffc107;
}

.maintenance-loader {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.maintenance-loader .dot {
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite ease-in-out;
}

.maintenance-loader .dot:nth-child(2) { animation-delay: 0.2s; }
.maintenance-loader .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dot {
    0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}