.global-loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	backdrop-filter: blur(4px);
	background-color: rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.2s ease;
}

.global-loading-overlay .spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #ccc;
	border-top-color: #333;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

.modal-backdrop.show {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	opacity: 1;
}

.fcg-modal {
	padding: 2.25rem 2.25rem;
}

.fcg-modal .modal-dialog {
	width: auto;
	max-width: min(500px, calc(100% - 2rem));
	max-height: min(500px, calc(100% - 2rem));
	margin: 0 auto;
	animation: ageVerificationScaleIn 0.3s ease;
}

.fcg-modal .modal-content {
	border: none;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fcg-modal .modal-header {
	border-bottom: none;
	padding: 1rem;
}

.fcg-modal .modal-body {
	padding: 1.5rem;
}

.fcg-modal .modal-footer {
	border-top: 1px solid #dee2e6;
	padding: 1rem 1.5rem;
}

.fcg-modal .btn {
	min-width: 140px;
	border-radius: 8px;
	font-weight: 600;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}