.cookie-modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  z-index: 1000;
  text-align: center;
}

.cookie-modal__content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal__content a {
  color: #00bfff;
  text-decoration: underline;
}

.cookie-modal__button {
  background: #00bfff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.cookie-modal__button:hover {
  background: #008fcc;
}

@media (max-width: 768px) {
  .cookie-modal {
      bottom: 10px;
      width: 95%;
  }

  .cookie-modal__button {
      font-size: 13px;
      padding: 8px 16px;
  }
}
