.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 1;
  transition: bottom 0.5s ease;
  font-family: Arial, sans-serif;
}
.cookie-banner.show { bottom: 0; }
.cookie-banner .cookie-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cookie-banner p {
  margin: 0 0 10px 0;
  text-align: center;
  font-size: 0.95rem;
  color: white;
}
.cookie-banner a { color: #0af; text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-buttons button {
  padding: 7px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}
#accept-cookie { background: #0af; color: #fff; }
#reject-cookie { background: #555; color: #fff; }
.cookie-buttons button:hover { opacity: 0.8; }
@media (max-width: 620px) {
  .cookie-buttons { flex-direction: column; width: 100%; }
  .cookie-buttons button { width: 100%; }
}