body.cipro-age-gate-active {
  overflow: hidden;
}

body.cipro-age-gate-active .site-shell {
  filter: blur(14px) saturate(0.82);
  pointer-events: none;
  user-select: none;
}

.cipro-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(196, 156, 94, 0.24), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(196, 156, 94, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(20, 22, 27, 0), rgba(32, 33, 37, 0));
  backdrop-filter: blur(14px);
}

.cipro-age-gate__dialog {
  width: min(100%, 840px);
  padding: 32px 0px;
  border: 1px solid rgba(196, 156, 94, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 244, 239, 0.96));
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  text-align: center;
}

.cipro-age-gate__title {
  margin: 0;
  color: #202125;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.cipro-age-gate__text {
  max-width: 40rem;
  margin: 1.35rem auto 0;
  color: rgba(32, 33, 37, 0.8);
  font-size: 18.32px;
  font-weight: 400;
  line-height: 1.7;
}

.cipro-age-gate__prompt {
  margin: 0.85rem auto 0;
  color: #202125;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.cipro-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 61%;
  margin-left: auto;
  margin-right: auto;
}

.cipro-age-gate__button {
  min-width: 230px;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.cipro-age-gate__button:hover,
.cipro-age-gate__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 2.25rem rgba(0, 0, 0, 0.18);
}

.cipro-age-gate__button--allow {
  background: #c49c5e;
  border-color: #c49c5e !important;
  color: #202125;
  font-weight: 800;
}

.cipro-age-gate__button:focus-visible {
    outline: none;
}

.cipro-age-gate__button--deny {
  background: #202125;
  border-color: #202125;
  color: #ffffff;
}

.page--age-restricted {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f4ef 0%, #f3ede4 48%, #efe6d8 100%);
}

.page--age-restricted__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(
      90deg,
      rgba(196, 156, 94, 0.05) 0,
      rgba(196, 156, 94, 0.05) 1px,
      transparent 1px,
      transparent 32px
    );
}

.page--age-restricted__glow {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(196, 156, 94, 0.24), rgba(196, 156, 94, 0.02) 62%, transparent 72%);
  filter: blur(14px);
  opacity: 0.9;
}

.page--age-restricted__glow--left {
  top: -10rem;
  left: -8rem;
}

.page--age-restricted__glow--right {
  right: -10rem;
  bottom: -11rem;
}

.page--age-restricted__main {
  position: relative;
  z-index: 1;
  width: min(100%, 1140px);
}

.age-restricted-content {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(196, 156, 94, 0.16);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(248, 243, 236, 0.96));
  box-shadow:
    0 2rem 4rem rgba(54, 43, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #202125;
  overflow: hidden;
}

.age-restricted-content::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(36vw, 28rem);
  background:
    radial-gradient(circle at left center, rgba(196, 156, 94, 0.12), transparent 72%);
  pointer-events: none;
}

.age-restricted-content__brand {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.age-restricted-content__brand img {
  width: min(100%, 180px);
  height: auto;
}

.age-restricted-content__header {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.age-restricted-content__line {
  width: 2.9rem;
  height: 1px;
  background: #c49c5e;
}

.age-restricted-content__eyebrow {
  color: #b68c49;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.age-restricted-content__script {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: #c49c5e;
  /*font-family: 'Italic Header', 'İtalic header', Allura, cursive;*/
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  text-align: center;
}

.age-restricted-content__notice {
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
  color: #202125;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

.age-restricted-content__title {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  margin: 1.5rem auto 0;
  color: #202125;
  font-size: 3.3rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
}

.age-restricted-content__body {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 1.8rem auto 0;
  color: rgba(32, 33, 37, 0.78);
  font-size: 1.06rem;
  line-height: 1.85;
  text-align: center;
}

.age-restricted-content__body p {
  margin: 0;
}

.age-restricted-content__body p + p {
  margin-top: 1rem;
}

.age-restricted-content__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  max-width: 40rem;
  margin: 2.3rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(196, 156, 94, 0.22);
}

.age-restricted-content__seal {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid rgba(196, 156, 94, 0.38);
  border-radius: 999px;
  background: rgba(196, 156, 94, 0.1);
  color: #b68c49;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.age-restricted-content__caption {
  margin: 0;
  color: rgba(32, 33, 37, 0.64);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .cipro-age-gate__dialog {
    border-radius: 1.5rem;
  }

  .cipro-age-gate__actions {
    flex-direction: column;
  }

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

  .age-restricted-content {
    border-radius: 1.5rem;
    text-align: center;
  }

  .page--age-restricted {
    padding: 1.5rem 1rem;
  }

  .page--age-restricted__glow {
    width: 22rem;
    height: 22rem;
  }

  .age-restricted-content__footer {
    flex-direction: column;
    gap: 0.95rem;
  }

  .age-restricted-content__title {
    max-width: 10ch;
    font-size: 2.5rem;
  }

  .age-restricted-content__notice {
    letter-spacing: 0.18em;
  }
}
