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

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255, 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-color: #EAEAEA;
  color: #0d0d0d;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 411px;
  width: 70%;
  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: #FF6B6B;
  margin-bottom: 5px;
}

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

.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);
}