@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes spin-reel {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1200px); }
}

@keyframes winning-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,66,0); }
    50% { box-shadow: 0 0 18px 4px rgba(245,197,66,0.4); }
}

.animate-fade-up {
    animation: fadeInUp 0.55s ease forwards;
    opacity: 0;
}

.animate-fade-up.delay-1 { animation-delay: 0.1s; }
.animate-fade-up.delay-2 { animation-delay: 0.2s; }
.animate-fade-up.delay-3 { animation-delay: 0.3s; }
.animate-fade-up.delay-4 { animation-delay: 0.4s; }

.slot-reel.spinning { animation: none; }
.slot-reel.winning { animation: winning-glow 0.8s ease infinite; }

.hero-slide { animation: none; }

.section-enter {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-enter.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-pulse {
    animation: btn-pulse-anim 2s ease infinite;
}
@keyframes btn-pulse-anim {
    0%, 100% { box-shadow: 0 0 0 0 rgba(227,24,61,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(227,24,61,0); }
}

.card-hover-lift {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: none;
}

.prize-counter-animate {
    animation: prize-count 1.5s ease forwards;
}
@keyframes prize-count {
    0% { opacity: 0; transform: scale(0.8); }
    80% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.ftr-logo-chip { transition: background 0.18s ease, border-color 0.18s ease; }
.ftr-logo-chip:hover { background: var(--c-bg-card); border-color: rgba(255,255,255,0.15); }

.hero-slide-overlay { transition: opacity 0.8s ease; }

.overlay-skewed {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--c-bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

.qm2-hidden { visibility: hidden; height: 0; overflow: hidden; pointer-events: none; position: absolute; }

@keyframes hx7r-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hx7r-anim { animation: hx7r-fade 0.3s ease; }
