#cookie-hint {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 41, 59, 0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-hint-box {
  background: #fff;
  color: #22223b;
  padding: 2rem 2.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 400px;
  text-align: center;
  font-size: 1.1rem;
  animation: fadeIn 0.6s;
}
.cookie-hint-box button {
  margin-top: 1.2rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 0.7rem 2.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-hint-box button:hover {
  background: #1e40af;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95);}
  to { opacity: 1; transform: scale(1);}
}