.privacy-banner {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(960px, calc(100% - 28px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(18, 16, 39, 0.97);
  box-shadow: 0 22px 70px rgba(8, 7, 25, 0.34);
  transform: translateX(-50%);
}

.privacy-banner-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.privacy-banner-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
  line-height: 1.45;
}

.privacy-banner-copy a {
  display: inline-flex;
  margin-top: 6px;
  color: #55ded8;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-banner-actions {
  display: flex;
  gap: 8px;
}

.privacy-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: pointer;
  font: 800 0.82rem/1 system-ui, sans-serif;
}

.privacy-button-primary {
  border-color: #f4c76f;
  color: #111329;
  background: #f4c76f;
}

.privacy-button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-inline-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  color: #62687b;
  font: 700 0.84rem/1.4 system-ui, sans-serif;
  background: #fbf8f1;
}

.legal-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .privacy-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    bottom: 10px;
    padding: 16px;
  }

  .privacy-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-button {
    padding-inline: 10px;
    white-space: normal;
  }
}
