#cookieBanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(13, 16, 34, 0.97);
  border-top: 1px solid rgba(140, 120, 255, 0.35);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  color: #e8e6f5;
  font: 13.5px/1.5 system-ui, sans-serif;
}
#cookieBanner p { margin: 0; max-width: 640px; color: #c9c2f0; }
#cookieBanner a { color: #9ff0e8; }
#cookieBannerActions { display: flex; gap: 10px; flex-shrink: 0; }
#cookieBannerActions button {
  padding: 10px 18px;
  font: inherit;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(140, 120, 255, 0.4);
  background: transparent;
  color: #e8e6f5;
}
#cookieBannerActions button:hover { border-color: rgba(140, 120, 255, 0.8); }
#cookieAccept {
  background: linear-gradient(120deg, #9ff0e8, #b8a6ff) !important;
  color: #14102e !important;
  border: none !important;
}
@media (max-width: 560px) {
  #cookieBanner { flex-direction: column; align-items: stretch; }
  #cookieBannerActions { justify-content: stretch; }
  #cookieBannerActions button { flex: 1; }
}
