footer.footer-links {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px; /* tighter spacing */
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  font-size: 14px;
  background: none;
  z-index: 1000;
  white-space: nowrap; /* keep it all in one line */
}

footer.footer-links a {
  color: #999 !important;
  text-decoration: none;
}

footer.footer-links a:hover {
  color: skyblue;
}

/* Make the "|" separators white */
footer.footer-links a + span,
footer.footer-links span {
  color: #fff !important;
}


/* Cookie Banner Styles */
#cookie-banner {
  position: fixed !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: max-content !important;
  width: auto !important;
  background:#11100e;
  color: white !important;
  padding: 25px 30px !important;
  z-index: 9999999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  border-radius: 12px !important;
  border: 2px solid skyblue !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

#cookie-banner.hide {
  display: none !important;
}

/* Content area with icon and text */
.cookie-content-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

#cookie-banner img {
  height: 90px;
  width: 90px;
  flex-shrink: 0;
  left: 120px !important;
  position: relative;
}

#cookie-banner span {
  font-size: 15px;
  line-height: 1.6;
  white-space: nowrap;
}

#cookie-banner a {
  color: #9cf !important;
  text-decoration: underline;
  font-weight: 500;
}

#cookie-banner a:hover {
  color: #bdf !important;
}

/* Button container */
.cookie-buttons-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
#cookie-banner {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}


#cookie-banner span {
  display: block;
  margin-bottom: 50px;
  white-space: normal;
}

#cookie-banner span a {
  display: block;
}

#cookie-banner div {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

#cookie-banner button {
  position: relative !important;
  display: inline-block !important;
  padding: 5px 10px !important;
  border: 2px solid #3f3d38 !important;
  border-radius: 9px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: opacity 0.3s ease, transform 0.2s ease !important;
  min-width: 90px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: radial-gradient(#302d26, #070706);
}



#cookie-banner button:hover {

  transform: translateY(-2px) !important;
  border: 2px solid skyblue !important;
  background:radial-gradient(#3398CC,#32332c );
}


#cookie-banner button:active {
  transform: translateY(0) !important;
  background:radial-gradient(#eefffd , #59c9ec );
  border: 2px solid black !important;
}

/* Body padding when banner is visible */
body.cookie-banner-visible {
  padding-bottom: 140px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #cookie-banner {
    bottom: 20px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    padding: 20px !important;
    gap: 15px !important;
  }
  
  .cookie-content-wrapper {
    flex-direction: column;
    text-align: center;
    white-space: normal;
  }
  
  #cookie-banner span {
    white-space: normal;
  }
  
  .cookie-buttons-wrapper {
    flex-direction: column;
  }
  #cookie-banner a {
  color: #9cf !important;
  text-decoration: underline;
  font-weight: 500;
}
  #cookie-banner button {
    width: 100%;
    min-width: unset;
  }
  
  body.cookie-banner-visible {
    padding-bottom: 160px;
  }
}

@media (max-width: 480px) {
  #cookie-banner {
    font-size: 14px;
  }
  
  #cookie-banner button {
    font-size: 13px !important;
    padding: 10px 20px !important;
  }
}

.hidden { display: none !important; }

@keyframes fadeInUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.animate-fadeIn { animation: fadeInUp 0.4s ease-out; }
