.footer {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  border-top: 1px solid rgba(220, 20, 60, 0.3);
  padding: 64px 24px 32px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h3 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-red);
}

.age-warning {
  background: rgba(220, 20, 60, 0.1);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: var(--text-gray);
  margin-top: 32px;
}

.age-warning strong {
  color: var(--bright-red);
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(220, 20, 60, 0.2);
  color: var(--text-gray);
  font-size: 13px;
}
