.startpack-page {
	padding: 50px 0;
}

.startpack-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.startpack-card {
	position: relative;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03)),
		#151515;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 22px;
	padding: 30px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
	transition: .25s;
	overflow: hidden;
}

.startpack-card:hover {
	transform: translateY(-6px);
	border-color: rgba(215, 168, 79, .45);
	box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.startpack-card.featured {
	border-color: rgba(215, 168, 79, .75);
	box-shadow:
		0 0 0 1px rgba(215, 168, 79, .25),
		0 30px 90px rgba(0, 0, 0, .55);
}

.startpack-card-header {
	margin-bottom: 22px;
}

.startpack-card-header h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.startpack-card-header p {
	color: rgba(255, 255, 255, .65);
	line-height: 1.5;
}

.startpack-items {
	list-style: none;
	margin: 22px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.startpack-items li {
	padding: 12px 14px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 10px;
	color: rgba(255, 255, 255, .85);
}

.startpack-items li::before {
	content: "✓";
	color: #d7a84f;
	font-weight: 800;
	margin-right: 8px;
}

.btn-buy-startpack {
	width: 100%;
}