/* ==== Cookie Banner (Modern Blue Gradient) ==== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0b2f67, #3bb9c3);
  color: #e3f6f5;
  padding: 18px 28px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 90%;
  max-width: 520px;
  display: none;
  animation: swoopIn 0.6s ease-out;
  font-family: "Poppins", sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.cookie-banner p {
  font-size: 15px;
  margin: 0 0 12px;
  color: #e9f9ff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cookie-banner a {
  color: #a5f3fc;
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #a5f3fc;
  color: #0b2f67;
  border: 2px solid #0b2f67;
  padding: 10px 22px;
  margin: 5px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cookie-banner button:hover {
  background-color: #0b2f67;
  color: #fff;
  border-color: #3bb9c3;
}

/* ==== Disclaimer ==== */
.disclaimer {
  background: linear-gradient(135deg, #0b2f67, #3bb9c3);
  color: #e3f6f5;
  padding: 18px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 3px dashed rgba(255, 255, 255, 0.4);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif;
}

.disclaimer strong {
  font-weight: 700;
  color: #a5f3fc;
}

.disclaimer a {
  color: #a5f3fc;
  text-decoration: none;
  font-weight: 600;
}

.disclaimer a:hover {
  text-decoration: underline;
}

/* ==== Animation ==== */
@keyframes swoopIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(25px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
