.cookie-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 20vh;
  background: rgba(15,15,25,0.95);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.4s ease;
  z-index: 99999;
}

.cookie-modal.show {
  bottom: 0;
}

.cookie-content {
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.cookie-content button {
  margin-top: 10px;
  padding: 10px 25px;
  border: none;
  background: #0d6efd;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
