/* Общие стили для всех Footer */

.footer {
  background: var(--background-color, #0f0f1a) !important;
  color: var(--text-color, #ffffff) !important;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-logo .highlight {
  color: var(--accent-color, #00ffea);
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-social a {
  font-size: 1.6rem;
  color: inherit;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-jackpot {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}