/* style.css — Footer v1 Neon Glow */
/* Яркий неон, пульсация, крипто-вайб, полностью адаптивный, без тяжёлых эффектов */

.footer-v1 {
  background: var(--background-color, linear-gradient(to bottom, #0a001f, #1a0033));
  color: var(--text-color, #d0d0ff);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 255, 234, 0.25);
}

/* Фоновый неоновый эффект (лёгкий, не грузит) */
.footer-v1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 255, 234, 0.12), transparent 60%);
  pointer-events: none;
  animation: pulse-glow 12s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes pulse-glow {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

/* Контейнер */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Верхняя часть */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3.5rem;
  margin-bottom: 4rem;
}

/* Логотип */
.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #00ffea, #ff00aa, #00ffea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: neon-shine 7s linear infinite;
}

@keyframes neon-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Заголовки колонок */
.footer-column h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 10px rgba(0, 255, 234, 0.4);
}

/* Ссылки */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #d0d0ff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s;
  position: relative;
}

.footer-links a:hover {
  color: #00ffea;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #00ffea;
  transition: width 0.4s;
  box-shadow: 0 0 12px rgba(0, 255, 234, 0.5);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Социальные сети */
.footer-social {
  display: flex;
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  font-size: 1.8rem;
  color: #d0d0ff;
  transition: all 0.3s;
}

.footer-social a:hover {
  color: #00ffea;
  transform: translateY(-4px);
  text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

/* Джекпот */
.footer-jackpot {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 3rem 0 2rem;
  color: #ff00aa;
  text-shadow: 0 0 25px rgba(255, 0, 170, 0.6);
  background: rgba(255, 0, 170, 0.08);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 0, 170, 0.3);
}

/* Нижняя часть */
.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 255, 234, 0.15);
  font-size: 1rem;
  opacity: 0.85;
}

/* Адаптивность */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-jackpot {
    font-size: 1.6rem;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  .footer-logo {
    font-size: 2rem;
  }
}