.sexoc-age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
}

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

.sexoc-age-gate__box {
  width: min(92vw, 460px);
  box-sizing: border-box;
  padding: 24px 20px;
  border-radius: 14px;
  background: #151515;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.sexoc-age-gate__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.sexoc-age-gate__text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
}

.sexoc-age-gate__buttons {
  display: grid;
  gap: 10px;
}

.sexoc-age-gate__button {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.sexoc-age-gate__button--accept {
  background: #fff;
  color: #111;
}

.sexoc-age-gate__button--reject {
  background: #333;
  color: #fff;
}

.sexoc-age-gate__note {
  margin: 16px 0 0;
  color: #bbb;
  font-size: 12px;
  line-height: 1.6;
}