:root {
	--neon-cyan: #00ffff;
	--neon-pink: #ff00ff;
	--neon-green: #00ff00;
	--neon-purple: #8a2be2;
	--dark-bg: #0a0a0a;
	--darker-bg: #050505;
	--card-bg: #1a1a1a;
	--text-primary: #ffffff;
	--text-secondary: #cccccc;
}



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Rajdhani', sans-serif;
	background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
	color: var(--text-primary);
	overflow-x: hidden;
}

/* Animated Background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
	z-index: -1;
	animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {

	0%,
	100% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}
}

/* Header Styles */
.header {
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 2px solid var(--neon-cyan);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.logo {
	font-family: 'Orbitron', monospace;
	font-size: 1.5rem;
	font-weight: 900;
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
	transition: all 0.3s ease;
}

.logo:hover {
	text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
	transform: scale(1.05);
}

.nav-link {
	color: var(--text-primary) !important;
	font-weight: 600;
	font-size: 0.85rem;
	/* Менший шрифт */
	text-transform: uppercase;
	letter-spacing: 0.5px;
	/* Менше розтягнення */
	position: relative;
	transition: all 0.3s ease;
	padding: 0.4rem 0.2rem;
	/* Менші падінги */
	display: inline-block;
	text-align: center;
	width: 100%;
	/* Щоб текст центрувався і не виростав у ширину */
}

.nav-link {
	overflow: hidden;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
	transition: width 0.3s ease;
}

.nav-link:hover::before {
	width: 100%;
}

/* Адаптив: ще трохи менше на дуже вузьких екранах */
@media (max-width: 400px) {
	.nav-link {
		font-size: 0.75rem;
		letter-spacing: 0.3px;
		padding: 0.3rem 0.2rem;
	}
}


.nav-link:hover::before {
	width: 100%;
}

.nav-link:hover {
	color: var(--neon-cyan) !important;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 100px;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
	z-index: -1;
}

.hero-title {
	font-family: 'Orbitron', monospace;
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-green));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
	margin-bottom: 2rem;
	animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
	0% {
		text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
	}

	100% {
		text-shadow: 0 0 50px rgba(0, 255, 255, 0.8), 0 0 70px rgba(255, 0, 255, 0.5);
	}
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.6;
}

.cta-button {
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
	border: none;
	padding: 15px 40px;
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-primary);
	border-radius: 50px;
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
}

/* Features Section */
.features-section {
	padding: 100px 0;
	background: rgba(26, 26, 26, 0.8);
}

.BtOFwKpRwx {
	font-family: 'Orbitron', monospace;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 4rem;
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.CoZUXcCpKe {
	background: var(--card-bg);
	border: 2px solid transparent;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.CoZUXcCpKe::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.CoZUXcCpKe:hover::before {
	opacity: 0.1;
}

.CoZUXcCpKe:hover {
	border-color: var(--neon-cyan);
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
	transform: translateY(-10px);
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.feature-title {
	font-family: 'Orbitron', monospace;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--neon-cyan);
	margin-bottom: 1rem;
}

.feature-text {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Game Section */
.game-section {
	padding: 100px 0;
	background: rgba(10, 10, 10, 0.9);
}

.game-card {
	background-color: rgba(0, 255, 0, 0.5);
	background-size: cover;
	background-position: center;
	padding: 20px;
	border-radius: 12px;
}

.game-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.game-card:hover::before {
	opacity: 0.1;
}

.game-card:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
}

.game-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-bottom: 2px solid var(--neon-green);
}

.vnsGTWu4RR {
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
	border: none;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-primary);
	width: 100%;
	transition: all 0.3s ease;
}

.vnsGTWu4RR:hover {
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-green));
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.clickable-image {
	cursor: pointer;
	transition: transform 0.3s ease;
	border-radius: 10px;
}

.clickable-image:hover {
	transform: scale(1.03);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}


.custom-list-wrapper {
	padding: 15px 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	margin-top: 20px;
}

.custom-list-wrapper ul {
	margin: 0;
	padding-left: 20px;
	list-style-type: disc;
}

.custom-list-wrapper li {
	margin-bottom: 8px;
	font-size: 1rem;
	color: #333;
}

/* Contact Section */
.contact-section {
	padding: 100px 0;
	background: rgba(26, 26, 26, 0.8);
}

.x3OW6hXc1I {
	background: var(--card-bg);
	border: 2px solid var(--neon-purple);
	border-radius: 20px;
	padding: 3rem;
}

.form-control {
	background: rgba(10, 10, 10, 0.8);
	border: 2px solid var(--neon-purple);
	border-radius: 10px;
	color: var(--text-primary);
	padding: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	background: rgba(10, 10, 10, 0.9);
	border-color: var(--neon-cyan);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
	color: var(--text-primary);
}

.form-control::placeholder {
	color: var(--text-secondary);
}

.submit-btn {
	background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
	border: none;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-primary);
	border-radius: 50px;
	box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 50px rgba(138, 43, 226, 0.8);
}

/* Footer */
.footer {
	background: var(--darker-bg);
	border-top: 2px solid var(--neon-cyan);
	padding: 50px 0 20px;
}

.footer-logo {
	font-family: 'Orbitron', monospace;
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--neon-cyan);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.BtOFwKpRwx {
		font-size: 2rem;
	}

	.x3OW6hXc1I {
		padding: 2rem;
	}
}

/* Loading Animation */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading.hidden {
	opacity: 0;
	pointer-events: none;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 3px solid transparent;
	border-top: 3px solid var(--neon-cyan);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

.cookies-eu-banner {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 600px;
	background: #1a1a1a;
	box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
	border-radius: 20px;
	padding: 20px 25px;
	color: #ffffff;
	font-family: 'Segoe UI', sans-serif;
	font-size: 15px;
	z-index: 9999;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 255, 255, 0.1);
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#cookieConsent:checked~.cookies-eu-banner {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.xWtO7ZaGVp {
	display: none;
}

.uWcuewdTQ5 {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.uWcuewdTQ5 p {
	color: #E7E3FF;
}

.zSGVvAGhNO {
	display: inline-block;
	margin: 10px 8px 0;
	padding: 10px 20px;
	background: linear-gradient(145deg, #1c1c1c, #131313);
	color: #00ffff;
	border-radius: 12px;
	box-shadow: 4px 4px 10px #0d0d0d, -4px -4px 10px #2d2d2d;
	cursor: pointer;
	transition: all 0.3s ease;
}

.zSGVvAGhNO:hover {
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
	color: #ffffff;
}

@media (max-width: 500px) {
	.cookies-eu-banner {
		font-size: 14px;
		padding: 15px;
	}

	.zSGVvAGhNO {
		width: 100%;
		margin: 8px 0 0;
	}
}

:root {
	--primary-font: "Mulish";
	--primary-color: #1E193A;
	--secondary-color: #F46621;
	--black-color: #606060;
	--white-color: #fff;
	--success-color: #333333;
	--tertiary-color: #FFFBF6;
}

body {
	padding: 0px;
	margin: 0px;
	border: 0;
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	font-family: var(--primary-font);
}

p {
	margin: 0px;
	color: var(--success-color);
}

/*** header ***/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--primary-font);
	margin: 0px;
	padding: 0;
	color: var(--success-color);
}

h1 {
	font-size: 52px;
	line-height: 62px;
	font-weight: 900;
}

h2 {
	font-size: 42px;
	line-height: 52px;
	font-weight: 800;
}

h3 {
	font-size: 32px;
	line-height: 42px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

h6 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}

/*** list ***/
ul,
ol {
	padding: 0px;
	margin: 0px;
	list-style: none;
}

/*** link ***/
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

a,
a:active,
a:focus,
a:active {
	text-decoration: none;
}

a:hover,
a:focus {
	outline: none;
	text-decoration: none;
}

.text-wrap {
	color: var(--secondary-color);
}

.text-primary {
	color: var(--primary-color) !important;
}

/*** btn ***/
.btn {
	font-size: 16px;
	font-weight: 700;
	line-height: 26px;
	font-family: var(--secondary-font);
	background-color: #ff0000;
	color: var(--white-color);
	border: none;
	border-radius: 0px;
	padding: 13px 30px;
}

.btn:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

/*** padding-top-bottom ***/
.ptb-120 {
	padding: 120px 0px;
}

.pt-120 {
	padding-top: 120px;
}

.pt-110 {
	padding-top: 110px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-10 {
	padding-top: 10px;
}

.pb-120 {
	padding-bottom: 120px;
}

.pb-110 {
	padding-bottom: 110px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-10 {
	padding-bottom: 10px;
}

/*** margin-top-bottom ***/
.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-100 {
	margin-top: 100px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}

/************************* 
    02. Header
*************************/
.header-wrap .top-bar {
	background-color: var(--primary-color);
}

.top-bar .social-icon a i {
	font-size: 22px;
}

.top-bar .social-icon a i:hover {
	font-size: 22px;
	color: var(--secondary-color);
}

.header-wrap .main-inner {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
	background-color: var(--white-color);
}

.main-inner .navbar-expand-lg .navbar-nav .nav-link {
	padding: 13px 20px;
	color: var(--primary-color);
	font-weight: 700;
}

.main-inner .navbar-expand-lg .navbar-nav .nav-link:hover,
.main-inner .navbar-expand-lg .navbar-nav .active {
	color: var(--secondary-color);
}

.main-inner .navbar-expand-lg .navbar-toggler {
	background: var(--secondary-color);
	color: var(--white-color);
	padding: 10px;
	border: 0px;
	border-radius: 4px;
}

.main-inner .navbar-expand-lg .navbar-toggler:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************* 
    03. Hero Section
*************************/
.hero-section {
	background-image: linear-gradient(140deg, #682d2d 0%, #614141 64%);
	background-repeat: no-repeat;
	background-position: center right;
	width: 100%;
	height: 700px;
	display: flex;
	align-items: center;
}

.hero-section .home-content h1 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.hero-section .home-content p {
	font-weight: 700;
	width: 87%;
}

.hero-section .play-icon:hover {
	color: var(--secondary-color);
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: var(--primary-color);
	right: 0%;
}

.hero-section .home-image {
	position: relative;
	z-index: 1;
}

.hero-section .home-image .arrow-orange {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
}

.hero-section .home-image .progress-arrow {
	position: absolute;
	bottom: 100px;
	left: 0;
}

.hero-section .home-image .arrow-gray {
	position: absolute;
	top: 20%;
	left: 0;
}

/************************* 
    04. Our Features Section
*************************/
.features-section h6,
.features-section h2 {
	color: var(--success-color);
}

.divider-line {
	width: 140px;
}

.features-section .features-item {
	position: relative;
}

.features-section .features-item::after {
	content: '';
	border-right: 3px solid #F4F3F5;
	position: absolute;
	height: 200px;
	right: 0;
	top: 13%;
}

.features-section .features-item p {
	width: 68%;
}

.features-section .features-item a {
	color: var(--secondary-color);
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}

.features-section .features-item a:hover {
	color: var(--primary-color);
}

/************************* 
    05. About Us Section
*************************/
.Aq80J1XN0D {
	background-color: #000000;
}

.Aq80J1XN0D h2 {
	color: var(--neon-cyan);
}

.Aq80J1XN0D p {
	color: var(--neon-pink);
}

.Aq80J1XN0D .about-content .mtjEgagzwF {
	width: 87%;
}



.Aq80J1XN0D .yNkDHlLCXd img {
	width: 70%;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	background: linear-gradient(135deg, #fff9f7, #718eef);
	color: #fff;
	border-radius: 12px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
	padding: 40px 20px;
}

.wrapper {
	width: 100%;
}

.contact-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.title {
	font-size: 28px;
	font-weight: bold;
	color: #f8f9fa;
}

.custom-form {
	display: flex;
	flex-direction: column;
}

.form-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.form-group {
	flex: 1;
	min-width: 48%;
}

.full-width {
	min-width: 100%;
}

.input-box {
	width: 100%;
	padding: 12px;
	border: 1px solid #4e8db3;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

.input-box:focus {
	outline: none;
	border-color: #27ae60;
	background: rgba(255, 255, 255, 0.25);
}

.message-area {
	resize: none;
}

.submit-container {
	text-align: left;
}

.submit-btn {
	background: #27ae60;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s;
}

.submit-btn:hover {
	background: #1e8449;
}

.custom-footer {
	background-image: linear-gradient(140deg, #a14747 0%, #e48181 64%);
	color: #fff;
	padding: 40px 15px;
	font-family: 'Arial', sans-serif;
}

.footer-logo {
	font-size: 32px;
	font-weight: 700;
	color: #250f0f;
	text-decoration: none;
	margin-bottom: 15px;
}

.footer-description {
	font-size: 16px;
	color: #ccc;
	margin-bottom: 25px;
}

.footer-contact-section {
	margin-bottom: 35px;
	text-align: center;
}

.footer-contact-item {
	display: inline-block;
	margin: 10px 20px;
}

.footer-contact-item i {
	font-size: 30px;
	color: #ff4d4d;
	margin-bottom: 10px;
}

.footer-contact-item a {
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}

.footer-contact-item a:hover {
	color: #ff4d4d;
}

.footer-menu {
	margin-bottom: 35px;
}

.footer-menu-list {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-menu-list li {
	margin: 0 15px;
}

.footer-menu-list li a {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-menu-list li a:hover {
	color: #00da04;
}

.footer-copyright {
	font-size: 14px;

	margin-top: 30px;
}



/* Responsive Styles */
@media (max-width: 768px) {
	.footer-contact-section {
		margin-bottom: 20px;
	}

	.footer-contact-item {
		display: block;
		margin: 10px 0;
	}

	.footer-menu-list {
		text-align: center;
	}

	.footer-menu-list li {
		margin: 0 10px;
	}
}

.game-section {
	padding: 60px 0;
	background-image: linear-gradient(140deg, #682d2d 0%, #614141 64%);
}

.subtitle {
	font-size: 1.8rem;
	color: #333;
	font-weight: 700;
}

.divider-line {
	width: 50px;
	height: 2px;
	background-color: #ff5733;
	margin-top: 10px;
}

.game-card {
	border-radius: 15px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.game-card:hover {
	transform: translateY(-10px);
}

.card-header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.game-image {
	width: 100%;
	height: auto;
	border-bottom: 4px solid #ff5733;
	cursor: pointer;
	/* Cursor effect on the image */
}

.game-link {
	text-decoration: none;
	/* Remove underline from the link */
}

.btn-play {
	background-color: #ff5733;
	color: white;
	padding: 15px;
	font-size: 1.1rem;
	border-radius: 8px;
	border: none;
	transition: background-color 0.3s ease;
}

.btn-play:hover {
	background-color: #e14e2b;
}

.animated {
	animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/************************* 
    06. Services Section
*************************/
.services-section .services-item .card {
	padding: 30px;
	display: flex;
	align-items: center;
	border: 2px solid var(--white-color);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
	transition: all .5s;
	border-radius: 0;
}

.services-section .services-item .card:hover {
	border: 2px solid #F466213D;
	cursor: pointer;
}

.services-section .services-item .card i {
	width: 70px;
	height: 70px;
	padding: 16px;
	border-radius: 50px;
	font-size: 36px;
	background-color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
}

.services-section .services-item .card .card-body .card-text {
	color: var(--black-color);
	width: 80%;
}

.services-section .services-item .card .card-body a {
	color: var(--secondary-color);
}

.services-section .services-item .card .card-body a:hover {
	color: var(--primary-color);
}

/************************* 
    07. Working Section
*************************/
.working-section {
	background-color: var(--tertiary-color);
}

.working-section .working-image {
	width: 12%;
}

.working-section .slick-dots,
.slick-arrow {
	display: none !important;
}

.working-section .working-wrapper {
	width: 83%;
	padding: 55px 45px 55px 45px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	background-color: var(--white-color);
}

.slick-initialized .slick-slide {
	display: flex;
	justify-content: center;
}

.working-wrap {
	margin-top: -38px;
}

.working-wrap .working-title {
	padding: 80px 40px 40px 40px;
	border: 5px solid var(--secondary-color);
}

.working-wrap .working-text p {
	width: 79%;
}

.left-arrow {
	animation: run 2s linear infinite;
}

@keyframes run {
	0% {
		left: 0;
	}

	50% {
		transform: translateX(-15px);
	}

	100% {
		left: 0;
	}
}

/************************* 
    08. work Process
*************************/
.process-section .process-item-wrap .process-item {
	width: 170px;
	height: 170px;
	background-color: var(--white-color);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	border-radius: 200px;
	position: relative;
}

.process-wrapper {
	background-image: url(../images/process-line.png);
	background-position: 33% 100%;
	background-repeat: no-repeat;
	background-size: 62% auto;
}

.process-item-wrap .process-item span {
	position: absolute;
	top: 0;
	background-color: var(--primary-color);
	padding: 11px 10px 11px 10px;
	right: 9px;
	border-radius: 50px;
	color: var(--white-color);
	font-size: 16px;
	line-height: 18px;
}

.process-item-wrap .process-item h6 {
	width: 41%;
	text-align: center;
	padding-top: 15px;
}

/************************* 
    09. Real Numbers
*************************/
.counter-section {
	background-color: var(--tertiary-color);
}

.counter-section .counter-image {
	background-image: url(../images/background-circle.png);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 15% center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.counter-section .counter-image img {
	width: 70%;
}

.counter-section .counter-image .arrow-black {
	position: absolute;
	left: 70px;
	top: 20%;
	width: 10%;
}

.counter-section .counter-content h2 {
	width: 85%;
}

.counter-section .counter-content p {
	width: 73%;
}

.counter-section .counter-icon-list i {
	color: var(--secondary-color);
	padding-right: 10px;
}

.counter-number-wrap .counter-wrap h3 {
	font-size: 36px;
	line-height: 46px;
	color: var(--primary-color);
}

.counter-number-wrap span {
	font-size: 18px;
	line-height: 28px;
	color: var(--black-color);
}

.counter-number-wrap {
	width: 33%;
	border-right: 2px dotted var(--black-color);
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.counter-number-wrap:last-child {
	border-right: 0px;
}

/************************* 
    10. Your Seo Score?
*************************/
.cta-section .cta-image {
	background-image: url(../images/seo-check-element.png);
	background-repeat: no-repeat;
	position: relative;
}

.cta-section .form-control {
	box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
	padding: 14px 25px 14px;
	border-radius: 0px;
	border: 1px solid #fff;
}

.cta-section P {
	width: 48%;
	text-align: center;
}

.cta-section .form-control:focus {
	box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
	border: 1px solid #69727d;
}

.cta-section .form-group .btn {
	padding: 13px 38px;
}

.cta-section .arrow-gradient {
	width: 150px;
	position: absolute;
	right: 0;
}

/************************* 
    11. Creative Team
*************************/
.team-section {
	background-color: var(--tertiary-color);
}

.team-section h2 {
	width: 50%;
}

.team-item-wrap .card {
	padding: 30px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
	background-color: transparent;
	border: 0px;
}

.team-item-wrap .card:hover {
	cursor: pointer;
	background-color: var(--white-color);
}

.team-item-wrap .card .card-img-top {
	width: 130px;
	border-radius: 140px;
}

.team-item-wrap .card .card-body .card-title,
.team-item-wrap .card .card-body .card-text {
	color: var(--success-color);
}

.team-item-wrap .card .card-body .card-social-icon i {
	padding: 0px 15px;
	font-size: 18px;
	display: flex;
	line-height: 28px;
	color: var(--black-color);
	width: 40px;
	text-align: center;
	height: 40px;
	align-items: center;
	justify-content: center;
}

.team-item-wrap .card .card-body .card-social-icon i:hover {
	border-radius: 30px;
	background-color: var(--secondary-color);
	color: var(--white-color);
}

/************************* 
    12. Choose Your Plan
*************************/
.pricing-section .pricing-wrap .card {
	border: 2px solid #F466214F;
	padding: 25px 0px;
	border-radius: 0px;
}

.pricing-section .pricing-wrap .card .card-title {
	padding: 8px 16px 8px 16px;
	background-color: var(--secondary-color);
	border-radius: 0px 30px 30px 0px;
	color: var(--white-color);
	display: block;
	width: 135px;
}

.pricing-section .pricing-wrap .card .card-body {
	padding: 0px 25px;
}

.pricing-section .pricing-wrap .card .card-body h2,
.pricing-section .pricing-wrap .card .card-body ul li a {
	color: var(--success-color);
}

.pricing-section .pricing-wrap .card .card-body h5 {
	color: var(--black-color);
}

.pricing-section .pricing-wrap .card .card-body span {
	width: 100%;
	border: 1px solid #6060603b;
	display: inline-block;
}

/************************* 
    13. Testimonials
*************************/
.testimonials-section {
	background-color: var(--tertiary-color);
	background-image: url(../images/testimonials-bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 56%;
}

.testimonial-slide p {
	width: 60%;
	text-align: center;
	font-weight: 700;
}

.testimonials-section .testimonial-slide {
	cursor: pointer;
}

.testimonials-wrapper .slick-arrow {
	display: none !important;
}

.testimonials-wrapper .slick-dots {
	display: flex !important;
	justify-content: center;
	padding-top: 40px;
}

.testimonials-wrapper .slick-dots li {
	margin: 0 5px;
}

.testimonials-wrapper .slick-dots button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 100%;
	background-color: transparent;
	border: 0px;
	text-indent: -9999px;
	background-color: var(--black-color);
}

.testimonials-wrapper .slick-dots li.slick-active button {
	background-color: var(--secondary-color);
}

/************************* 
    14. Blog
*************************/
.blog-section .blog-item .card {
	padding: 30px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	border: 0px;
}

.blog-section .blog-item .card .card-text {
	color: var(--success-color);
}

.blog-section .blog-item .card .card-body .blog-btn {
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
}

.blog-section .blog-item .card .card-body .blog-btn:hover {
	color: var(--primary-color);
}

/************************* 
    15. Footer
*************************/
.footer-section {
	background-image: url(../images/footer-bg-image.png);
	background-position: center center;
	padding: 120px 120px;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer-section img {
	display: inline-block;
	width: 200px;
}

.footer-section .footer-item a {
	color: var(--success-color);
}

.footer-section .footer-menu ul li a {
	padding: 0px 20px;
}

.footer-section .footer-menu ul li .active,
.footer-section .footer-menu ul li a:hover {
	color: var(--secondary-color);
}

.footer-section p {
	width: 35%;
	color: var(--primary-color);
}

.footer-contact-item .footer-item i {
	font-size: 23px;
	padding: 16px;
	background-color: var(--secondary-color);
	color: var(--white-color);
	border-radius: 30px;
	margin-right: 15px;
}

.footer-social-icon i {
	font-size: 22px;
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 12px;
	border-radius: 30px;
	margin-right: 15px;
	transition: all .3s ease-in-out;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social-icon i:hover {
	font-size: 22px;
	background-color: var(--secondary-color);
	color: var(--white-color);
	transform: scale(1.1);
}

.disclaimer-heading {
	font-size: 2rem;
	/* Set the font size to match h2 size */
}

.disclaimer-link {
	color: white;
	/* Ensure the link has white color */
	text-decoration: none;
	/* Remove underline */
}

.disclaimer-link:hover {
	text-decoration: underline;
	/* Optional: underline on hover */
}



/************************* 
    16. Blog Page
*************************/
.nsAGmVKmhw {
	background-image: linear-gradient(140deg, #682d2d 0%, #614141 64%);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	height: 300px;
	display: flex;
	align-items: center;

}

.nsAGmVKmhw h1 {
	color: var(--neon-cyan);

}

.main-hero-image img {
	width: 60%;
	max-width: 100%;
}

.nsAGmVKmhw .main-hero-image {
	position: relative;
}

.main-hero-image .about-arrow-image {
	position: absolute;
	top: 50%;
	left: 113px;
}

/************************* 
    17. About Us Page
*************************/
.mission-section {
	background-color: var(--tertiary-color);
}

.mission-about-section {
	background-image: url(../images/about-us-video-elements.png);
	background-repeat: no-repeat;
	background-position: top center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mission-about-section .video-wrap {
	position: relative;
}

.mission-about-section .mission-about-wrap {
	margin-top: -80px;
	border-radius: 20px;
	z-index: 99;
	position: relative;
	text-align: center;
}

.mission-about-section .popup-video .play-icon {
	margin-top: -50px;
	position: absolute;
	top: 75px;
	left: 75px;
}

.mission-about-text h2 {
	width: 86%;
}

.mfp-container {
	padding-left: 6px;
	padding-right: 6px;
	position: fixed;
	background-color: #000000b0;
}

.step-section .step-item,
.step-section .people-item,
.step-section .process-item {
	background-color: var(--white-color);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
	padding: 30px;
	border-radius: 10px;
	border: 2px solid var(--white-color);
}

.step-item h5,
.people-item h5,
.process-item h5 {
	width: 54px;
	height: 47px;
	background-color: #FDE4E7;
	border-radius: 30px;
	padding: 10px;
	font-weight: 700;
	text-align: center;
	font-size: 24px;
	color: var(--secondary-color);
	margin-right: 20px;
}

.people-item h5 {
	background-color: #E7E3FF;
	color: #745EFE;
}

.process-item h5 {
	background-color: #FEF3D9;
	color: #ec901c;
}

.people-item .stop-item-text p,
.process-item .stop-item-text p {
	width: 90%;
}

.step-section .people-item:hover {
	cursor: pointer;
	border: 2px solid #745EFE;
}

.step-section .process-item:hover {
	cursor: pointer;
	border: 2px solid #ed901b;
}

.step-item .stop-item-text p {
	width: 90%;
}

.step-section .step-item:hover {
	cursor: pointer;
	border: 2px solid #E25549;
}

.choose-section {
	background-color: var(--tertiary-color);
}

.choose-section .choose-text h2 {
	width: 80%;
}

.choose-section .choose-text p {
	width: 80%;
}

.choose-section .animated-progress {
	width: 100%;
	height: 18px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	background-color: #eeeeee;
	margin-top: 10px;
}

.choose-section .animated-progress span {
	height: 100%;
	display: block;
	width: 0;
	color: rgb(255, 251, 251);
	line-height: 30px;
	position: absolute;
	text-align: end;
	font-size: 12px;
	background-color: var(--secondary-color);
	line-height: 19px;
	padding-right: 5px;
}

.choose-section .choose-image img {
	width: 80%;
}

.about-counter {
	background-image: url(../images/counter-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.about-counter .counter-number-wrap {
	width: 25%;
}

.about-counter .counter-number-wrap .counter-wrap h3 {
	font-size: 52px;
	line-height: 46px;
	font-weight: 700;
	margin-bottom: 10px !important;
}

.about-working-section {
	background-color: transparent;
}

/************************* 
    18. Services Page
*************************/
.services-counter .counter-image {
	background-image: none;
}

.client-section {
	background-color: var(--tertiary-color);
}

.client-image {
	background-image: url(../images/background-circle.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.client-section .form-control {
	padding: 15px 25px;
	margin-bottom: 20px;
	border: 1px solid #F4662130;
	border-radius: 0px;
	font-weight: 600;
	color: var(--black-color);
}

/************************* 
    19. Our Customer  Page
*************************/
.trust-section p {
	width: 52%;
}

.trust-wrapper {
	margin: 60px 0px 0px 0px;
	padding: 40px 0px 40px 0px;
	border-style: solid;
	border-width: 1px 0px 1px 0px;
	border-color: #33333312;
	border-radius: 0px 0px 0px 0px;
}

.touch-section {
	background-color: var(--tertiary-color);
}

.touch-section .form-control {
	padding: 15px 25px;
	margin-bottom: 20px;
	border: 1px solid #F4662130;
	border-radius: 0px;
	font-weight: 600;
	color: var(--black-color);
}

/************************* 
    20. Contact  Page
*************************/
.contact-details .features-item-text {
	color: var(--success-color) !important;
	font-size: 18px !important;
	line-height: 28px !important;
}

.contact-testimonials-section {
	background-color: var(--white-color);
}

/************************* 
    21. Single Blog Page
*************************/
.blog-details-wrap span {
	color: var(--secondary-color);
}

.related-box {
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	padding: 20px 20px 20px 20px;
	border-radius: 8px;
}

.blog-box .related-box .card-img-top {
	width: 30%;
	background-size: cover;
	border-radius: 0px;
}

.blog-box .related-box .site-info i:hover {
	background-color: var(--secondary-color);
	transform: translateY(-8px);
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
	cursor: pointer;
}

.blog-box .related-box .site-info i {
	background-color: var(--primary-color);
	padding: 12px 14px;
	color: var(--white-color);
	border-radius: 50px;
	margin-right: 5px;
	font-size: 18px;
	list-style: 28px;
}

/************************* 
    22. 404 Page
*************************/
.error-page {
	background: url(../images/404-background.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	height: 100vh;
}

.error-page-text-area img {
	width: 50%;
}

.error-page-text-area p {
	width: 50%;
}

.error-page .error-page-text-area .btn-home:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

/************************* 
    23. Coming Soon Page
*************************/
.coming-hero-section {
	background-image: url(../images/404-background.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	height: 100vh;
}

.coming-hero-text img {
	width: 30%;
}

.coming-hero-title p {
	width: 30%;
}

.coming-hero-text .x3OW6hXc1I .form-control {
	background-color: var(--white-color);
	border: 2px solid var(--success-color);
	color: var(--black-color) !important;
	border-radius: 0px;
}

.coming-hero-text .x3OW6hXc1I .form-btn {
	border-radius: 10px;
	margin-left: 15px;
}