.age-gate {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(37, 35, 33, 0.78);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate__panel {
  width: min(520px, 100%);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #ded8d0;
  background: #fff;
  color: #252321;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.age-gate__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.age-gate__text {
  margin: 0 0 18px;
  color: #6f6962;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.age-gate__button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #8a4d69;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.age-gate__button--enter {
  color: #fff;
  background: #8a4d69;
}

.age-gate__button--exit {
  color: #8a4d69;
  background: #fff;
}

@media (max-width: 560px) {
  .age-gate__actions {
    display: grid;
  }
}
