@charset "UTF-8";

:root {
  --cl-age-main: #f7398a;
  --cl-age-negative: #444;

  --bg-age-main: rgba(252, 224, 241, 0.9);

  --fs-text-large: clamp(20px, 5.1vw, 24px);
}

/* ===== age ===== */
.age-gate {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-age-main);
  z-index: 1000;
}
.age-gate__box {
  width: min(100%, 480px);
  transform: translateY(-10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.age-gate__inner {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.age-gate__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;

  color: var(--cl-age-main);
  font-size: var(--fs-text-large);
  font-weight: bold;
  text-align: center;
}
.age-gate__header-logo {
  width: 1em;
  height: auto;
}
.age-gate__title {
  width: 100%;
  color: var(--cl-age-main);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-top: 1px #e6e6e6 solid;
  border-bottom: 1px #e6e6e6 solid;
  padding-block: 0.7em;
}
.age-gate__badge {
  width: 80px;
  height: auto;
}
.age-gate__text {
  font-size: 14px;
  color: #555;
  text-align: center;
}
.age-gate__text--attention {
  font-size: 26px;
  font-weight: 700;
  color: var(--cl-age-main);
  text-align: center;
  line-height: 1.2;
}
.age-gate__text--question {
  font-size: var(--fs-text-large);
  font-weight: 700;
  color: var(--cl-age-negative);
  text-align: center;
}
.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.age-gate__buttons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 12px rgba(240, 40, 128, 0.35);
}
.age-gate__buttons .age-gate__buttons--yes {
  background: var(--cl-age-main);
}
.age-gate__buttons .age-gate__buttons--no {
  color: var(--cl-age-negative);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .age-gate__buttons {
    flex-direction: row;
    gap: 20px;
  }
  .age-gate__buttons a {
    font-size: 18px;
    border-radius: 12px;
  }
  .age-gate__buttons .age-gate__buttons--yes {
    flex: 1.6;
  }
  .age-gate__buttons .age-gate__buttons--no {
    flex: 1;
  }
}
