/* VIP Container */
.vip-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	padding: 20px 0;
	margin-top: 20px;
}

/* VIP Card */
.vip-card-wrapper {
	position: relative;
}

.vip-card {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 2px solid transparent;
	background: var(--vip-gradient);
}

.vip-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	border-color: var(--vip-color);
}

.vip-card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.vip-card:hover .vip-card-glow {
	opacity: 1;
}

.vip-card-content {
	position: relative;
	z-index: 1;
	padding: 25px;
}

/* VIP Card Header */
.vip-card-header {
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.vip-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 15px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	animation: iconFloat 3s ease-in-out infinite;
	position: relative;
}

.vip-icon-symbol {
	display: inline-block;
	font-size: 48px;
	line-height: 1;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
	user-select: none;
}

@keyframes iconFloat {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

.vip-card-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* VIP Packages */
.vip-card-packages {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.vip-package-item {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.vip-package-item:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vip-package-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vip-package-days {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	font-size: 16px;
	font-weight: 600;
}

.vip-package-days i {
	font-size: 18px;
	color: var(--vip-color);
	filter: drop-shadow(0 0 5px var(--vip-color));
}

.vip-package-price {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.price-with-discount {
	display: flex;
	align-items: center;
	gap: 10px;
}

.original-price {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: line-through;
}

.discount-badge {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(245, 87, 108, 0.4);
}

.final-price {
	font-size: 20px;
	font-weight: 700;
	color: white;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.vip-package-action {
	flex-shrink: 0;
}

/* VIP Package Button */
.vip-package-button {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	border-radius: 12px;
	color: white;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
}

.vip-package-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
	color: white;
	text-decoration: none;
}

.vip-package-button:active {
	transform: translateY(0);
}

.vip-package-button .button-text {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.vip-package-button .button-shine {
	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;
}

.vip-package-button:hover .button-shine {
	left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
	.vip-container {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 15px 0;
	}
	
	.vip-card-content {
		padding: 20px;
	}
	
	.vip-package-item {
		flex-direction: column;
		align-items: stretch;
	}
	
	.vip-package-action {
		width: 100%;
	}
	
	.vip-package-button {
		width: 100%;
	}
}