/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--card-background) 100%);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-link {
  color: var(--text-80);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.footer-link:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-link:hover:after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-60);
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Footer Widgets Grid */
.footer-widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-widget h3 {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  background: var(--card-background-40);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-link:hover {
  background: var(--card-background-60);
  color: var(--text-color);
  transform: translateY(-2px);
  border-color: var(--border-color);
}

.footer-category-list,
.footer-games-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-category-list li,
.footer-games-list li {
  margin-bottom: 0.75rem;
}

.footer-category-list li:last-child,
.footer-games-list li:last-child {
  margin-bottom: 0;
}

.footer-category-list a,
.footer-games-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-category-list a:hover,
.footer-games-list a:hover {
  color: var(--text-color);
  padding-left: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-widgets-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
