#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  animation: slideUp 0.3s ease-out;
}

#cookie-popup p {
  font-size: 14px;
  margin: 0 0 12px 0;
}

#cookie-popup button {
  background: #0056b3;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

#cookie-popup button:hover {
  background: #0062ca;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
