/* ============================================
   TELA DE BANIMENTO - ZELO
   © 2026 LITE STUDIO
   ============================================ */

.st-ban-container {
    position: fixed;
    inset: 0;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    z-index: 99999;
    overflow-y: auto;
}

.st-ban-container::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.st-ban-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: banFadeIn 0.6s ease;
}

@keyframes banFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.st-ban-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: rgba(239, 68, 68, 0.1);
    border: 3px solid #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    animation: banPulse 2s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.3);
}

@keyframes banPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(239, 68, 68, 0.5);
    }
}

.st-ban-icon svg {
    width: 60px;
    height: 60px;
}

.st-ban-title {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.st-ban-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.st-ban-card {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.st-ban-field {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.st-ban-field:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.st-ban-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: rgba(239, 68, 68, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.st-ban-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
}

.st-ban-value.permanent {
    color: #ef4444;
    font-weight: 700;
}

.st-ban-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.st-ban-footer > p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ============================================
   BOTÃO DE SUPORTE (PRIMÁRIO - AZUL)
   ============================================ */
.st-ban-support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    width: 100%;
    max-width: 320px;
    margin: 0 auto 12px;
}

.st-ban-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.st-ban-support-btn:active {
    transform: translateY(0);
}

.st-ban-support-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   ✅ BOTÃO "USAR OUTRA CONTA" (SECUNDÁRIO - OUTLINE)
   ============================================ */
.st-ban-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.st-ban-switch-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.st-ban-switch-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.st-ban-switch-btn:hover::before {
    opacity: 1;
}

.st-ban-switch-btn:active {
    transform: translateY(0);
}

.st-ban-switch-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.st-ban-switch-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.st-ban-switch-btn span {
    position: relative;
    z-index: 1;
}

/* Animação de spin para loading */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsivo */
@media (max-width: 480px) {
    .st-ban-container { padding: 20px; }
    .st-ban-title { font-size: 2.2rem; letter-spacing: 0.2em; }
    .st-ban-icon { width: 100px; height: 100px; }
    .st-ban-icon svg { width: 50px; height: 50px; }
    .st-ban-card { padding: 20px; }
    
    .st-ban-support-btn,
    .st-ban-switch-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .st-ban-support-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .st-ban-switch-btn svg {
        width: 16px;
        height: 16px;
    }
}