#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: #111;
  color: #fff;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: none;
}

#cookie-banner p {
  margin: 0 0 14px;
  line-height: 1.5;
  font-size: 14px;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#cookie-banner button {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

#cookie-accept {
  background: #d4af37;
  color: #000;
}

#cookie-decline {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}