/* --------------------------------------------------
   Nude / Akt Click Gate – FINAL FULL VERSION
   -------------------------------------------------- */

/* Wrapper for gate + gallery */
.fr-akt-wrap {
  position: relative;
  width: 100%;
}

/* Hidden checkbox toggle */
.fr-akt-toggle {
  position: absolute;
  left: -9999px;
}

/* Gate overlay sits over the gallery (no white gap) */
.fr-akt-gate {
  position: absolute;        /* overlay inside the wrapper */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;   /* no dimming */
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;   /* popup near the top */
  padding-top: 40px;         /* distance from top */
  pointer-events: none;      /* let clicks on text above go through */
  margin: 0;
}

/* Hide gate after acceptance */
.fr-akt-toggle:checked ~ .fr-akt-gate {
  display: none;
}

/* Gallery blurred + dimmed until accepted */
.fr-akt-gallery-blur {
  filter: blur(22px);
  opacity: 0.25;
  pointer-events: none;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* After acceptance → normal gallery */
.fr-akt-toggle:checked ~ .fr-akt-gallery-blur {
  filter: none;
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------
   Popup box styling
   -------------------------------------------------- */

.fr-akt-gate__box {
  max-width: 520px;
  background: #111;
  color: #fff;
  padding: 34px 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  font-size: 0.95rem;
  margin: 0 auto;
  pointer-events: auto;   /* box itself clickable */
}

.fr-akt-gate__box h2 {
  font-size: 1.45rem;
  margin: 0 0 14px;
  font-weight: 600;
  color: #ffffff !important;
}

.fr-akt-gate__box p {
  margin: 0 0 12px;
  line-height: 1.55;
  color: #ffffff !important;
}

.fr-akt-gate__buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fr-akt-gate__btn {
  border: none;
  cursor: pointer;
  padding: 11px 20px;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}

/* Blue button */
.fr-akt-gate__btn--ok {
  background: #007bff;
  color: #fff;
}
.fr-akt-gate__btn--ok:hover {
  background: #0069d9;
}

/* Back button (no underline, darker on hover) */
.fr-akt-gate__btn--back {
  background: #444;
  color: #fff;
  text-decoration: none !important;
}
.fr-akt-gate__btn--back:hover {
  background: #333;
  color: #fff !important;
}