/* Unified footer + newsletter + sticky CTA */
body { padding-bottom: 70px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 0, 51, 0.15);
}
.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-nav a:hover {
  color: var(--red);
  text-shadow: 0 0 10px var(--red-glow);
}
.footer {
  text-align: center;
  padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 2rem);
  color: var(--text-dim, #4a4a4a);
  font-size: clamp(0.75rem, 2vw, 0.8rem);
  border-top: 1px solid rgba(255, 0, 51, 0.15);
  margin-top: clamp(2rem, 6vw, 4rem);
}
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; margin-bottom: 1.5rem; }
.footer-contact a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
.footer-contact a:hover { color: var(--red); text-shadow: 0 0 10px var(--red-glow); }
.social-icons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.social-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 0, 51, 0.5); border-radius: 50%; color: var(--red);
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.4); filter: drop-shadow(0 0 8px var(--red-glow));
}
.social-icon:hover {
  box-shadow: 0 0 30px var(--red-glow), 0 0 50px var(--red-glow);
  transform: scale(1.15); background: rgba(255, 0, 51, 0.15);
}
.newsletter-widget {
  max-width: min(480px, calc(100% - 2rem)); margin: clamp(1.5rem, 4vw, 2rem) auto clamp(1.5rem, 5vw, 2.5rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--bg-panel, #111); border: 1px solid rgba(255, 0, 51, 0.2);
  text-align: center;
}
.newsletter-widget h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--red); }
.newsletter-widget p { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  padding: 0.75rem 1rem; background: #0a0a0a; border: 1px solid rgba(255,0,51,0.3);
  color: #fff; font-family: inherit; font-size: 0.85rem; min-width: 200px;
}
.newsletter-form button {
  padding: 0.75rem 1.25rem; background: var(--red); border: none; color: #0a0a0a;
  font-family: inherit; font-weight: bold; cursor: pointer; transition: all 0.3s ease;
}
.newsletter-form button:hover { box-shadow: 0 0 25px var(--red-glow); transform: scale(1.02); }
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 4vw, 2rem);
  padding-bottom: max(clamp(0.5rem, 2vw, 0.75rem), env(safe-area-inset-bottom, 0px) + 0.5rem);
  background: rgba(10, 10, 10, 0.95); border-top: 1px solid rgba(255, 0, 51, 0.3);
  display: flex; justify-content: center; align-items: center; gap: 1rem; z-index: 999;
  box-shadow: 0 -5px 30px rgba(255, 0, 51, 0.15);
}
.sticky-cta a {
  padding: 0.6rem 1.25rem; border: 2px solid var(--red); color: var(--red);
  text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease;
}
.sticky-cta a:hover { background: var(--red); color: #0a0a0a; box-shadow: 0 0 25px var(--red-glow); }
@media (max-width: 768px) {
  .sticky-cta { flex-direction: column; padding: 0.6rem 1rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 100%; min-height: 48px; }
  .footer { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
  .footer-contact { gap: 1rem; font-size: 0.85rem; }
  .social-icon { width: 40px; height: 40px; }
}
