:root {
	--primary-color: #ff7351;
	--secondary-color: #683cf5;
	--accent-color: #ff7e5f;
	--text-color: #333333;
	--light-bg: #f8f9fa;
	--dark-bg: #2d3748;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
	background-color: white;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: background-color 0.3s;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo {
	font-size: 26px;
	font-weight: bold;
	color: var(--primary-color);
	display: flex;
	align-items: center;
}

.logo-icon {
	margin-right: 10px;
	font-size: 32px;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 40px;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s;
}

.nav-links a:hover {
	color: var(--accent-color);
}

.mobile-menu {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

.hero {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	margin-top: 80px;
	padding: 160px 0 100px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('hero-pattern.png') repeat;
	opacity: 0.1;
}

.hero-content {
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero h1 {
	font-size: 56px;
	margin-bottom: 24px;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.2;
}

.hero p {
	font-size: 22px;
	margin-bottom: 40px;
	opacity: 0.95;
	line-height: 1.6;
}

.btn {
	display: inline-block;
	background-color: var(--accent-color);
	color: white;
	padding: 16px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	transition: all 0.3s;
	box-shadow: 0 6px 15px rgba(255, 126, 95, 0.3);
	border: none;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 20px rgba(255, 126, 95, 0.4);
}

.section {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 42px;
	color: var(--primary-color);
	margin-bottom: 16px;
	font-weight: 700;
}

.section-title p {
	font-size: 20px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.about {
	position: relative;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	height: 500px;
	position: relative;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.about-image:hover img {
	transform: scale(1.05);
}

.about-text {
	padding-right: 20px;
}

.about-text h3 {
	color: var(--accent-color);
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 600;
}

.about-text p {
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 1.7;
}

.mission {
	background-color: var(--light-bg);
	position: relative;
}

.mission::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('pattern-bg.png') repeat;
	opacity: 0.05;
}

.mission-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	position: relative;
	z-index: 1;
}

.mission-card {
	background: white;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
	text-align: center;
	transition: all 0.4s;
}

.mission-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
	font-size: 48px;
	color: var(--accent-color);
	margin-bottom: 25px;
	display: inline-block;
}

.mission-card h3 {
	margin-bottom: 20px;
	color: var(--primary-color);
	font-size: 24px;
}

.mission-card p {
	color: #666;
	font-size: 17px;
	line-height: 1.7;
}

.team-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.team-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	height: 500px;
	order: 2;
	position: relative;
}

.team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.team-image:hover img {
	transform: scale(1.05);
}

.team-text {
	padding-left: 20px;
	order: 1;
}

.team-text h3 {
	color: var(--accent-color);
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 600;
}

.team-text p {
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 1.7;
}

.games {
	background-color: var(--light-bg);
	position: relative;
}

.games::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('pattern-bg.png') repeat;
	opacity: 0.05;
}

.games-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
	position: relative;
	z-index: 1;
}

.game-item {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	height: 300px;
	transition: all 0.3s;
}

.game-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.game-item:hover img {
	transform: scale(1.1);
}

.game-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 25px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
	transition: all 0.3s;
}

.game-item:hover .game-overlay {
	padding-bottom: 35px;
}

.game-overlay h3 {
	font-size: 20px;
	margin-bottom: 8px;
}

.game-overlay p {
	font-size: 14px;
	opacity: 0.8;
}

.contact {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('hero-pattern.png') repeat;
	opacity: 0.1;
}

.contact .section-title h2 {
	color: white;
}

.contact .section-title p {
	color: rgba(255, 255, 255, 0.8);
}

.contact-content {
	display: grid;
	position: relative;
	z-index: 1;
}

.contact-info {
	padding: 10px;
	text-align: center;
}

.contact-info p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 30px;
	opacity: 0.9;
}

.contact-info-item {
	margin-bottom: 25px;
	align-items: center;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	font-size: 20px;
}

.contact-text h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-text p {
	margin: 0;
	opacity: 0.8;
}

.contact-form {
	background: white;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.form-control {
	width: 100%;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-size: 16px;
	transition: all 0.3s;
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.2);
	outline: none;
}

textarea.form-control {
	height: 150px;
	resize: none;
}

.contact-form .btn {
	width: 100%;
}

footer {
	background-color: var(--dark-bg);
	color: white;
	padding: 50px 0 30px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}

.footer-column {
	flex: 1;
	min-width: 200px;
	margin-bottom: 30px;
}

.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--accent-color);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s;
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.footer-social {
	display: flex;
	margin-top: 20px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	text-decoration: none;
	color: white;
	font-size: 18px;
}

.social-icon:hover {
	background: var(--accent-color);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin-bottom: 10px;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {

	.mission-cards,
	.games-gallery {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

	.hero h1 {
		font-size: 42px;
	}

	.hero p {
		font-size: 18px;
	}

	.section {
		padding: 80px 0;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.about-content,
	.team-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.team-image {
		order: 1;
	}

	.team-text {
		order: 2;
		padding-left: 0;
	}

	.about-text {
		padding-right: 0;
	}
}

@media (max-width: 576px) {

	.mission-cards,
	.games-gallery {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 36px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.about-image,
	.team-image {
		height: 350px;
	}
}