.navbar {
	padding: 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 100;
}

.menu-icon {
	display: none;
}

.navbar i {
	color: #9482ff;
}

.navbar-brand {
	margin-top: -10px;

	width: 250px;
	height: 60px;

	background: url(../img/logo.png) no-repeat;
	background-size: 100%;
	background-position: center 52%;
}

.nav {
	margin: 0 50px;
	display: flex;
	align-items: center;
	gap: 50px;
}

.nav .item {
	position: relative;
	padding: 15px 0;
}

.nav .item::before,
.nav .item::after {
	position: absolute;
	content: '';
	height: 5px;
	bottom: 0;
	background: linear-gradient(to right, #ca1ebd 0%, #9482ff 100%);
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.nav .item::before {
	width: calc(100% - 10px);
	left: 0;
}

.nav .item::after {
	width: 5px;
	right: 0;
}

.nav .item:hover::before,
.nav .item:hover::after,
.nav .item.active::before,
.nav .item.active::after {
	opacity: 1;
}

.search {
	border: 1px solid #9482ff;
	flex-grow: 1;
	max-width: 300px;
	margin: 0 20px 0 0;
	padding: 10px 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	position: relative;
}

.search-input {
	/* width: 150px; */
	margin-left: 20px;

}

.search-input::placeholder {
	color: #adadad;
}

.suggestions,
.suggestions {
	/* border: 5px solid red; */
	border: 1px solid #9482ff;
	/* border-top: 0; */
	position: absolute;
	width: calc(100% + 100px);
	right: -1px;
	top: calc(100% + 10px);
	background: #121212;
	border-radius: 10px;
	padding: 10px 0;
}

.suggestions .suggestion {
	padding: 5px 20px;
	cursor: pointer;
	display: flex;
}

.suggestions .suggestion:hover {
	background: #393458;
}

.suggestions .suggestion img {
	width: 50px;
	height: 50px;
	flex-basis: 50px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.suggestions .suggestion .info {
	margin-left: 10px;
	overflow: hidden;
}

.suggestions .suggestion .info .name {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.suggestions .suggestion .info .category {
	font-size: 14px;
	color: #adadad;
}

.lang-btn{
	margin: 0 20px 0 auto;
	/* font-size: 15px; */
	display: flex;
	align-items: center;
	position: relative;
	text-align: left;
}


.lang-btn .flag {
	border-radius: 2px;
	margin-right: 8px;

}

.lang-btn i {
	color: #fff;
	font-size: 18px;
	margin-left: 10px;
	
}

.lang-btn .dropdown {

	position: absolute;
	width: calc(100% + 20px);
	top: 20px;
	left: -10px;
	display: flex;
	display: none;
	flex-direction: column;
	align-self: start;
	background: #121212;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding-left: 15px;
	padding-bottom: 10px;
	/* border: 1px solid red; */
}

.lang-btn:hover .dropdown {
	padding-top: 15px;
	display: flex;
}

.lang-btn .dropdown .item {
	padding: 10px 0px;
}

.login-btn{
	display: flex;
	align-items: center;
	gap: 10px;
}

.login-btn i {
	font-size: 20px;
	color: #fff !important;
}

.offcanvas {
	display: none;
}

.hero-slider {
	margin-top: 20px;
}

.hero-slider .item {
	position: relative;
	height: 400px;
}

.hero-slider .item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-slider .slide-caption {
	position: absolute;
	left: 100px;
	bottom: 100px;
}

.hero-slider .slide-caption .title {
	font-size: 40px;
}

.hero-slider .slide-caption .description {
	margin: 5px 0 20px 0;
	font-size: 20px;
}

.btn-secondary {
	background: #34495e;
}

.slider {
	margin: 50px auto 0 auto;
}

.slider .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
}

.slider .header .title {
	font-size: 35px;
}

.slider .item {
	cursor: pointer;
	max-width: 100%;
	margin-left: 20px;
}

.slider.type-1 .item {
	width: 300px;
}

.slider.type-1 .item .thumb {
	width: 100%;
	height: 300px;
	position: relative;
}

.slider.type-1 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider.type-1 .item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.slider.type-1 .item .category {
	position: absolute;
	top: 10px;
	right: 5px;
	background: #00c2ff;
	padding: 3px 8px;
	font-size: 12px;
	border-radius: 5px;
}

.slider.type-1 .item .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.slider.type-1 .item .btn-primary:hover {
	background: linear-gradient(to left, #ca1ebd 0%, #9482ff 100%);
}

.slider.type-1 .item .title {
	font-size: 30px;
	margin-top: 10px;
}

.slider.type-1 .item:hover .overlay {
	display: block;
}

.slider.type-2 .item {
	width: 350px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.slider.type-2 .item .thumb {
	width: 100%;
	height: 400px;
	position: relative;
}

.slider.type-2 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider.type-2 .item .category {
	position: absolute;
	top: 15px;
	right: 10px;
	background: #00c2ff;
	padding: 3px 8px;
	font-size: 12px;
	border-radius: 5px;
}

.slider.type-2 .item .title,
.slider.type-2 .item .description {
	background: #34495e;
	text-align: center;
}

.slider.type-2 .item .title {
	font-weight: bold;
	padding: 10px 20px 5px 20px;
	font-size: 20px;
}

.slider.type-2 .item .description {
	padding: 5px 20px 20px 20px;

	/* overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis; */
}

.slider.type-3 .item {
	width: 200px;
	border-radius: 10px;
	overflow: hidden;
}

.slider.type-3 .item .thumb {
	width: 100%;
	height: 300px;
	position: relative;
}

.slider.type-3 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider.type-3 .item .caption {
	position: absolute;
	width: 100%;
	bottom: 25px;
	right: 0px;
	padding: 10px 20px;
	background: rgba(18, 18, 18, 0.5);

	font-size: 14px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.slider.type-3 .item .caption i {
	font-size: 25px;
	color: #9482ff;
}

.slider.type-3 .item:hover .caption {
	opacity: 1;
}

.footer {
	position: relative;
	padding: 30px 0;
	background: #121212;
}

.footer .container {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer i {
	font-size: 16px;
	margin-right: 10px;
	padding: 8px;

	background: linear-gradient(to bottom, #ca1ebd 0%, #9482ff 100%);
	border-radius: 5px;
}

.footer .legal-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer .buttons {
	display: flex;
	align-items: center;
	gap: 30px;
}

.footer .buttons .lang-btn {
	display: none;
}

.categories {
	margin-top: 50px;
	display: flex;
}

.categories .sidebar {
	flex-basis: 300px;
	flex-shrink: 0;
	padding: 0 20px;
	position: relative;
	z-index: 88;
}

.categories .sidebar .link {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 15px;
	color: #ebf1f1;
	border-radius: 10px;
}

.categories .sidebar .link i {
	background: linear-gradient(#ca1ebd, #9482ff);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.categories .sidebar .link.active,
.categories .sidebar .link:hover {
	background: #393458;
}

.listing.type-1 {
	/* border: 5px solid red; */
	flex-grow: 1;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	position: relative;
	z-index: 87;
}

.listing.type-1 .item {
	width: calc(33.3% - 20px);
	margin-bottom: 50px;
	cursor: pointer;
	/* position: relative; */
}

.listing.type-1 .item .thumb {
	width: 100%;
	/* height: 300px; */
	padding-top: 52.55%;
	object-fit: cover;
	position: relative;
}

.listing.type-1 .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.listing.type-1 .ribbon .title {
	font-size: 20px;
}

.listing.type-1 .ribbon i {
	font-size: 25px;
	color: #9482ff;
}

.page-title {
	margin-top: 50px;
	margin-bottom: 20px;
	font-size: 35px;
}

.listing.type-2 {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.listing.type-2 .item {
	width: calc(25% - 20px);
	margin-bottom: 50px;
	cursor: pointer;
	position: relative;
}

.listing.type-2 .item .thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;

	border-radius: 10px;
	overflow: hidden;
}

.listing.type-2 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.listing.type-2 .ribbon .title {
	font-size: 20px;
}

.listing.type-2 .ribbon i {
	font-size: 30px;
}

.listing.type-2 .activity {
	font-size: 14px;
}

.login {
	display: flex;
	min-height: 500px;
}

.login .form-wrapper {
	margin: auto auto 200px auto;
}

.login .page-title {
	text-align: center;
	margin-bottom: 100px;
}

.login .form {
	width: 320px;

	display: flex;
	flex-direction: column;

	color: #ebf1f1;
}

.login .form label {
	margin-bottom: 5px;
	font-size: 14px;
}

.login .form input {
	margin-bottom: 20px;
	padding: 10px 0;
	border-bottom: 1px solid #9482ff;
}

.login .form .btn {
	margin-top: 40px;
}

.game .content {
	display: flex;
}

.game .content .card-1 {
	flex-basis: 1;
	flex-grow: 1;
	max-width: 50%;
	position: relative;
}

.game .content .card-1 .caption {
	/* border: 5px solid red; */

	margin: 50px 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.game .content .card-1 .category {
	position: absolute;
	top: 160px;
	right: 20px;
	background: #00c2ff;
	padding: 3px 8px;
	font-size: 14px;
	border-radius: 8px;
}

.game .content .card-1 img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 15px;
}

.game .content .card-1 .play-btn-container {
	display: none;	
}

.game .content .card-2 {
	flex-basis: 1;
	flex-grow: 1;

	padding: 20px;
	display: flex;
	/* align-items: center; */
	justify-content: space-around;
}

.game .content .card-2 .info {
	position: relative;
	top: 250px;

	text-align: center;
}

.game .content .card-2 .info h3 {
	font-size: 30px;
}

.game .content .card-2 .info i {
	color: #9482ff;
}

.game .action-bar {
	display: none;
}

.game .slider {
	margin-top: 100px;
}

.game .description .title {
	font-size: 40px;
	margin: 30px 0;
}

.game .description p {
	line-height: 150%;
	font-size: 20px;
	color: #adadad;
}

.game .more h2.title {
	font-size: 40px;
	margin: 80px 0 30px 0;
}

.slider.type-screenshots .item {
	max-width: 80vw;
}

.slider.type-screenshots .item img {
	max-height: 400px;
}

.slider.type-screenshots .owl-nav {
	display: block;
}

/*  */
.slider.type-desktop-only .item {
	/* border: 5px solid red; */
	width: 400px;
	position: relative;
	margin-bottom: 50px;
}

.slider.type-desktop-only .item .thumb {
	/* border: 5px solid blue; */
	padding-top: 52.5%;
	position: relative;
}

.slider.type-desktop-only .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.slider.type-desktop-only .item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.slider.type-desktop-only .item .category {
	position: absolute;
	top: 10px;
	right: 5px;
	background: #00c2ff;
	padding: 3px 8px;
	font-size: 12px;
	border-radius: 5px;
}

.slider.type-desktop-only .item .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.slider.type-desktop-only .item .btn-primary:hover {
	background: linear-gradient(to left, #ca1ebd 0%, #9482ff 100%);
}

.slider.type-desktop-only .item .title {
	font-size: 22px;
}

.slider.type-desktop-only .item:hover .overlay {
	display: block;
}

.slider.type-desktop-only .owl-prev,
.slider.type-desktop-only .owl-next {
	top: 10%;
}

.slider.recently-played .item .title,
.slider.recently-played .item .description {
	background: #34495e;
	text-align: center;
}

.slider.recently-played .item .title {
	font-weight: bold;
	padding: 10px 20px 5px 20px;
	font-size: 20px;
}

.slider.recently-played .item .description {
	padding: 5px 20px 20px 20px;

	/* overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis; */
}


.thumb a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.character-belt {
	background: #7e61ff;
	padding: 10px 40px;
	margin-top: 20px;
}

.character-belt .item {
	/* border: 5px solid red; */
	width: 100px;
}

.character-belt .item .thumb {
	/* border: 5px solid green; */
	width: 100%;
	padding-top: 100%;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.character-belt .item .thumb img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	object-fit: cover;
}

.character-belt .owl-prev,
.character-belt .owl-next {
	top: 10%;
	/* height: 50px; */
	background: none !important;
}

.character-belt .owl-prev {
	left: 0px;
}

.character-belt .owl-next {
	right: 0px;
}

.character-belt .item .thumb:hover {
	animation: scale 0.4s forwards;
}

.character-belt .owl-stage-outer {
	overflow: visible !important;
}

@keyframes scale {
	0% {
		transform: scale(1);
	}
	60% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1.1);
	}
}

.btn{
	overflow:auto;
}



.contact-section {
	display: flex;
	gap: 100px;
	padding: 50px 0;
	color: #ebf1f1;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-form {
	flex-grow: 1;
	max-width: 600px;
}

.contact-form h3 {
	font-size: 25px;
	margin-bottom: 30px;
	background: linear-gradient(to right, #ca1ebd 0%, #9482ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	background: transparent;
	border: 1px solid #9482ff;
	border-radius: 10px;
	color: #ebf1f1;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ca1ebd;
}

.contact-form .btn {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}

.contact-form .btn i {
	color: #fff !important;
}

.company-info {
	flex-basis: 300px;
	flex-shrink: 0;
	padding-top: 50px;
}

.company-info h2 {
	font-size: 35px;
	margin-bottom: 30px;
	background: linear-gradient(to right, #ca1ebd 0%, #9482ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.address {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.address i,
.contact-details i {
	color: #9482ff;
	font-size: 20px;
	margin-top: 5px;
}

.address p {
	margin-bottom: 5px;
	color: #adadad;
}

.contact-details .detail {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	align-items: center;
}

.contact-details p {
	color: #adadad;
}

.about-page {
	margin-top: 50px;
	color: #ebf1f1;
	padding-bottom: 50px;
}

.hero-section {
	text-align: center;
	padding: 100px 0;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/400');
	background-size: cover;
	background-position: center;
	margin-bottom: 50px;
}

.hero-section h1 {
	font-size: 48px;
	margin-bottom: 20px;
	background: linear-gradient(to right, #ca1ebd 0%, #9482ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-section .tagline {
	font-size: 24px;
	color: #adadad;
}

.mission-section {
	padding: 50px 0;
}

.mission-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 30px;
	padding: 0 20px;
}

.mission-card {
	flex: 1;
	background: #121212;
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	border: 1px solid #9482ff;
}

.mission-card i {
	font-size: 40px;
	margin-bottom: 20px;
	background: linear-gradient(#ca1ebd, #9482ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mission-card h2 {
	margin-bottom: 15px;
	font-size: 24px;
}

.mission-card p {
	color: #adadad;
	line-height: 1.6;
}

.stats-section {
	max-width: 1200px;
	margin: 50px auto;
	display: flex;
	justify-content: space-around;
	gap: 20px;
	padding: 0 20px;
}

.stat-card {
	text-align: center;
}

.stat-card .number {
	display: block;
	font-size: 36px;
	font-weight: bold;
	background: linear-gradient(to right, #ca1ebd 0%, #9482ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.stat-card .label {
	color: #adadad;
}

.about-content {
	max-width: 1000px;
	margin: 80px auto 0;
	padding: 0 20px;
}

.content-section {
	margin-bottom: 50px;
}

.content-section:last-child {
	margin-bottom: 0;
}

.content-section h2 {
	font-size: 32px;
	margin-bottom: 20px;
	background: linear-gradient(to right, #ca1ebd 0%, #9482ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.content-section p {
	color: #adadad;
	line-height: 1.8;
	font-size: 16px;
}