.featured-game-slider {
	--fg-accent: #12d6af;
	--fg-accent-dark: #0f9f83;
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
	margin-bottom: 2.6rem;
	background: #0a1116;
}

.featured-game-track {
	height: 100%;
	display: flex;
	transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.featured-game-slide {
	min-width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	padding: 2.4rem;
	position: relative;
}

.featured-game-content {
	max-width: 620px;
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
}

.featured-game-label {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: rgba(18, 214, 175, 0.18);
	color: #64f5d2;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.featured-game-title {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.04;
	color: #f6fbff;
	font-weight: 800;
	margin: 0;
	text-shadow: 0 5px 20px rgba(0, 0, 0, 0.65);
}

.featured-game-description {
	color: rgba(236, 244, 248, 0.93);
	font-size: 1.12rem;
	line-height: 1.55;
	max-width: 58ch;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
	margin: 0;
}

.featured-game-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.featured-game-category-pill {
	padding: 0.44rem 0.78rem;
	border-radius: 999px;
	background: rgba(12, 20, 24, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.85rem;
	color: #d9e9ef;
	font-weight: 600;
}

.featured-game-buy-row {
	margin-top: 0.35rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.9rem 1.2rem;
}

.featured-game-buy-btn {
	text-decoration: none;
	padding: 0.88rem 1.6rem;
	border-radius: 11px;
	background: linear-gradient(135deg, var(--fg-accent) 0%, #06c9ff 100%);
	color: #031015;
	font-weight: 800;
	font-size: 1.06rem;
	transition: transform 0.18s ease, box-shadow 0.2s ease;
	box-shadow: 0 7px 20px rgba(6, 201, 255, 0.35);
}

.featured-game-buy-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 11px 22px rgba(6, 201, 255, 0.38);
}

.featured-game-price-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.featured-game-original-price {
	font-size: 1.1rem;
	color: rgba(226, 236, 240, 0.65);
	text-decoration: line-through;
}

.featured-game-price {
	font-size: 2rem;
	line-height: 1;
	font-weight: 800;
	color: #f5fcff;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.featured-game-discount {
	padding: 0.24rem 0.58rem;
	border-radius: 999px;
	background: rgba(18, 214, 175, 0.24);
	border: 1px solid rgba(18, 214, 175, 0.45);
	color: #8affea;
	font-weight: 700;
	font-size: 0.84rem;
}

.featured-game-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(3, 10, 14, 0.54);
	color: #eef7ff;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 3;
}

.featured-game-nav:hover {
	background: rgba(18, 214, 175, 0.3);
	transform: translateY(-50%) scale(1.04);
}

.featured-game-nav-prev {
	left: 0.95rem;
}

.featured-game-nav-next {
	right: 0.95rem;
}

.featured-game-dots {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%);
	display: flex;
	gap: 0.55rem;
	z-index: 3;
}

.featured-game-dot {
	width: 0.62rem;
	height: 0.62rem;
	border-radius: 999px;
	border: 0;
	background: rgba(235, 246, 255, 0.46);
	cursor: pointer;
	transition: all 0.25s ease;
}

.featured-game-dot.active {
	width: 1.65rem;
	background: linear-gradient(90deg, var(--fg-accent) 0%, #06c9ff 100%);
}

@media (max-width: 900px) {
	.featured-game-slider {
		height: 420px;
	}

	.featured-game-slide {
		padding: 1.9rem;
	}

	.featured-game-title {
		font-size: clamp(1.75rem, 6vw, 2.4rem);
	}

	.featured-game-description {
		font-size: 1rem;
		max-width: 100%;
	}

	.featured-game-price {
		font-size: 1.6rem;
	}
}

@media (max-width: 600px) {
	.featured-game-slider {
		height: 360px;
		border-radius: 10px;
	}

	.featured-game-slide {
		padding: 1.2rem;
	}

	.featured-game-content {
		gap: 0.65rem;
	}

	.featured-game-label {
		font-size: 0.68rem;
		padding: 0.28rem 0.56rem;
	}

	.featured-game-title {
		font-size: clamp(1.4rem, 7vw, 2.05rem);
	}

	.featured-game-description {
		font-size: 0.9rem;
		line-height: 1.45;
		line-clamp: 2;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.featured-game-buy-row {
		gap: 0.7rem;
	}

	.featured-game-buy-btn {
		padding: 0.7rem 1.1rem;
		font-size: 0.92rem;
	}

	.featured-game-price {
		font-size: 1.35rem;
	}

	.featured-game-original-price {
		font-size: 0.95rem;
	}

	.featured-game-nav {
		width: 2rem;
		height: 2rem;
		font-size: 1rem;
	}
}
