.privacy-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(760px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  margin-inline: auto;
  border: 1px solid var(--line-dark, #2a3941);
  border-radius: 14px;
  background: var(--ink, #0b151c);
  box-shadow: 12px 16px 42px rgb(0 0 0 / 28%);
  color: var(--paper, #f6f7f2);
  padding: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.privacy-banner[hidden] { display: none; }
.privacy-banner h2 { margin: 0; font-size: 22px; line-height: 1.2; }
.privacy-banner p { margin: 10px 0 0; color: #c7d1cd; }
.privacy-banner a { color: var(--lime, #c8ff4d); text-underline-offset: 4px; }

.privacy-consent-error {
  margin-bottom: 16px;
  color: #ffb4a3;
  font-weight: 700;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.privacy-action {
  min-height: 44px;
  border: 1px solid #75847e;
  border-radius: 8px;
  background: transparent;
  color: var(--paper, #f6f7f2);
  padding: 9px 15px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.privacy-action:hover { border-color: var(--lime, #c8ff4d); }
.privacy-action:disabled { cursor: wait; opacity: .65; }
.privacy-action-primary { border-color: var(--lime, #c8ff4d); background: var(--lime, #c8ff4d); color: #0b151c; }

.privacy-settings-button {
  border: 0;
  background: transparent;
  color: var(--paper, #f6f7f2);
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.privacy-settings-button:hover { color: var(--lime, #c8ff4d); }

.privacy-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.privacy-footer-links a { color: var(--paper, #f6f7f2); text-underline-offset: 5px; }

.newsletter-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  margin: 12px 0 0 !important;
  color: #b9c6c8;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

.newsletter-consent input {
  flex: 0 0 auto;
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  accent-color: var(--lime, #c8ff4d);
}

.newsletter-consent a { color: inherit; text-underline-offset: 4px; }

.privacy-page {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.privacy-page > header { margin-bottom: 54px; }
.privacy-page h1 { margin: 10px 0 18px; font-size: clamp(44px, 7vw, 76px); line-height: 1; letter-spacing: -.04em; }
.privacy-page h2 { margin: 48px 0 14px; font-size: clamp(25px, 3vw, 34px); line-height: 1.16; }
.privacy-page h3 { margin: 28px 0 10px; font-size: 20px; }
.privacy-page p,
.privacy-page li { color: var(--ink-soft, #34444d); }
.privacy-page a { color: var(--blue, #2457e6); text-underline-offset: 4px; }
.privacy-page ul { padding-left: 22px; }
.privacy-page li + li { margin-top: 8px; }

@media (max-width: 560px) {
  .privacy-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 18px;
  }
  .privacy-actions { display: grid; }
  .privacy-action { width: 100%; }
}
