:root {
  --cb-bg: #0f1720;
  --cb-color: #e6eef8;
  --cb-accent: #0a84ff;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  margin: auto;
  max-width: 1100px;
  background: var(--cb-bg);
  color: var(--cb-color);
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 9999;
  font-family: Inter, system-ui, Segoe UI, Arial;
}
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  flex: 1;
}
.cookie-banner .cb-actions {
  display: flex;
  gap: 8px;
}
.cookie-banner button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.cookie-banner button.accept {
  background: var(--cb-accent);
  border-color: transparent;
  color: #fff;
}
.cookie-banner button.dismiss {
  background: transparent;
}
.cookie-banner a {
  color: var(--cb-accent);
  text-decoration: underline;
}
.cookie-banner.hidden {
  display: none !important;
}
