/* ARTBUILD Notifications Center — frontend scoped */

.artbuild-plugin.abp-notifications,
.artbuild-plugin.abp-notifications *,
.artbuild-plugin.abp-notification-badge {
    box-sizing: border-box;
}

.artbuild-plugin.abp-notifications {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 28px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(31,111,255,.22), transparent 34%),
        linear-gradient(135deg, #071b2b, #061827);
    border: 1px solid rgba(255,255,255,.09);
    overflow: hidden;
}

.abp-notifications-hero {
    margin-bottom: 22px;
}

.abp-notifications-kicker,
.abp-notification-pill,
.artbuild-plugin.abp-notification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
}

.abp-notifications-kicker {
    padding: 8px 13px;
    background: rgba(31,111,255,.12);
    color: #7db6ff;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.abp-notifications-hero h2 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-size: clamp(34px,5vw,58px);
    line-height: .96;
    font-weight: 950;
    letter-spacing: -.045em;
}

.abp-notifications-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 16px;
    line-height: 1.55;
}

.abp-notifications-list {
    display: grid;
    gap: 14px;
}

.abp-notification-card,
.abp-notifications-panel {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.abp-notification-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
}

.abp-notifications-panel {
    padding: 22px;
    color: rgba(255,255,255,.72);
}

.abp-notification-pill {
    padding: 7px 12px;
    margin-bottom: 12px;
    background: rgba(31,111,255,.12);
    color: #7db6ff;
    font-size: 12px;
}

.abp-notification-success .abp-notification-pill {
    background: rgba(35,195,120,.12);
    color: #7ff0b7;
}

.abp-notification-warning .abp-notification-pill,
.abp-notification-premium .abp-notification-pill {
    background: rgba(242,183,5,.12);
    color: #f2d36b;
}

.abp-notification-risk .abp-notification-pill {
    background: rgba(255,79,63,.10);
    color: #ffaaa4;
}

.abp-notification-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 900;
}

.abp-notification-card p {
    margin: 0 0 10px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.5;
}

.abp-notification-card small {
    color: rgba(255,255,255,.48);
    font-size: 12px;
}

.abp-notification-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.abp-notification-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 15px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1f6fff, #0f58d6);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 900;
    transition: transform .18s ease;
}

.abp-notification-button:hover {
    transform: translateY(-2px);
}

.abp-notification-button-secondary {
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
}

.artbuild-plugin.abp-notification-badge {
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: linear-gradient(135deg, #1f6fff, #0f58d6);
    color: #ffffff;
    font-size: 12px;
}

@media (max-width: 760px) {
    .artbuild-plugin.abp-notifications {
        padding: 18px;
        border-radius: 22px;
    }

    .abp-notification-card {
        flex-direction: column;
    }

    .abp-notification-actions,
    .abp-notification-button {
        width: 100%;
    }
}
