/* Casino Ventra age restriction modal */

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

.cv-age__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 188, 212, 0.2) 0, transparent 50%), rgba(6, 15, 31, 0.9);
  backdrop-filter: blur(6px);
}

.cv-age__dialog {
  position: relative;
  max-width: 480px;
  width: calc(100% - 2.5rem);
  background: radial-gradient(circle at top left, rgba(244, 195, 106, 0.18) 0, #020617 45%, #020617 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-strong);
  color: #e5e7ff;
}

.cv-age__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.cv-age__badge {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(244, 195, 106, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.cv-age__title {
  font-size: 1.3rem;
  color: #f9fafb;
  margin-bottom: 0;
}

.cv-age__body {
  margin-bottom: var(--space-4);
}

.cv-age__text {
  font-size: 0.95rem;
  color: #e5e7ff;
}

.cv-age__note {
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-bottom: 0;
}

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

.cv-age__btn {
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .cv-age__dialog {
    padding: var(--space-5) var(--space-4);
  }

  .cv-age__actions {
    flex-direction: column-reverse;
  }

  .cv-age__btn {
    width: 100%;
    justify-content: center;
  }
}
