/* Footer Styles */
footer {
  background-color: rgba(8, 12, 36, 0.95);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
  color: var(--primary-color);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-dim);
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--primary-color);
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
}

.copyright p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 2rem 1rem 1rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .copyright p {
    font-size: 0.75rem;
  }
}