/**
 * Casino Exit Intent Popup Styles
 */

.casino-exit-popup-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-exit-popup-modal.active {
	opacity: 1;
	visibility: visible;
}

.casino-exit-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.casino-exit-popup-container {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	padding: 50px 40px;
	max-width: 550px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
	z-index: 1;
	transform: scale(0.85) translateY(20px);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	animation: casinoExitPopupPulse 2s ease-in-out infinite;
}

@keyframes casinoExitPopupPulse {
	0%, 100% {
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
	}
	50% {
		box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3), 0 0 0 1px rgba(102, 126, 234, 0.2);
	}
}

.casino-exit-popup-modal.active .casino-exit-popup-container {
	transform: scale(1) translateY(0);
}

.casino-exit-popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #f5f5f5;
	border: none;
	font-size: 0;
	line-height: 1;
	color: #666666;
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	padding: 0;
	z-index: 10;
}

.casino-exit-popup-close:hover {
	background-color: #e0e0e0;
	color: #000000;
	transform: rotate(90deg);
}

.casino-exit-popup-close svg {
	width: 20px;
	height: 20px;
}

.casino-exit-popup-content {
	text-align: center;
}

.casino-exit-popup-title {
	margin: 0 0 20px 0;
	font-size: 32px;
	font-weight: 800;
	color: #000000;
	line-height: 1.2;
	letter-spacing: -0.5px;
	text-transform: uppercase;
}

.casino-exit-popup-message {
	margin: 0 0 35px 0;
	font-size: 18px;
	color: #333333;
	line-height: 1.6;
	font-weight: 500;
}

.casino-exit-popup-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 18px 40px;
	border-radius: 12px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	position: relative;
	overflow: hidden;
}

.casino-exit-popup-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.casino-exit-popup-button:hover::before {
	left: 100%;
}

.casino-exit-popup-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
	color: #ffffff;
}

.casino-exit-popup-button:active {
	transform: translateY(-1px);
}

.casino-exit-popup-button-text {
	position: relative;
	z-index: 1;
}

.casino-exit-popup-button-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.casino-exit-popup-button:hover .casino-exit-popup-button-icon {
	transform: translateX(3px);
}

/* Responsive */
@media (max-width: 767px) {
	.casino-exit-popup-container {
		padding: 40px 25px;
		max-width: 95%;
		border-radius: 12px;
	}

	.casino-exit-popup-title {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.casino-exit-popup-message {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.casino-exit-popup-button {
		padding: 16px 32px;
		font-size: 16px;
		width: 100%;
	}

	.casino-exit-popup-close {
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
	}

	.casino-exit-popup-close svg {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 479px) {
	.casino-exit-popup-container {
		padding: 35px 20px;
	}

	.casino-exit-popup-title {
		font-size: 22px;
	}

	.casino-exit-popup-message {
		font-size: 15px;
	}

	.casino-exit-popup-button {
		padding: 14px 28px;
		font-size: 15px;
	}
}

