.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(6,16,31,.96);
  color: var(--text);
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
}
.consent-copy {
  max-width: 620px;
}
.consent-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 14px;
}
.consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.consent-btn,
.consent-preferences {
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}
.consent-btn {
  padding: 10px 12px;
}
.consent-btn-primary {
  border-color: transparent;
  background: var(--gold);
  color: #06101f;
}
.consent-btn-secondary {
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.consent-preferences {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 99990;
  padding: 7px 10px;
  background: rgba(6,16,31,.78);
  color: var(--muted);
  opacity: .72;
}
.consent-preferences:hover,
.consent-preferences:focus-visible {
  opacity: 1;
  color: var(--text);
}
[data-theme="light"] .consent-banner {
  border-color: rgba(7,18,36,.12);
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 54px rgba(7,18,36,.18);
}
[data-theme="light"] .consent-btn-secondary,
[data-theme="light"] .consent-preferences {
  background: rgba(7,18,36,.05);
}
@media (max-width: 700px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .consent-actions {
    justify-content: stretch;
  }
  .consent-btn {
    flex: 1 1 150px;
  }
}
