@charset "euc-kr";

/* Å©·¹ÀÌÁöº¸½º Ä«µå ½ºÅ¸ÀÏ */
.cb-popup-crazy-boss-card {
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	color: white;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 15px 35px rgba(255, 65, 108, 0.3);
	height: 333px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cb-popup-crazy-boss-card:hover {
	box-shadow: 0 25px 50px rgba(255, 65, 108, 0.4);
}

.cb-popup-crazy-boss-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.cb-popup-crazy-boss-card:hover::before {
	left: 100%;
}

.cb-popup-crazy-boss-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.cb-popup-crazy-boss-content {
	text-align: center;
	padding: 30px 20px;
	z-index: 2;
	position: relative;
}

.cb-popup-crazy-boss-icon {
	font-size: 56px;
	margin-bottom: 20px;
	color: #ffd700;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	animation: cb-popup-float 3s ease-in-out infinite;
}

@keyframes cb-popup-float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.cb-popup-crazy-boss-title {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 12px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.5px;
}

.cb-popup-crazy-boss-subtitle {
	font-size: 16px;
	margin-bottom: 8px;
	opacity: 0.95;
	font-weight: 500;
}

.cb-popup-crazy-boss-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	padding: 10px 18px;
	font-size: 14px;
	margin-top: 15px;
	color: #ffd700;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cb-popup-crazy-boss-badge:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(1.05);
}

.cb-popup-crazy-boss-badge i {
	margin-right: 8px;
	font-size: 16px;
}

/* Å©·¹ÀÌÁöº¸½º ÆË¾÷ ¸ð´Þ ½ºÅ¸ÀÏ */
.cb-popup-VC-popup-notice {
	background: white;
	border-radius: 20px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	max-width: 700px;
	margin: 0 auto;
}

.cb-popup-VC-popup-notice-head {
	padding: 35px 30px 15px;
	position: relative;
}

.cb-popup-VC-popup-notice-head::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cb-popup-VC-popup-notice-title {
	position: relative;
	z-index: 2;
}

.cb-popup-VC-popup-notice-title div {
	color: white;
	font-size: 24px;
	font-weight: 800;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.cb-popup-crazy-boss-close-btn {
	position: absolute;
	top: -8px;
	right: 0px;
	background: none;
	border: none;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10;
	line-height: 1;
	padding: 0;
	width: auto;
	height: auto;
}

.cb-popup-crazy-boss-close-btn::before {
	content: '¡¿';
}

.cb-popup-VC-popup-notice-body {
	padding: 10px 35px 20px;
}

.cb-popup-highlight-box {
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	color: white;
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	margin-bottom: 35px;
	position: relative;
	overflow: hidden;
}

.cb-popup-highlight-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: cb-popup-pulse 4s ease-in-out infinite;
}

@keyframes cb-popup-pulse {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1) rotate(180deg);
		opacity: 0.8;
	}
}

.cb-popup-highlight-box i {
	font-size: 48px;
	margin-bottom: 20px;
	display: block;
	color: #ffd700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cb-popup-highlight-box h3 {
	font-size: 26px;
	margin-bottom: 15px;
	font-weight: 800;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cb-popup-highlight-box p {
	font-size: 18px;
	opacity: 0.95;
	margin: 0;
	font-weight: 500;
}

.cb-popup-feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	padding: 25px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 15px;
	border-left: 5px solid #ff416c;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cb-popup-feature-item:hover {
	transform: translateX(8px);
	box-shadow: 0 10px 25px rgba(255, 65, 108, 0.15);
	border-left-width: 8px;
}

.cb-popup-feature-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	color: white;
	font-size: 24px;
	box-shadow: 0 8px 20px rgba(255, 65, 108, 0.3);
	transition: all 0.3s ease;
}

.cb-popup-feature-item:hover .cb-popup-feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.cb-popup-feature-content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
	line-height: 1.3;
}

.cb-popup-feature-content p {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	margin: 0;
}

.cb-popup-feature-content strong {
	color: #ff416c;
	font-weight: 700;
}

/* Å©·¹ÀÌÁöº¸½º ¹Ù·Î°¡±â ¹öÆ° */
.cb-popup-crazy-boss-link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	margin: 10px auto;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(255, 65, 108, 0.3);
	position: relative;
	overflow: hidden;
}

.cb-popup-crazy-boss-link-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(255, 65, 108, 0.4);
	color: white;
	text-decoration: none;
}

.cb-popup-crazy-boss-link-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.cb-popup-crazy-boss-link-btn:hover::before {
	left: 100%;
}

.cb-popup-crazy-boss-link-btn i {
	margin-right: 10px;
	font-size: 20px;
}

.cb-popup-crazy-boss-link-container {
	text-align: center;
	margin: 30px 0;
	padding: 25px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 20px;
	border: 2px dashed #ff416c;
}

.cb-popup-crazy-boss-link-text {
	font-size: 16px;
	color: #666;
	margin-bottom: 10px;
	font-weight: 600;
}

/* NEW ¾ÆÀÌÄÜ ½ºÅ¸ÀÏ */
.cb-popup-crazy-boss-new-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #ffd700, #ffa500);
	color: #333;
	font-size: 12px;
	font-weight: 800;
	padding: 6px 12px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
	z-index: 3;
	animation: cb-popup-newBadgePulse 2s ease-in-out infinite;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

@keyframes cb-popup-newBadgePulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
	}
}
