.age-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.98));
}

.age-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  margin-inline: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), rgba(8, 9, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-elevated);
}

.age-modal__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.age-modal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(244, 91, 105, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  background: radial-gradient(circle at top, rgba(244, 91, 105, 0.7), #3b0711);
  color: #ffe6ea;
}

.age-modal__title {
  font-size: 1.6rem;
}

.age-modal__description {
  margin-bottom: var(--space-3);
}

.age-modal__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.age-modal__list li {
  margin-bottom: 0.35rem;
}

.age-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.age-modal__btn {
  flex: 1 1 0;
  min-width: 160px;
}

.age-modal__btn--yes {
  order: 1;
}

.age-modal__btn--no {
  order: 2;
}

@media (max-width: 520px) {
  .age-modal__panel {
    padding: var(--space-5);
  }

  .age-modal__title {
    font-size: 1.35rem;
  }

  .age-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .age-modal__btn {
    width: 100%;
  }
}