/* Account ban notice — matches site card style */

.account-ban-notice {
    --ban-red: #FF0066;
    --ban-red-soft: rgba(255, 0, 102, 0.08);
    width: 100%;
    max-width: none;
    margin: 0 0 1.75rem;
    padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.5vw, 1.75rem);
    box-sizing: border-box;
    text-align: left;
    background: var(--ban-red-soft);
    border: 2px solid var(--ban-red);
    border-radius: 16px;
}

.account-ban-notice__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.2rem, 2.8vw, 1.65rem);
    line-height: 1.25;
    color: var(--ban-red);
}

.account-ban-notice__subtitle {
    margin: 0 0 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.45;
    color: #2C123B;
    max-width: none;
}

.account-ban-notice__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    align-items: start;
}

.account-ban-notice__block {
    margin: 0;
    text-align: left;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.account-ban-notice__label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ban-red);
}

.account-ban-notice__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #2C123B;
}

.account-ban-notice__discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.55rem 1.15rem;
    border: none;
    border-radius: 1000px;
    background: var(--ban-red);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.2;
    cursor: pointer;
    --btn-3d-shadow: color-mix(in srgb, #FF0066 76%, black);
}

.account-ban-notice__discord:hover {
    background: #e6005c;
    color: #fff !important;
    text-decoration: none !important;
    filter: none;
    opacity: 1;
}

.account-ban-notice__discord:active {
    background: #cc0052;
}

.account-ban-notice--permanent .account-ban-notice__title {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
}

@media (max-width: 900px) {
    .account-ban-notice__grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

/* Dim + lock interactive sections when banned.
   Animations use animation-fill-mode: forwards → opacity:1 and would override a plain opacity rule,
   so we disable those animations and force the dim with !important. */
.page-flower-bg.account-page--banned .character-settings-container,
.page-flower-bg.account-page--banned .character-selection-container,
.page-flower-bg.account-page--banned .account-reward-section-content,
.page-flower-bg.account-page--banned .desktop_app_cta_section {
    pointer-events: none;
    opacity: 0.45 !important;
    user-select: none;
    animation: none !important;
}

.page-flower-bg.account-page--banned .character-selection-container .account-anim-fade-in,
.page-flower-bg.account-page--banned .account-reward-section-content .account-anim-fade-in,
.page-flower-bg.account-page--banned .character-settings-container .account-anim-scale,
.page-flower-bg.account-page--banned .character-settings-container .account-anim-slide-right,
.page-flower-bg.account-page--banned .characters-list .character-item,
.page-flower-bg.account-page--banned .characters-list .character-item.character-item-reveal,
.page-flower-bg.account-page--banned .account-reward-section .account_reward_card {
    animation: none !important;
    opacity: 1 !important;
}

.page-flower-bg.account-page--banned .character-settings-container input,
.page-flower-bg.account-page--banned .character-settings-container button,
.page-flower-bg.account-page--banned .character-selection-container button,
.page-flower-bg.account-page--banned .character-selection-container a,
.page-flower-bg.account-page--banned .account-reward-section-content button,
.page-flower-bg.account-page--banned .account-reward-section-content a,
.page-flower-bg.account-page--banned .desktop_app_cta_section a,
.page-flower-bg.account-page--banned .desktop_app_cta_section button {
    cursor: not-allowed;
}
