#age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#age-gate.visible {
  opacity: 1;
  pointer-events: all;
}

#age-gate.fade-out {
  opacity: 0;
  pointer-events: none;
}

.age-gate-panel {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: white;
  max-width: 90%;
  width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
}

.age-gate-panel button {
  background: linear-gradient(135deg, #16a34a, #4ade80);
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 1rem;
}

.age-gate-panel button:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 255, 128, 0.4);
}
