.rewards-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.rewards-party-modal {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 197, 92, 0.42);
    border-radius: 12px;
    padding: 16px 14px;
    background:
        radial-gradient(circle at top, rgba(255, 200, 98, 0.24), transparent 52%),
        linear-gradient(180deg, rgba(46, 28, 10, 0.92), rgba(16, 9, 8, 0.95));
}

.rewards-party-modal__confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rewards-party-modal__piece {
    position: absolute;
    left: var(--piece-left);
    top: -12px;
    width: 6px;
    height: 14px;
    border-radius: 2px;
    background: var(--piece-color);
    opacity: 0.95;
    animation: rewards-confetti-fall var(--piece-duration) linear var(--piece-delay) infinite;
}

.rewards-party-modal__crest {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 2px auto 10px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 1.9rem;
    border: 1px solid rgba(255, 205, 112, 0.64);
    box-shadow: 0 0 22px rgba(255, 181, 66, 0.35);
    background: radial-gradient(circle, rgba(112, 66, 22, 0.85), rgba(30, 17, 7, 0.95));
}

.rewards-party-modal__headline {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #ffe9bb;
}

.rewards-party-modal__line {
    position: relative;
    z-index: 1;
    margin: 0 0 7px;
    color: #f3e8ca;
    font-size: 13px;
}

.rewards-party-modal__line--muted {
    color: var(--color-text-muted);
}

@keyframes rewards-confetti-fall {
    0% {
        transform: translateY(-8px) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.95;
    }
    100% {
        transform: translateY(230px) rotate(360deg);
        opacity: 0;
    }
}
