html.mb-age-gate-open,
body.mb-age-gate-open {
  overflow: hidden;
}

.mb-age-gate {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999999;
}

.mb-age-gate.is-visible {
  display: flex;
}

.mb-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(50, 14, 28, 0.78) 0%,
      rgba(18, 6, 10, 0.9) 100%
    ),
    rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.mb-age-gate__dialog {
  position: relative;
  width: min(100%, 540px);
  padding: 38px 32px 30px;
  border-radius: 24px;
  /* background: linear-gradient(
    145deg,
    rgba(40, 11, 21, 0.95) 0%,
    rgba(84, 28, 48, 0.92) 100%
  ); */
  background-image: linear-gradient(
    135deg,
    rgb(110, 15, 43) 0%,
    var(--global-palette2) 48%,
    rgb(177, 18, 76) 100%
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  text-align: center;
  color: #ffffff;
}

.mb-age-gate__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #e9c18a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mb-age-gate__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.mb-age-gate__description,
.mb-age-gate__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
}

.mb-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 16px;
}

.mb-age-gate__button {
  appearance: none;
  min-width: 190px;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mb-age-gate__button--secondary {
  background: transparent;
  border-color: var(--global-palette9);
  color: var(--global-palette9);
  border: 2px solid currentColor;
  transition: all 0.3s ease-in-out;
}

.mb-age-gate__button--secondary:hover,
.mb-age-gate__button--secondary:focus-visible {
  color: var(--global-palette4);
  border: 2px solid currentColor;
  border-color: var(--global-palette9);
  background: var(--global-palette9, #ffffff);
}

.mb-age-gate__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 640px) {
  .mb-age-gate {
    padding: 18px;
  }

  .mb-age-gate__dialog {
    padding: 28px 20px 22px;
    border-radius: 20px;
  }

  .mb-age-gate__button {
    width: 100%;
    min-width: 0;
  }
}
