:root {
  --n93-bg: #111822;
  --n93-card: #101820;
  --n93-panel: #131d26;
  --n93-ink: #f4f0e8;
  --n93-muted: #aab3bf;
  --n93-steel: #26313d;
  --n93-gold: #d0ad62;
  --n93-gold-dark: #9d7430;
  --n93-green: #243f39;
  --n93-line: #dde4ee;
  --n93-error: #a53030;
}

.n93-offer-popup,
.n93-offer-popup * {
  box-sizing: border-box;
}

.n93-offer-popup {
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 12, 18, .72);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.n93-offer-popup.is-open {
  display: flex;
}

.n93-offer-popup__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  width: min(930px, calc(100vw - 76px));
  min-width: 0;
  height: min(610px, calc(100dvh - 56px));
  max-height: calc(100dvh - 56px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: #0f151d;
  box-shadow: 0 30px 90px rgba(0,0,0,.46);
}

.n93-offer-popup__close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 3px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(12,18,26,.46);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.n93-offer-popup__media {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #18232e;
}

.n93-offer-popup__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .45s ease, transform 4.5s ease;
}

.n93-offer-popup.is-lestoria .n93-offer-popup__image.is-active {
  object-position: 12% center;
}

.n93-offer-popup__image.is-active {
  opacity: 1;
  transform: scale(1.07);
}

.n93-offer-popup__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,17,24,.82), rgba(12,17,24,.42) 58%, rgba(12,17,24,.72)),
    linear-gradient(0deg, rgba(12,17,24,.86), transparent 48%);
}

.n93-offer-popup__media-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 38px;
  z-index: 2;
  color: #fff;
}

.n93-offer-popup__media-timer {
  display: none;
}

.n93-offer-popup.is-lestoria .n93-offer-popup__media-timer {
  display: none;
}

.n93-offer-popup__kicker,
.n93-offer-popup__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffe7a6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  text-shadow: 0 0 10px rgba(208,173,98,.7), 0 0 24px rgba(208,173,98,.34);
  text-transform: uppercase;
  animation: n93OfferNeon 1.65s ease-in-out infinite alternate;
}

.n93-offer-popup__eyebrow {
  display: flex;
  width: 100%;
}

.n93-offer-popup__title {
  max-width: 540px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 58px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
}

.n93-offer-popup__lead {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.38;
}

.n93-offer-popup__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(208,173,98,.12), transparent 34%),
    linear-gradient(180deg, #192431 0%, #101820 100%);
}

.n93-offer-popup__offer h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.n93-offer-popup__text {
  margin: 7px 0 0;
  color: rgba(232,236,242,.72);
  font-size: 12px;
  line-height: 1.34;
}

.n93-offer-popup__benefits {
  display: grid;
  gap: 5px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.n93-offer-popup__benefits li {
  position: relative;
  padding-left: 18px;
  color: rgba(244,240,232,.86);
  font-size: 11px;
  line-height: 1.28;
}

.n93-offer-popup__benefits li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--n93-gold-dark), var(--n93-gold));
  box-shadow: 0 0 0 4px rgba(208,173,98,.12);
}

.n93-offer-popup__timer {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.n93-offer-popup__timer.is-visible {
  display: grid;
}

.n93-offer-popup__timer div,
.n93-offer-popup__stats div {
  min-width: 0;
  padding: 8px 6px;
  border: 1px solid rgba(208,173,98,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  text-align: center;
}

.n93-offer-popup__timer div {
  border-color: rgba(208,173,98,.38);
  background: linear-gradient(180deg, rgba(208,173,98,.16), rgba(255,255,255,.045));
  animation: n93OfferTimerGlow 1.6s ease-in-out infinite alternate;
}

.n93-offer-popup__timer strong,
.n93-offer-popup__stats strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: center;
}

.n93-offer-popup__timer strong.is-ticking {
  animation: n93OfferDigit .34s ease;
}

.n93-offer-popup__timer span,
.n93-offer-popup__stats span {
  display: block;
  margin-top: 5px;
  color: rgba(232,236,242,.62);
  font-size: 9px;
  line-height: 1.2;
  text-align: center;
}

.n93-offer-popup__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.n93-offer-popup__form {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin-top: 4px;
  padding: 10px;
  border: 1px solid rgba(208,173,98,.18);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.n93-offer-popup__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.n93-offer-popup__message {
  display: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.n93-offer-popup__message.is-error,
.n93-offer-popup__message.is-success {
  display: block;
}

.n93-offer-popup__message.is-error {
  background: rgba(165,48,48,.1);
  color: #ffd2d2;
}

.n93-offer-popup__message.is-success {
  background: rgba(36,63,57,.1);
  color: #d6f5e8;
}

.n93-offer-popup__input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(208,173,98,.2);
  border-radius: 8px;
  background: rgba(7,11,16,.48);
  color: #fff;
  font-size: 16px;
  padding: 0 13px;
  outline: none;
}

.n93-offer-popup__input:focus {
  border-color: var(--n93-gold-dark);
  box-shadow: 0 0 0 4px rgba(208,173,98,.16);
}

.n93-offer-popup__input::placeholder {
  color: rgba(232,236,242,.54);
}

.n93-offer-popup__channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.n93-offer-popup__channels legend {
  grid-column: 1 / -1;
  width: 100%;
  margin: 2px 0 5px;
  color: rgba(232,236,242,.62);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.n93-offer-popup__channels label {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 32px;
  border: 1px solid rgba(208,173,98,.18);
  border-radius: 8px;
  background: rgba(7,11,16,.38);
  color: rgba(244,240,232,.78);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.n93-offer-popup__channels input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.n93-offer-popup__channels label.is-active {
  border-color: rgba(208,173,98,.72);
  background: linear-gradient(135deg, var(--n93-gold-dark), var(--n93-gold));
  color: #111820;
}

.n93-offer-popup__consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: rgba(232,236,242,.64);
  font-size: 10px;
  line-height: 1.28;
}

.n93-offer-popup__consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--n93-gold-dark);
}

.n93-offer-popup__consent a {
  color: #e7c878;
}

.n93-offer-popup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--n93-gold-dark), var(--n93-gold));
  color: #111820;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.n93-offer-popup__submit:after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -35%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg);
  animation: n93OfferShine 3s ease-in-out infinite;
}

@keyframes n93OfferPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(208,173,98,.22); }
  50% { box-shadow: 0 0 0 8px rgba(208,173,98,0); }
}

@keyframes n93OfferNeon {
  from {
    opacity: .72;
    text-shadow: 0 0 8px rgba(208,173,98,.48), 0 0 16px rgba(208,173,98,.2);
  }
  to {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255,231,166,.84), 0 0 28px rgba(208,173,98,.46);
  }
}

@keyframes n93OfferTimerGlow {
  from { box-shadow: 0 0 0 rgba(208,173,98,0); }
  to { box-shadow: 0 8px 24px rgba(208,173,98,.16); }
}

@keyframes n93OfferShine {
  0%, 52% { left: -42%; }
  100% { left: 112%; }
}

@keyframes n93OfferDigit {
  0% { transform: translateY(-2px); color: var(--n93-gold-dark); }
  100% { transform: translateY(0); color: #fff; }
}

@media (max-width: 860px) {
  .n93-offer-popup {
    align-items: stretch;
    justify-content: flex-start;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }

  .n93-offer-popup__card {
    display: flex;
    flex-direction: column;
    width: min(370px, calc(100vw - 20px));
    max-width: min(370px, calc(100vw - 20px));
    min-width: 0;
    max-height: none;
    height: calc(100vh - 20px);
    height: calc(100svh - 20px);
    height: calc(100dvh - 20px);
    border-radius: 10px;
  }

  .n93-offer-popup__media {
    width: 100%;
    min-width: 0;
    flex: 0 0 min(27dvh, 215px);
    min-height: 178px;
  }

  .n93-offer-popup__media-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .n93-offer-popup__kicker {
    min-height: 24px;
    margin-bottom: 10px;
    font-size: 10px;
  }

  .n93-offer-popup__title {
    font-size: clamp(26px, 7.8vw, 34px);
    line-height: 1;
  }

  .n93-offer-popup__lead {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .n93-offer-popup__body {
    flex: 1 1 auto;
    min-height: 0;
    gap: 9px;
    padding: 12px;
    overflow: auto;
  }

  .n93-offer-popup__offer h3 {
    font-size: 18px;
  }

  .n93-offer-popup__text {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.34;
  }

  .n93-offer-popup__benefits {
    gap: 5px;
    margin-top: 8px;
  }

  .n93-offer-popup__benefits li {
    font-size: 11px;
  }

  .n93-offer-popup__stats {
    gap: 7px;
    margin-top: 8px;
  }

  .n93-offer-popup.is-lestoria .n93-offer-popup__stats {
    display: none;
  }

  .n93-offer-popup__stats div,
  .n93-offer-popup__timer div {
    padding: 7px 6px;
  }

  .n93-offer-popup__stats strong,
  .n93-offer-popup__timer strong {
    font-size: 17px;
  }

  .n93-offer-popup__stats span,
  .n93-offer-popup__timer span {
    font-size: 9.5px;
  }

  .n93-offer-popup__form {
    gap: 7px;
    margin-top: 4px;
    padding: 10px;
  }

  .n93-offer-popup__input {
    height: 40px;
  }

  .n93-offer-popup__channels label {
    min-height: 34px;
  }

  .n93-offer-popup__submit {
    min-height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .n93-offer-popup__media {
    flex-basis: 168px;
  }

  .n93-offer-popup__lead {
    display: none;
  }

  .n93-offer-popup__body {
    padding: 12px;
  }

  .n93-offer-popup__offer h3 {
    font-size: 18px;
  }

  .n93-offer-popup__stats,
  .n93-offer-popup__timer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .n93-offer-popup__timer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

}

@media (max-width: 380px) and (max-height: 640px) {
  .n93-offer-popup__media {
    flex-basis: 145px;
    min-height: 145px;
  }

  .n93-offer-popup__media-copy {
    bottom: 14px;
  }

  .n93-offer-popup__kicker,
  .n93-offer-popup__eyebrow {
    margin-bottom: 7px;
  }

  .n93-offer-popup__benefits {
    display: none;
  }

  .n93-offer-popup__body {
    gap: 7px;
  }
}

@media (max-width: 340px) and (max-height: 640px) {
  .n93-offer-popup__text,
  .n93-offer-popup__stats {
    display: none;
  }

  .n93-offer-popup__offer h3 {
    font-size: 17px;
  }

  .n93-offer-popup__timer {
    gap: 5px;
  }

  .n93-offer-popup__timer div {
    padding: 6px 4px;
  }

  .n93-offer-popup__form {
    gap: 6px;
    padding: 9px;
  }
}

@media (min-width: 381px) and (max-width: 860px) and (max-height: 700px) {
  .n93-offer-popup__media {
    flex-basis: 158px;
    min-height: 158px;
  }

  .n93-offer-popup__benefits {
    display: none;
  }
}
