/* ============================================================
   CHRISTMAS SLOT — animations.css
   Snowpine Interactive Casino Ltd. | omniclickdrft.cloud
   ============================================================ */

/* ── FLOAT ─────────────────────────────────────────────────── */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ── BULB TWINKLE ───────────────────────────────────────────── */
@keyframes bulb-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  40%      { opacity: 0.3; transform: scale(0.85); }
  60%      { opacity: 0.9; transform: scale(1.05); }
}

/* ── ORNAMENT SWAY ──────────────────────────────────────────── */
@keyframes ornament-sway {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%       { transform: rotate(6deg) translateY(-4px); }
}

/* ── SCROLL CUE ─────────────────────────────────────────────── */
@keyframes scroll-cue-pulse {
  0%, 100% { opacity: 0.7; height: 48px; }
  50%       { opacity: 0.2; height: 32px; }
}

/* ── SLOW SPIN ──────────────────────────────────────────────── */
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── GLOW PULSE ─────────────────────────────────────────────── */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(244, 213, 141, 0.15); }
  50%       { box-shadow: 0 0 32px rgba(244, 213, 141, 0.32); }
}

/* ── SNOW DRIFT ─────────────────────────────────────────────── */
@keyframes snow-drift {
  0%   { transform: translateX(0) translateY(-20px) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateX(var(--drift, 30px)) translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ── FADE IN ────────────────────────────────────────────────── */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── SLIDE IN UP ────────────────────────────────────────────── */
@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STAR TWINKLE ───────────────────────────────────────────── */
@keyframes star-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}

/* ── Applied Classes ────────────────────────────────────────── */
.anim-float {
  animation: gentle-float 5s ease-in-out infinite;
}

.anim-glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

.game-shell {
  animation: glow-pulse 4s ease-in-out infinite;
}