.aq-consent {
  position: fixed;
  inset: auto 20px 20px;
  z-index: 200;
  width: min(720px, calc(100vw - 40px));
  margin-inline: auto;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--aq-border-strong, rgba(121, 213, 222, 0.38));
  border-radius: 20px;
  color: var(--aq-text, #f3f7fa);
  background: rgba(7, 17, 31, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.aq-consent[hidden] {
  display: none;
}

.aq-consent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 30px;
  align-items: end;
}

.aq-consent-copy h2 {
  margin: 0 0 7px;
  color: var(--aq-text, #f3f7fa);
  font-family: var(--aq-display, sans-serif);
  font-size: 19px;
  line-height: 1.2;
}

.aq-consent-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--aq-text-soft, #c1ceda);
  font-size: 13px;
  line-height: 1.6;
}

.aq-consent-copy a {
  color: var(--aq-accent, #62dce5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aq-consent-actions {
  display: flex;
  gap: 9px;
}

.aq-consent-button {
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--aq-border-strong, rgba(121, 213, 222, 0.38));
  border-radius: 11px;
  color: var(--aq-text, #f3f7fa);
  background: var(--aq-surface, #0b1726);
  cursor: pointer;
  font: 750 12px/1.2 var(--aq-body, sans-serif);
  white-space: nowrap;
}

.aq-consent-button-primary {
  border-color: transparent;
  color: var(--aq-accent-ink, #032027);
  background: linear-gradient(135deg, var(--aq-accent, #62dce5), var(--aq-accent-strong, #7ff2cf));
}

.aq-consent-button:hover {
  border-color: var(--aq-accent, #62dce5);
}

@media (max-width: 660px) {
  .aq-consent {
    inset: auto 12px 12px;
    width: calc(100vw - 24px);
    border-radius: 16px;
  }

  .aq-consent-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aq-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .aq-consent-button {
    white-space: normal;
  }
}

@media print {
  .aq-consent {
    display: none !important;
  }
}
