/* ===============================
   FIRE EFFECT — ONLY FOOTER STRIP
================================ */

.footer-strip {
  background: linear-gradient(90deg, #1a1a56, #000, #023f15);
  padding: 0.8rem;
  text-align: center;
}

.footer-strip .fire-text {
  font-family: 'Arial Black', Gadget, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.15em;
  color: #111;

  animation: fireGlow 1.3s ease-in-out infinite alternate;
}

/* 🔥 FIRE ANIMATION (REFINED & PROFESSIONAL) */
@keyframes fireGlow {
  0% {
    text-shadow:
      0 0 6px #ffd27d,
      0 -4px 10px #ffb347,
      0 -8px 18px #ff8c00;
  }
  100% {
    text-shadow:
      0 0 8px #fff2cc,
      0 -6px 14px #ffd27d,
      0 -12px 24px #ff6a00;
  }
}


@media (max-width: 768px) {
  .footer-strip .fire-text {
    animation-duration: 1.8s;
    letter-spacing: 0.1em;
  }
}
