.slx-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  max-width: 680px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  background: #0b1120;
  color: #e6f4ff;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  font-size: 0.92rem;
  line-height: 1.45;
  display: none;
}
.slx-cookie-banner.is-visible {
  display: block;
  animation: slx-cookie-in 0.3s ease-out;
}
@keyframes slx-cookie-in {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.slx-cookie-banner__title {
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.slx-cookie-banner__text {
  margin: 0 0 0.9rem 0;
}
.slx-cookie-banner__text a {
  color: #00d4ff;
  text-decoration: underline;
}
.slx-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.slx-cookie-banner__btn {
  appearance: none;
  border: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.slx-cookie-banner__btn--primary {
  background: #00d4ff;
  color: #001f3d;
}
.slx-cookie-banner__btn--primary:hover {
  background: #33dcff;
}
.slx-cookie-banner__btn--ghost {
  background: transparent;
  color: #e6f4ff;
  border: 1px solid rgba(230, 244, 255, 0.35);
}
.slx-cookie-banner__btn--ghost:hover {
  background: rgba(230, 244, 255, 0.08);
}
@media (max-width: 480px) {
  .slx-cookie-banner { padding: 1rem; font-size: 0.88rem; }
  .slx-cookie-banner__btn { flex: 1 1 100%; }
}
