.vs-age {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
}

.vs-age--visible {
  display: flex;
}

.vs-age__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 179, 107, 0.35), transparent 60%), rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
}

.vs-age__modal {
  position: relative;
  max-width: 560px;
  width: calc(100% - 2.5rem);
  z-index: 1;
}

.vs-age__content {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(255, 216, 77, 0.24), transparent 60%), rgba(5, 9, 8, 0.98);
  border: 1px solid rgba(248, 250, 252, 0.12);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-6);
}

.vs-age__title {
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
}

.vs-age__text {
  font-size: 0.95rem;
}

.vs-age__text--strong {
  margin-top: 0.5rem;
  color: var(--gray-100);
}

.vs-age__actions {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.vs-age__btn {
  flex: 1 1 180px;
}

@media (max-width: 640px) {
  .vs-age__content {
    padding: var(--space-4);
  }

  .vs-age__title {
    font-size: 1.2rem;
  }
}
