/* Styles pour les messages de bannissement */
.ban-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.ban-message .ban-icon {
    text-align: center;
    margin-bottom: 20px;
}

.ban-message .ban-icon i {
    font-size: 4rem;
    color: #ef4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.ban-message .ban-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out;
}

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

.ban-message h3 {
    color: #ef4444;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ban-message p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.ban-message p strong {
    color: #1e293b;
    font-weight: 600;
}

.ban-message .ban-duration {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.ban-message .ban-duration strong {
    color: #dc2626;
}

.ban-message .ban-reason {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    text-align: left;
}

.ban-message .ban-reason strong {
    color: #374151;
    display: block;
    margin-bottom: 8px;
}

.ban-message .contact-support {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.ban-message .contact-support p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ban-message .ban-content {
        padding: 24px;
        margin: 10px;
    }
    
    .ban-message h3 {
        font-size: 1.5rem;
    }
    
    .ban-message .ban-icon i {
        font-size: 3rem;
    }
}
