/* cookie-popup.css */

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  margin: auto;
  background: #0a1a33; /* тёмно-синяя подложка */
  padding: 20px;
  border: 2px solid #1e2e4d; /* чуть светлее рамка */
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  font-family: sans-serif;
  color: #ffffff;
  z-index: 1000;
  display: none;
  box-sizing: border-box;
}

#cookie-popup p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
}

#cookie-popup a {
  color: #66b2ff;
  text-decoration: underline;
}

#cookie-popup a:hover {
  color: #99ccff;
}

#cookie-popup button {
  background-color: #1e90ff;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
  min-width: 100px;
}

#cookie-popup button:hover {
  background-color: #3399ff;
}

/* Адаптивность */
@media (max-width: 480px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 16px;
    border-radius: 8px;
  }

  #cookie-popup p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  #cookie-popup button {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    min-width: auto;
    border-radius: 6px;
  }
}
