.privacy-consent-banner {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  width: min(100% - 36px, 480px);
  padding: 18px;
  border: 1px solid rgba(116, 232, 255, .34);
  border-radius: 16px;
  background: rgba(5, 17, 31, .98);
  color: #e6f6fb;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.privacy-consent-banner[hidden] { display: none; }
.privacy-consent-banner h2 { margin: 0 0 7px; color: #87f4ff; font-size: 1.08rem; }
.privacy-consent-banner p { margin: 0; color: #bdd4df; font-size: .84rem; line-height: 1.5; }
.privacy-consent-banner a { color: #87f4ff; }
.privacy-consent-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 15px; }
.privacy-consent-actions button,
.privacy-settings-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #51dff2;
  border-radius: 9px;
  font: 800 .82rem/1.1 Inter, system-ui, sans-serif;
  cursor: pointer;
}
.privacy-consent-reject { background: transparent; color: #e6f6fb; }
.privacy-consent-accept { background: #51dff2; color: #03101d; }
.privacy-consent-actions button:focus-visible,
.privacy-settings-button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.privacy-settings-button {
  position: fixed;
  z-index: 9998;
  right: 14px;
  bottom: 14px;
  min-height: 36px;
  padding: 8px 11px;
  border-color: rgba(116, 232, 255, .4);
  background: rgba(5, 17, 31, .94);
  color: #bdd4df;
  font-size: .72rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}
.privacy-settings-button[hidden] { display: none; }
@media (max-width: 560px) {
  .privacy-consent-banner { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 16px; }
  .privacy-consent-actions { align-items: stretch; flex-direction: column-reverse; }
  .privacy-consent-actions button { width: 100%; }
}
