/* Game info */

.featured-games-container {
	display: flex;
	justify-content: center;
}
.featured-games {
	width: 60%;
	text-align: center;
}
.game-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}
.main-image-container {
	position: relative;
	width: 100%;
	border-radius: 10px;
}
.main-image {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
}

.main-image-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.55) 40%, transparent 100%); 
	background: -moz-linear-gradient(to right, rgba(0, 0, 0, 0.55) 40%, transparent 100%); 
	background: -o-linear-gradient(to right, rgba(0, 0, 0, 0.55) 40%, transparent 100%); 
	background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 40%, transparent 100%);
	pointer-events: none;
	border-radius: 10px;
}

.game-details {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	text-align: left;
	color: var(--overlay-text-color);
	max-width: 50%;
}

.game-icon {
	width: auto;
	height: 3.2vw; 
	margin-bottom: 1vw; 
}

.coming-date,
.game-description,
.starting-price {
	font-size: 1vw; 
	margin-bottom: 1vw; 
}

.buttons {
	margin-top: 2vw; 
}

.view-button,
.wishlist-button {
	font-size: 0.7vw; 
	padding: 0.5vw 1vw; 
}

.view-button {
	background-color: #007bff;
	color: var(--overlay-text-color);
	padding: 5px 10px;
	border: none;
	cursor: pointer;
	margin-right: 10px;
}

.wishlist-button {
	background-color: transparent;
	border: none;
	color: var(--overlay-text-color);
	cursor: pointer;
} 

.plus-icon {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--overlay-text-color);
	border-radius: 50%;
	margin-right: 5px;
}

.thumbnail-images {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 20%;
	margin-right: 3%;
}

.thumbnail-images img {
	width: 80%;
	height: auto;
	margin-bottom: 10px;
	cursor: pointer;
	border-radius: 5px;
}

.game-selectors {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.selector {
	display: flex;
	align-items: center;
	padding: 10px;
	background-color: var(--secondary-color);
	border-radius: 5px;
	margin-right: 10px;
	cursor: pointer;
	color: var(--overlay-text-color);
}

.selector.active {
	background-color: var(--third-color);
	color: var(--overlay-text-color);
	transform: scale(1.05);
	
}

.selector img {
	width: 30px;
	height: 30px;
	margin-right: 5px;
	object-fit: cover; 
	object-position: center; 
	border-radius: 5%;
}

.game-name {
	font-size: 45px;
}

.starting-price {
	font-size: 15px;
}

.category-section {
	text-align: center; 
	padding: 20px;
}

.slider-container {
	display: flex;
	justify-content: center; 
	align-items: center;
	margin: 0 auto; 
	position: relative;
	width: 100%; 
	overflow: hidden; 
}

.category-slider {
	display: flex;
	gap: 10px; /* Space between category blocks */
	justify-content: flex-start; /* Align blocks to the start */
}

.slider-container {
	overflow: hidden; /* Ensures that only part of the slider is visible */
	width: calc(3 * (200px + 10px)); /* Adjust based on block width + gap; change 200px and 10px to match your actual values */
}

.category-slider, .game-slider, .themed-slider {
	display: flex;
	flex-wrap: nowrap; /* Prevents wrapping of items */
	transition: transform 0.3s ease-in-out; /* Smooth transition for the transform property */
}

.category-block {
	display: flex;
	align-items: center; /* Centers text vertically */
	justify-content: center; /* Centers text horizontally */
	padding: 15px;
	background-color: var(--secondary-color);
	border-radius: 8px;
	cursor: pointer;
	color: var(--overlay-text-color);
	flex: 0 0 33.333%; /* Each block takes up 1/3 of the container's width */
	min-height: 200px; /* Adjust as needed */
	box-sizing: border-box; /* Includes padding in the width */
	text-align: center;
}

.prev-button, .next-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	cursor: pointer;
	z-index: 10;
	padding: 10px;
}

.prev-button {
	left: 10px;
}

.next-button {
	right: 10px;
}

