.site-footer {
  color: #ddd;
  padding: 20px 20px 20px;
  font-family: "Arial", sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  z-index: 5;
}
.tiger-logo{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15%;
    max-width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
}

.tiger-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%)
           brightness(0.2) 
           contrast(0.9)
           opacity(0.3); 
    user-select: none;
}

.footer-container {
    position: relative;
    z-index: 5;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;
}

.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.footer-about-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.logo img {
  width: 200px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.logo img:hover {
  opacity: 0.9;
}

.disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

.age-warning {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.age {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  color: #bf2929;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
}

.warning {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-nav-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links li a {
  text-decoration: none;
  color: #cecece;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(3px);
}


.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.payment-icons i {
  font-size: 18px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.payment-icons i:hover {
  opacity: 1;
}

.payment-icons .fa-bitcoin { color: #f7931a; }
.payment-icons .fa-litecoin-ltc { color: #b8b8b8; }
.payment-icons .fa-dollar-sign {
  color: #26a17b;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
  text-align: center;
}
.payment-icons .fa-cc-visa { color: #1a1f71; }
.payment-icons .fa-cc-mastercard { color: #eb001b; }
.payment-icons .fa-cc-amex { color: #2e77bc; }

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Compact Footer Bottom Styles */
.footer-bottom {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icons a:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-2px);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-logos-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logos-compact img {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-logos-compact img:hover {
  opacity: 0.8;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-about {
    grid-column: span 3;
    margin-bottom: 20px;
  }
  
  .payment-icons {
    gap: 12px;
  }
  
  .payment-icons i {
    font-size: 16px;
  }
  
  .payment-icons .fa-dollar-sign {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-about {
    grid-column: span 2;
  }
  
  .payment-icons {
    gap: 10px;
  }
  
  .payment-icons i {
    font-size: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-social-icons {
    order: 1;
  }
  
  .footer-logos-compact {
    order: 2;
  }
  
  .footer-copyright {
    order: 3;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: span 1;
  }

  .age-warning {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav-section {
    margin-bottom: 15px;
  }
  
  .payment-icons {
    gap: 8px;
  }
  
  .payment-icons i {
    font-size: 14px;
  }
  
  .payment-icons .fa-dollar-sign {
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 9px;
  }
}
