.footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.85);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
  color: white;
}

.social-link i {
  font-size: 1.5rem;
  width: 24px;
  text-align: center;
}

.social-link.discord:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: #5865F2;
  color: #5865F2;
}

.social-link.github:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

.social-link.twitch:hover {
  background: rgba(145, 70, 255, 0.15);
  border-color: #9146FF;
  color: #9146FF;
}

.discord-username {
  padding: 1rem;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 10px;
  margin-top: 1rem;
}

.discord-username p {
  margin: 0 0 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.discord-username .username {
  color: #5865F2;
  background: rgba(88, 101, 242, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: all;
}

.discord-username .username:hover {
  background: rgba(88, 101, 242, 0.25);
  transform: scale(1.05);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links i {
  width: 20px;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.made-with {
  color: rgba(255, 255, 255, 0.6);
}

.made-with i {
  margin: 0 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-link:hover {
    transform: translateX(0);
  }
  
  .footer-links a:hover {
    transform: translateX(0);
  }
}