.ban-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sp-fade 0.18s ease;
}

.ban-modal {
    width: 92%;
    max-width: 400px;
    background: var(--bg-modal);
    border: 0.5px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    font-family: var(--font);
    animation: sp-slide 0.22s cubic-bezier(0.34, 1.3, 0.64, 1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

/* Header oscuro */
.ban-header {
    background: #1a0a0a;
    padding: 26px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ban-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ban-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(226, 75, 74, 0.18);
    border: 1px solid rgba(226, 75, 74, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ban-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: #E24B4A;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ban-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.ban-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
}

.ban-close-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}
.ban-close-btn:hover {
    background: rgba(226, 75, 74, 0.28);
    border-color: rgba(226, 75, 74, 0.5);
    color: #fff;
}

/* Body */
.ban-body {
    padding: 14px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ban-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--bg-row);
    border-radius: 9px;
    border: 1px solid transparent;
    transition: all 0.15s;
}
.ban-row:hover {
    background: var(--bg-row-hover);
    border-color: var(--border-light);
}

.ban-row-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-settings-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ban-row-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-settings-primary);
    font-family: var(--mono);
}

.ban-permanent { color: #E24B4A !important; }
.ban-timed     { color: #BA7517 !important; }

.ban-divider {
    height: 1px;
    background: var(--border);
    margin: 3px 0;
}

.ban-appeal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 13px;
    background: #5865F2;
    border-radius: 9px;
    color: #fff;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
    border: none;
    cursor: pointer;
    margin-top: 2px;
}
.ban-appeal-btn:hover {
    background: #4752c4;
    color: #fff;
    text-decoration: none;
}
.ban-appeal-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}