/* ============================================
   GLOBAL FOOTER
   ============================================ */
.footer {
  padding: 40px 24px;
  background: #050505;
  border-top: 1px solid rgba(139, 0, 0, 0.3);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 900px;
}

.footer-logo {
  flex: 0 0 auto;
}

.footer-logo img {
  display: block;
  height: 80px;
  margin: 300 30;
  width: auto;
}

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-copy {
  text-align: left;
}

.footer-tagline {
  color: var(--kfr-red, #ff0000);
  font-family: var(--heading-font, 'America Faster', Impact, sans-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-neon {
  color: #000000;
  text-shadow:
    0 0 4px rgba(220, 45, 255, 0.8),
    0 0 6px rgba(192, 45, 255, 0.6),
    0 0 9px rgba(171, 45, 255, 0.4),
    0 0 13px rgba(174, 45, 255, 0.3);
  animation: footer-neon-pulse 3.8s ease-in-out infinite;
}

@keyframes footer-neon-pulse {
  0%, 100% {
    text-shadow:
      0 0 3px rgba(239, 59, 255, 0.6),
      0 0 6px rgba(244, 45, 255, 0.45),
      0 0 10px rgba(230, 45, 255, 0.3),
      0 0 15px rgba(209, 45, 255, 0.2);
  }
  50% {
    text-shadow:
      0 0 6px rgba(230, 45, 255, 0.9),
      0 0 11px rgba(223, 45, 255, 0.7),
      0 0 14px rgba(241, 45, 255, 0.5),
      0 0 19px rgba(234, 45, 255, 0.35);
  }
}
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-copy {
    text-align: center;
  }
}
