.age-blur > *:not(.age-overlay) {
  filter: blur(8px);
  transition: filter 0.4s ease;
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.age-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.age-modal {
  background: linear-gradient(145deg, #191c1f, #121314);
  color: #fff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.age-overlay.fade-out .age-modal {
  transform: translateY(20px);
  opacity: 0;
}

.age-modal h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.age-modal p {
  color: #ccc;
  margin-bottom: 25px;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-btn {
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.age-btn.yes {
  background: #4CAF50;
  color: #fff;
}

.age-btn.yes:hover {
  background: #43a047;
  transform: translateY(-1px);
}

.age-btn.no {
  background: #ff4d4f;
  color: #fff;
}

.age-btn.no:hover {
  background: #d9363e;
  transform: translateY(-1px);
}