.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Inter, Roboto, system-ui, sans-serif;
  color: #000;
  background: #fff;
}

.age-gate__panel {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px;
  box-sizing: border-box;
}

.age-gate__title {
  margin: 0 0 24px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.age-gate__disclaimer {
  margin: 0 auto 32px;
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

.age-gate__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.age-gate__btn {
  min-width: 120px;
  padding: 0.65rem 1.5rem;
  border: 0;
  border-radius: 3px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.age-gate__btn:hover,
.age-gate__btn:focus {
  background: #333;
  color: #fff;
}

.age-gate__remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.9rem;
  color: #000;
  cursor: pointer;
}

.age-gate__remember input {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

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

@media (max-width: 575px) {
  .age-gate__panel {
    padding: 32px 20px 28px;
  }

  .age-gate__title {
    font-size: 1.4rem;
  }

  .age-gate__disclaimer {
    font-size: 0.875rem;
  }
}
