/* age-gate.css — NSFW age verification modal */

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.age-gate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.age-gate-dialog {
  position: relative;
  z-index: 1;
  background: #f5f2ed;
  border: 1px solid #c8c3bc;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.age-gate-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.age-gate-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #0f0e0d;
}

.age-gate-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a3835;
  margin-bottom: 0.6rem;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.age-gate-btn {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid #0f0e0d;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.age-gate-btn-yes {
  background: #0f0e0d;
  color: #f5f2ed;
}
.age-gate-btn-yes:hover {
  background: #3a3835;
}

.age-gate-btn-no {
  background: transparent;
  color: #0f0e0d;
}
.age-gate-btn-no:hover {
  background: #0f0e0d;
  color: #f5f2ed;
}
