.footer {
  width: 100%;
  padding: 2rem;
  background: var(--card-background);
  border-top: 1px solid var(--card-border);
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.footer-text {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.8;
}

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

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 0;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1rem 0.8rem;
  }

  .footer-content {
    gap: 0.8rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }
} 