/* Footer Styles - Gaming Dark Design */
.site-footer {
  background: linear-gradient(180deg, rgba(5, 8, 22, 0.85) 0%, rgba(2, 4, 12, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.9);
  padding: 50px 0 30px;
  margin-top: 100px;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.4), rgba(0, 212, 255, 0.6), rgba(191, 64, 255, 0.4), transparent);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo-link img,
.footer-logo-link .logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
  transition: all 0.3s ease;
}

.footer-logo-link:hover img,
.footer-logo-link:hover .logo-img {
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
}

.footer-social-link:nth-child(1):hover,
.footer-social-link:nth-child(2):hover {
  background: rgba(0, 136, 204, 0.2);
  border-color: rgba(0, 136, 204, 0.5);
  color: #0088cc;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
}

.footer-social-link:nth-child(3):hover {
  background: rgba(69, 102, 163, 0.2);
  border-color: rgba(69, 102, 163, 0.5);
  color: #4566A3;
  box-shadow: 0 4px 20px rgba(69, 102, 163, 0.3);
}

.footer-social-link:nth-child(4):hover {
  background: rgba(114, 137, 218, 0.2);
  border-color: rgba(114, 137, 218, 0.5);
  color: #7289DA;
  box-shadow: 0 4px 20px rgba(114, 137, 218, 0.3);
}

.footer-nav-columns {
  display: flex;
  gap: 60px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
}

.footer-nav a:hover {
  color: #00D4FF;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), rgba(191, 64, 255, 0.3), rgba(57, 255, 20, 0.2), transparent);
  background-size: 200% 100%;
  margin: 35px 0 25px;
  animation: footerDividerPulse 5s linear infinite;
}

@keyframes footerDividerPulse {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.footer-copyright {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-copyright p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-copyright a {
  color: #00D4FF;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-copyright a:hover {
  color: #0066FF;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .site-footer {
    padding: 35px 0 20px;
    margin-top: 60px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-nav-columns {
    gap: 30px;
    flex-direction: row;
    justify-content: center;
  }
  
  .footer-nav-col {
    align-items: center;
  }
  
  .footer-nav {
    align-items: center;
  }
  
  .footer-logo-link img,
  .footer-logo-link .logo-img {
    height: 35px;
  }
  
  .footer-nav a {
    font-size: 0.9rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .footer-copyright {
    font-size: 11px;
  }
  
  .footer-copyright p {
    font-size: 11px;
    margin: 6px 0;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
  }
  
  .site-footer {
    padding: 30px 0 18px;
    margin-top: 50px;
  }
  
  .footer-nav-columns {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-logo-link img,
  .footer-logo-link .logo-img {
    height: 30px;
  }
  
  .footer-nav a {
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    font-size: 10px;
  }
  
  .footer-copyright p {
    font-size: 10px;
    margin: 5px 0;
  }
  
  .footer-divider {
    margin: 25px 0 18px;
  }
}
