body {
  margin: 0;
  background: #111;
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.age-card {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 420px;
  width: 92%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: fadeUp 0.5s ease;
}

.age-image {
  background-image: url("/static/images/age_verify_banner.8433c073d0d0.webp");
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.age-image::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -40px 60px rgba(0,0,0,0.4);
}

.age-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );
}

.age-content {
  padding: 2rem 1.75rem;
  text-align: center;
}

.age-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.age-text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.age-actions {
  display: grid;
  gap: 0.75rem;
}

.age-actions .btn {
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.age-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.age-footer {
  text-align: center;
  padding: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #888;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile tuning */
@media (max-width: 480px) {
  .age-image {
    height: 180px;
  }
}