*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body.age-gate-page {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.age-gate-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.age-gate-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 1;
}

.age-gate-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.age-gate {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 480px;
  width: 90%;
}

.age-gate-form h1,
.age-gate-form h2,
.age-gate-form p {
  color: #ffffff;
  margin: 0 0 1rem;
}

.age-gate-heading {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.age-gate-subheading {
  font-size: 1.75rem;
  font-weight: 400;
}

.age-gate-message {
  font-size: 1rem;
  opacity: 0.9;
}

.age-gate-denied {
  color: #ffcccc;
  font-weight: 600;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.age-gate-submit-yes,
.age-gate-submit-no {
  cursor: pointer;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 2rem;
  min-width: 120px;
  transition: background 0.2s, color 0.2s;
}

.age-gate-submit-yes:hover,
.age-gate-submit-yes:focus {
  background: #fff;
  color: #1a1a1a;
}

.age-gate-submit-no:hover,
.age-gate-submit-no:focus {
  background: rgba(255, 255, 255, 0.15);
}
