/* Праздничное уведомление о новой награде */
.toast.toast--badge-celebration {
    min-width: 280px;
    max-width: 420px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #6b21a8 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 20px 50px rgba(79, 70, 229, 0.45);
    border-radius: 16px;
    overflow: hidden;
}

.toast.toast--badge-celebration .toast-content {
    color: #f8fafc;
    padding: 0;
}

.badge-celebration {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    position: relative;
}

.badge-celebration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(250, 204, 21, 0.35), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.25), transparent 40%);
    pointer-events: none;
}

.badge-celebration__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.badge-celebration__spark {
    font-size: 28px;
    line-height: 1;
    animation: badge-celebration-pulse 1.2s ease-in-out infinite;
}

@keyframes badge-celebration-pulse {
    0%, 100% { transform: scale(1) rotate(-5deg); opacity: 1; }
    50% { transform: scale(1.12) rotate(5deg); opacity: 0.85; }
}

.badge-celebration__icon-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.badge-celebration__icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-celebration__titles {
    flex: 1;
    min-width: 0;
}

.badge-celebration__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.badge-celebration__name {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.badge-celebration__desc {
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255, 245, 255, 0.82);
    line-height: 1.35;
}
