/* Age restriction modal for Noon Casinos */

.nc-age {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nc-age__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.46), transparent 60%),
              radial-gradient(circle at bottom right, rgba(248, 113, 113, 0.5), transparent 55%),
              rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(10px);
}

.nc-age__dialog {
  position: relative;
  width: min(480px, 100% - 2.5rem);
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.nc-age__pill {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.nc-age__title {
  font-size: 1.35rem;
  margin-bottom: 0;
}

.nc-age__text {
  margin-bottom: var(--space-2);
}

.nc-age__note {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

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

.nc-age__btn {
  flex: 1 1 160px;
}

@media (max-width: 480px) {
  .nc-age__dialog {
    padding: var(--space-5);
  }

  .nc-age__header {
    flex-direction: row;
    align-items: center;
  }

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