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

.bv-age__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(6px);
}

.bv-age__dialog {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  margin: 0 var(--space-4);
}

.bv-age__content {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 45%, #f0f0f0 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft-elevated);
  padding: var(--space-6);
  position: relative;
}

.bv-age__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 80px;
  background: linear-gradient(180deg, var(--color-wood), #f1e2d1);
  border-bottom-right-radius: var(--radius-md);
}

.bv-age__title {
  font-size: var(--font-size-2xl);
}

.bv-age__text {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

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

.bv-age__btn {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 640px) {
  .bv-age__content {
    padding: var(--space-8);
  }

  .bv-age__actions {
    justify-content: flex-end;
  }

  .bv-age__btn {
    flex: 0 0 auto;
  }
}

/* When hidden via JS */
.bv-age--hidden {
  display: none !important;
}

/* Lock body scroll when modal is open */
body.bv-age-locked {
  overflow: hidden;
}
