/* Discord Banner - More modern styling */
.discord-banner {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(88, 101, 242, 0.2);
  position: relative;
  overflow: hidden;
  width: auto;
}

.discord-banner-content {
  width: 85%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discord-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.discord-text {
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
  position: relative;
  z-index: 1;
}

.discord-button {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discord-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Modern Footer */
.footer {
  background: #0D0D0D;
  color: #fff;
  padding: 60px 0 0;
  border-top: 1px solid rgba(221, 2, 60, 0.3);
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #dd023c 50%, transparent 100%);
}

.footer-container {
  width: 85%;
  max-width: 1400px;
}

.footer-grid {
  margin-bottom: 50px;
}

/* Navigation Grid */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #dd023c;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #dd023c, transparent);
  border-radius: 1px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  padding: 4px 0;
  position: relative;
}

.footer-column a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-column a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #dd023c;
  transition: width 0.2s ease;
}

.footer-column a:hover::before {
  width: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  max-width: 80px;
  height: auto;
  flex-shrink: 0;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.trading-as {
  font-weight: 400;
  color: #888;
  font-size: 0.85rem;
}

.copyright {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.legal-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.separator {
  color: rgba(255, 255, 255, 0.2);
}

/* Payment Methods Section */
.footer-bottom-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.payment-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.payment-icons i {
  font-size: 28px;
  color: #b3b3b3;
  transition: all 0.2s ease;
}

.payment-icons i:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Social Links Section */
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.social-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: #dd023c;
  border-color: #dd023c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(221, 2, 60, 0.3);
}

/* Mobile Styles */
@media (max-width: 1200px) {
  .discord-banner {
    padding: 16px 0;
  }

  .discord-banner-content {
    width: 90%;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .discord-text {
    font-size: 1rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-container {
    width: 90%;
  }

  .footer-grid {
    margin-bottom: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .footer-container {
    width: 95%;
  }

  .discord-banner-content {
    width: 95%;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .discord-banner {
    padding: 20px 0;
  }

  .payment-icons i {
    font-size: 24px;
  }

  .footer-logo {
    max-width: 70px;
  }
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-top: 8px;
  flex-wrap: wrap;
}

.contact-link {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-link:hover {
  color: #dd023c;
}

.contact-link i {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Update legal-info to include AS number */
.legal-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  flex-wrap: wrap;
}

.as-details {
  color: rgba(255, 255, 255, 0.3);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-info .separator {
    display: none;
  }

  .legal-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .legal-info .separator {
    display: none;
  }
}

@media (max-width: 1200px) {
  .contact-info {
    justify-content: center;
  }

  .footer-bottom-left .contact-info {
    align-items: center;
  }
}