.cookie-modal {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: 480px;
  width: 90%;
  color: #fff;
  font-size: 14px;
  z-index: 9999;
  display: none;
  animation: fadeIn 0.6s ease forwards;
  transition: all 0.3s ease-out;
}
.cookie-modal-content p {
  color: #000;
}
.cookie-modal-content a {
  color: #000;
  text-decoration: underline;
}
.cookie-modal-content a:hover {
  color: var(--accent-color, #f90);
}
.btn-accept {
  margin-top: 15px;
  background: var(--accent-color, #f90);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-accept:hover {
  filter: brightness(90%);
}

.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-20px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 768px) {
    .cookie-modal {
        bottom: 100px;
        border-radius: 25px;
    }
}