
#cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}


#cookie-banner .cookie-card {
  background: #0f2f2f;
  color: #fff;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  text-align: center;
  animation: fadeInScale 0.3s ease;
}

#cookie-banner p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 15px;
}

#cookie-banner a {
  color: #9fdede;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  min-width: 140px;
}

.btn-secondary {
  background: #e0e0e0;
  color: #000;
}

.btn-primary {
  background: #1c6f6f;
  color: #fff;
}


@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.privacy-scroll {
  max-height: 300px;
  overflow-y: auto;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 12px;
  text-align: left;
  font-size: 13px;
}

.privacy-close {
  position: absolute;
  top: 15px;
  right: 30px;

  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  border-radius: 50%;

  width: 34px;
  height: 34px;
  font-size: 16px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease;
  font-weight: 300;
}

.privacy-close:hover {
  background: rgba(255,255,255,0.3);
}