/* AurexisLabs — cookie consent + ads preference banner */
.ax-consent-root {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  padding: max(12px, env(safe-area-inset-bottom, 0px)) 14px 14px;
  pointer-events: none;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.ax-consent-card {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(12, 18, 30, 0.96);
  border: 1px solid rgba(46, 242, 200, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  padding: 16px 16px 14px;
  color: #e6eaf0;
}
.ax-consent-card h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2ef2c8;
}
.ax-consent-card p {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #9aa6b5;
}
.ax-consent-card a {
  color: #2ef2c8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ax-consent-opts {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}
.ax-consent-opt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: #c8d0db;
  line-height: 1.35;
}
.ax-consent-opt input {
  margin-top: 3px;
  accent-color: #00c9a7;
}
.ax-consent-opt strong {
  color: #e6eaf0;
  font-weight: 600;
}
.ax-consent-opt .hint {
  display: block;
  color: #7f8b9a;
  font-size: 0.78rem;
  margin-top: 2px;
}
.ax-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.ax-consent-actions button {
  appearance: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #e6eaf0;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
}
.ax-consent-actions button:hover {
  border-color: rgba(46, 242, 200, 0.4);
}
.ax-consent-actions .ax-c-primary {
  background: linear-gradient(135deg, #00c9a7, #2ef2c8);
  color: #041018;
  border-color: transparent;
}
.ax-consent-actions .ax-c-ghost {
  color: #9aa6b5;
}
.ax-consent-manage {
  position: fixed;
  z-index: 99998;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  appearance: none;
  border: 1px solid rgba(46, 242, 200, 0.28);
  background: rgba(12, 18, 30, 0.9);
  color: #2ef2c8;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.ax-consent-manage:hover {
  border-color: rgba(46, 242, 200, 0.55);
}
@media (max-width: 520px) {
  .ax-consent-actions {
    flex-direction: column-reverse;
  }
  .ax-consent-actions button {
    width: 100%;
  }
}
