/* High Flyfe v182: consent UI for optional analytics */
.hf-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 10000;
  width: min(760px, calc(100% - 28px));
  transform: translateX(-50%);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(13,13,11,.96);
  color: #f5f3ec;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hf-consent[hidden] { display: none !important; }
.hf-consent__title {
  margin: 0 0 8px;
  font: 700 1rem/1.25 Inter, system-ui, sans-serif;
}
.hf-consent__text {
  margin: 0;
  color: rgba(245,243,236,.78);
  font: 400 .92rem/1.55 Inter, system-ui, sans-serif;
}
.hf-consent__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hf-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.hf-consent__button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: 600 .9rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}
.hf-consent__button:hover,
.hf-consent__button:focus-visible {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
}
.hf-consent__button:focus-visible,
.hf-privacy-settings:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.hf-privacy-settings {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  opacity: .82;
}
.hf-privacy-settings:hover { opacity: 1; }
@media (max-width: 640px) {
  .hf-consent {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 17px;
    border-radius: 16px;
  }
  .hf-consent__actions { display: grid; grid-template-columns: 1fr; }
  .hf-consent__button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hf-consent { scroll-behavior: auto; }
}
