/**
 * Tube Popup V2 - Styles
 * Continue popup with animations and responsive design
 * 
 * @package Noxora
 */

.ns-tube-continue-overlay-v2 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.ns-tube-continue-overlay-v2[hidden] {
	display: none;
}

.ns-tube-continue-overlay-v2__backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
}

.ns-tube-continue-overlay-v2__content {
	position: relative;
	max-width: 500px;
	width: 100%;
	background: rgba(30, 30, 30, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.ns-tube-continue-overlay-v2__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border: none;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.ns-tube-continue-overlay-v2__close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.ns-tube-continue-overlay-v2__title {
	margin: 0 0 12px 0;
	font-size: 24px;
	font-weight: 600;
	color: white;
}

.ns-tube-continue-overlay-v2__description {
	margin: 0 0 24px 0;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

.ns-tube-continue-overlay-v2__button {
	display: inline-block;
	padding: 14px 28px;
	background: #ff6b6b;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.ns-tube-continue-overlay-v2__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.ns-tube-continue-overlay-v2__button:active {
	transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.ns-tube-continue-overlay-v2__content {
		padding: 24px;
		margin: 16px;
	}

	.ns-tube-continue-overlay-v2__title {
		font-size: 20px;
	}

	.ns-tube-continue-overlay-v2__description {
		font-size: 14px;
	}

	.ns-tube-continue-overlay-v2__button {
		width: 100%;
		padding: 12px 20px;
		font-size: 14px;
	}
}
