@keyframes wr-shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

@keyframes wr-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes wr-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(37,105,14,0.4); }
    50% { box-shadow: 0 0 24px rgba(37,105,14,0.8), 0 0 48px rgba(37,105,14,0.3); }
}

@keyframes wr-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wr-slide-up {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes wr-slide-down {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes wr-fade-in-scale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes wr-border-dance {
    0% { border-color: var(--wr-gold); }
    50% { border-color: var(--wr-secondary); }
    100% { border-color: var(--wr-gold); }
}

@keyframes wr-count-up {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes wr-ripple {
    to { transform: scale(4); opacity: 0; }
}

@keyframes wr-bg-pan {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wr-hero { animation: wr-bg-pan 20s ease infinite; background-size: 200% 200%; }

.wr-bonus-card:nth-child(1) { animation-delay: 0.1s; }
.wr-bonus-card:nth-child(2) { animation-delay: 0.2s; }
.wr-bonus-card:nth-child(3) { animation-delay: 0.3s; }

.wr-btn--signup { animation: wr-glow 3s ease-in-out infinite; }

.wr-hero-content { animation: wr-slide-up 0.8s ease both; }

.wr-step-card:nth-child(1) { animation-delay: 0.05s; }
.wr-step-card:nth-child(2) { animation-delay: 0.15s; }
.wr-step-card:nth-child(3) { animation-delay: 0.25s; }
.wr-step-card:nth-child(4) { animation-delay: 0.35s; }

.wr-table tbody tr {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.wr-table tbody tr:hover { transform: translateX(4px); }

.wr-section-title {
    animation: wr-fade-in-scale 0.5s ease both;
}

.wr-header { animation: wr-slide-down 0.5s ease both; }

.wr-online-dot {
    box-shadow: 0 0 0 0 rgba(76,175,80,0.6);
    animation: wr-pulse-ring 2s ease-in-out infinite, wr-pulse 2s ease-in-out infinite;
}

@keyframes wr-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
    100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}

.wr-bonus-card { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease; }

.wr-btn { position: relative; overflow: hidden; }
.wr-btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.wr-btn:active::after { width: 200px; height: 200px; opacity: 1; transition: none; }

.wr-mirror-link { position: relative; display: inline-block; }
.wr-mirror-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1px;
    background: var(--wr-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.wr-mirror-link:hover::after { transform: scaleX(1); }

.wr-promo-widget { animation: none; }

.wr-faq-answer { transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
