.vip-card {
	background: #0f111b;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
	border: 1px solid rgba(0,191,255,.18);
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.vip-card-header {
	background: linear-gradient(90deg, rgba(255,190,0,.18), rgba(0,191,255,.08));
	border-radius: 8px;
	padding: 22px;
	margin-bottom: 25px;
}

.vip-badge {
	display: inline-block;
	background: #ffd400;
	color: #111;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.vip-card-header h3 {
	color: #00bfff;
	font-size: 28px;
	margin: 0;
	font-weight: 800;
}

.vip-card-header p {
	color: #b9c2d0;
	margin: 5px 0 0;
}

.vip-packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 15px;
	padding-top: 32px;
}

.vip-package {
	position: relative;
	background: #121522;
	border-radius: 10px;
	padding: 25px 18px;
	text-align: center;
	border: 1px solid rgba(255,255,255,.08);
	transition: .2s ease;
}

.vip-package:hover {
	transform: translateY(-4px);
	border-color: #00bfff;
	box-shadow: 0 0 25px rgba(0,191,255,.25);
}

.vip-discount {
	position: absolute;
	top: 1px;
	right: 0px;
	background: #ff4b5c;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 6px 11px;
	border-radius: 20px;
	line-height: 1;
	white-space: nowrap;
	z-index: 2;
}

.vip-days {
	color: #ffd400;
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
}

.vip-days-text {
	color: #9ea8bd;
	font-size: 13px;
	margin-top: 8px;
}

.vip-line {
	height: 1px;
	background: rgba(255,255,255,.1);
	margin: 22px 0;
}

.vip-price {
	color: #00bfff;
	font-size: 22px;
	font-weight: 800;
}

.vip-price span {
	color: #9ea8bd;
	font-size: 13px;
	font-weight: 400;
}

.vip-buy {
	display: block;
	margin-top: 20px;
	background: #00bfff;
	color: #000 !important;
	padding: 12px;
	border-radius: 5px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none !important;
}

.vip-buy:hover {
	background: #ffd400;
	color: #000 !important;
}

.panel-vip {
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	color: #fff;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-filter: brightness(90%);
	filter: brightness(90%);
	min-height: 210px;
	border: 0px;
}

	.panel-vip:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

	.panel-vip > .panel-heading {
		padding: 20px 15px 0px 15px;
	}

		.panel-vip > .panel-heading > .panel-title {
			font-weight: bold;
			font-size: 20px;
			text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
		}
	
	.vip-table-container {
		background: rgba(0, 0, 0, 0.3);
	}
	
		.vip-table tbody tr td {
			text-align: center;
		}
	
	/* VIP BRONZE STYLE */
	.panel-vip.type1 {
		background: #000000 url('../img/vip_panel_bg_1.jpg');
		background-size: cover;
	}
		.panel-vip.type1 > .panel-heading > .panel-title {
			color: #ffa06c;
		}
		
	/* VIP SILVER STYLE */
	.panel-vip.type2 {
		background: #000000 url('../img/vip_panel_bg_2.jpg');
		background-size: cover;
	}
		.panel-vip.type2 > .panel-heading > .panel-title {
			color: #dcdcdc;
		}
		
	/* VIP GOLD STYLE */
	.panel-vip.type3 {
		background: #000000 url('../img/vip_panel_bg_3.jpg');
		background-size: cover;
	}
		.panel-vip.type3 > .panel-heading > .panel-title {
			color: #ffbb38;
		}
		
	/* VIP PLATINUM STYLE (IGCN) */
	.panel-vip.type4 {
		background: #000000 url('../img/vip_panel_bg_4.jpg');
		background-size: cover;
	}
		.panel-vip.type4 > .panel-heading > .panel-title {
			color: #63ffbb;
		}
		
.btn-vip {
    color: #ccc;
    background-color: #333;
	border-color: #ccc;
	-moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
}
.btn-vip:active, .btn-vip:focus, .btn-vip:hover {
    color: #000 !important;
    background-color: #ccc !important;
	border-color: #ccc !important;
}