/* RoyaVento Age Restriction Modal */

.rv-age {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
}

.rv-age--visible {
  display: block;
}

.rv-age__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(8, 16, 31, 0.9), rgba(2, 6, 23, 0.98));
  backdrop-filter: blur(10px);
}

.rv-age__dialog {
  position: relative;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--layout-gutter);
}

.rv-age__content {
  position: relative;
  max-width: 32rem;
  width: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(212, 166, 75, 0.16) 0, rgba(8, 16, 31, 1) 48%, rgba(3, 7, 16, 1) 100%);
  color: #f9fafb;
  box-shadow: var(--shadow-strong);
}

.rv-age__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  color: #f9fafb;
}

.rv-age__text {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.95);
}

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

.rv-age__btn {
  flex: 1 1 8rem;
  font-size: 0.85rem;
}

.rv-age__note {
  margin-top: var(--space-4);
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.9);
}

@media (max-width: 639.98px) {
  .rv-age__content {
    padding: var(--space-5);
  }

  .rv-age__title {
    font-size: 1.3rem;
  }
}
