.replay-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 140px;
    height: 48px;
    padding: 0 1.5rem;
    border-radius: 999px;
    background: #ff4d4f;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(255, 77, 79, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: replay-cta-pulse 2s ease-in-out infinite;
}

.replay-cta-btn--draw-panel {
    width: 100%;
}

@media (min-width: 640px) {
    .replay-cta-btn--draw-panel {
        width: auto;
        min-width: 220px;
    }
}

.replay-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 77, 79, 0.45);
    color: #fff;
}

.replay-cta-btn:active {
    transform: scale(0.96);
}

.replay-cta-btn--featured {
    background: linear-gradient(135deg, #ff7875 0%, #ff4d4f 55%, #f5222d 100%);
    animation: replay-cta-pulse-strong 2s ease-in-out infinite;
}

@keyframes replay-cta-pulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(255, 77, 79, 0.35); }
    50% { box-shadow: 0 8px 28px rgba(255, 77, 79, 0.55); }
}

@keyframes replay-cta-pulse-strong {
    0%, 100% { box-shadow: 0 10px 26px rgba(255, 77, 79, 0.45); transform: scale(1); }
    50% { box-shadow: 0 14px 34px rgba(255, 77, 79, 0.65); transform: scale(1.02); }
}

@media (max-width: 768px) {
    .replay-cta-btn {
        width: 100%;
        min-width: 0;
        height: 52px;
    }
}

.replay-cta-btn--live-enter {
    opacity: 0;
    transform: scale(0.92);
}

.replay-cta-btn--live-enter.is-visible {
    animation: replay-live-enter 500ms ease-out forwards, replay-cta-pulse-strong 2s 500ms ease-in-out infinite;
}

@keyframes replay-live-enter {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.draw-complete-recommend-enter {
    animation: replay-live-enter 500ms ease-out forwards;
}
