:root {
	--primary-color: #2196f3;
	--secondary-color: #00bcd4;
	--accent-color: #81d4fa;
	--nav-button-color: #4fc3f7;
	--nav-button-hover: #29b6f6;
	--dark-bg: #0a1929;
	--card-bg: rgba(10, 25, 41, 0.7);
	--text-color: #ffffff;
	--border-color: rgba(0, 188, 212, 0.2);
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.7);
}

.particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--accent-color);
	border-radius: 50%;
	animation: fall linear infinite;
	opacity: 0.3;
}

@keyframes fall {
	0% { transform: translateY(-100vh); }
	100% { transform: translateY(100vh); }
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Minecraft', Arial, sans-serif;
	background-image: url('./bg.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--text-primary);
	min-height: 100vh;
	line-height: 1.6;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.9),
		rgba(0, 0, 0, 0.7)
	);
	z-index: -1;
}

.navbar {
	background: rgba(13, 17, 23, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(79, 195, 247, 0.2);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-left, .nav-center, .nav-right {
	flex: 1;
	display: flex;
	align-items: center;
}

.nav-center {
	justify-content: center;
}

.nav-right {
	justify-content: flex-end;
}

.nav-link {
	color: var(--text-color);
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
	border-color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.nav-link i {
	font-size: 1.2rem;
}

.nav-title {
	color: var(--primary-color);
	font-size: 1.8rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-title i {
	animation: pulse 2s infinite;
}

.server-status {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	font-size: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
	width: 8px;
	height: 8px;
	background: #4CAF50;
	border-radius: 50%;
	animation: pulse 2s infinite;
}




@keyframes pulse {
	0% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.2); opacity: 0.7; }
	100% { transform: scale(1); opacity: 1; }
}

@keyframes sparkle {
	0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
	50% { transform: scale(1.1) rotate(15deg); opacity: 0.8; }
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	padding: 1rem 0;
}

.product-card {
	background: var(--card-bg);
	border-radius: 15px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 0;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.144);
    border-bottom: 1px solid var(--border-color);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-content {
    padding: 20px;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-header {
	padding: 2rem;
	text-align: center;
	position: relative;
}

.package-header.vip { background: var(--vip-gradient); }
.package-header.mvp { background: var(--mvp-gradient); }
.package-header.legend { background: var(--legend-gradient); }

.badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.3);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	backdrop-filter: blur(5px);
}

.package-header h2 {
	font-size: 2rem;
	margin: 1rem 0;
}

.price {
	font-size: 2.5rem;
	font-weight: bold;
}

.currency { font-size: 1.5rem; }
.period { font-size: 1rem; color: var(--text-secondary); }

.package-content {
	padding: 2rem;
}

.features {
	list-style: none;
	margin-bottom: 2rem;
}

.features li {
	margin: 1rem 0;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.features li i {
	color: #4CAF50;
}

.buy-btn {
	width: 100%;
	padding: 1rem;
	border: none;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-decoration: none;
}

.buy-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	text-decoration: none;
}

.featured {
	transform: scale(1.05);
	border: 2px solid #2196F3;
}

@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	.packages-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.featured {
		transform: none;
	}

	.package-card:hover {
		transform: translateY(-5px);
	}

	.product-image-container {
        height: 180px;
    }

	.navbar {
		padding: 1rem;
		flex-direction: column;
		gap: 1rem;
	}

	.nav-left, .nav-center, .nav-right {
		width: 100%;
		justify-content: center;
	}

	.nav-brand {
		font-size: 1.3rem;
	}

	.nav-brand i {
		font-size: 1.5rem;
	}

	.home-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.nav-status {
		font-size: 0.8rem;
		padding: 6px 12px;
	}

	.package-header {
		padding: 1.5rem;
	}

	.price {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.badge {
		font-size: 0.7rem;
		padding: 0.3rem 0.8rem;
	}

	.package-header h2 {
		font-size: 1.8rem;
	}

	.price {
		font-size: 1.8rem;
	}

	.features li {
		font-size: 0.9rem;
	}

	.buy-btn {
		padding: 0.8rem;
		font-size: 0.9rem;
	}

	.product-image-container {
        height: 150px;
    }
}