.hero {
	background: linear-gradient(to right, #3c2c42, #1e1229);
	padding: 120px 20px;
	color: #fff;
	overflow: hidden;
}

.hero .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
}

.hero-content {
	flex: 1 1 500px;
	animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #ffe94d;
	text-shadow: 2px 2px #000;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	line-height: 1.6;
}

.btn-cta {
	display: inline-block;
	background-color: #ff3c3c;
	color: #fff;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 8px;
	transition: transform 0.2s, background-color 0.2s;
}

.btn-cta:hover {
	background-color: #ff1e1e;
	transform: scale(1.05);
}

.hero-img {
	flex: 1 1 400px;
	text-align: center;
	animation: zoomIn 1s ease-in-out;
}

.hero-img img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.85);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@media (max-width: 768px) {
	.logo {
		padding-bottom: 15px;
	}
	.hero .container {
		flex-direction: column;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 2.2rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.btn-cta {
		padding: 10px 20px;
		font-size: 1rem;
	}

	.hero {
		padding: 200px 20px;
	}
}
.chicken-heroes {
	padding: 100px 20px 80px;
	background-color: #1f162d;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
	color: #ffdd57;
	text-shadow: 1px 1px #000;
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
}

.hero-card {
	background-color: #2a1f3d;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 2px solid transparent;
}

.hero-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 0 16px rgba(255, 221, 87, 0.4);
	border-color: #ffdd57;
}

.hero-card img {
	border-radius: 8px;
	margin-bottom: 16px;
	height: 160px;
	object-fit: cover;
}

.hero-card h3 {
	color: #ffffff;
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.hero-card p {
	color: #cccccc;
	font-size: 1rem;
	line-height: 1.4;
}
.zombie-threats {
	padding: 100px 20px 80px;
	background-color: #110d1b;
}

.zombie-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
}

.zombie-card {
	background-color: #2d1c2f;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 2px solid transparent;
}

.zombie-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 0 18px rgba(255, 0, 80, 0.4);
	border-color: #ff3c3c;
}

.zombie-card img {
	border-radius: 8px;
	margin-bottom: 16px;
	height: 160px;
	object-fit: cover;
}

.zombie-card h3 {
	color: #ff6c6c;
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.zombie-card p {
	color: #dddddd;
	font-size: 1rem;
	line-height: 1.4;
}
.timeline-section {
	background-color: #1a1126;
	padding: 100px 20px;
}

.timeline {
	display: flex;
	flex-direction: column;
	gap: 60px;
	position: relative;
	border-left: 4px solid #ff3c3c;
	margin-left: 20px;
}

.timeline-item {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	position: relative;
}

.timeline-img img {
	width: 200px;
	height: 140px;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

.timeline-content {
	flex: 1;
	padding: 10px 0;
}

.timeline-content h3 {
	color: #ffdd57;
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.timeline-content p {
	font-size: 1.05rem;
	color: #ddd;
	line-height: 1.6;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -11px;
	top: 10px;
	width: 18px;
	height: 18px;
	background-color: #ff3c3c;
	border-radius: 50%;
	box-shadow: 0 0 10px #ff3c3c;
}

/* Mobile layout */
@media (max-width: 768px) {
	.timeline {
		border-left: none;
		border-top: 4px solid #ff3c3c;
		padding-top: 20px;
		margin-left: 0;
	}

	.timeline-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
	}

	.timeline-item::before {
		left: auto;
		top: -38px;
		right: calc(50% - 9px);
	}

	.timeline-img img {
		width: 100%;
		max-width: 320px;
		height: auto;
	}
}
.how-to-play {
	background-color: #140e20;
	padding: 100px 20px;
}

.step-flow {
	display: flex;
	flex-direction: column;
	gap: 80px;
	position: relative;
}

.step {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	flex-wrap: wrap;
}

.step-img {
	flex: 1 1 300px;
}

.step-img img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.step-content {
	flex: 1 1 400px;
}

.step-content h3 {
	color: #ffdd57;
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.step-content p {
	color: #ddd;
	font-size: 1.05rem;
	line-height: 1.6;
}

.step:nth-child(even) .step-img {
	order: 2;
}

.step:nth-child(even) .step-content {
	order: 1;
}

/* Mobile layout */
@media (max-width: 768px) {
	.step {
		flex-direction: column;
		text-align: center;
	}

	.step:nth-child(even) .step-img,
	.step:nth-child(even) .step-content {
		order: unset;
	}

	.step-content {
		padding-top: 20px;
	}
}
.testimonials {
	background-color: #20152c;
	padding: 100px 20px 80px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.testimonial-card {
	background-color: #2a1b3f;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
	position: relative;
	transition: transform 0.3s;
	border: 2px dashed #ff3c3c;
}

.testimonial-card:hover {
	transform: scale(1.03);
}

.tilt-left {
	transform: rotate(-1.5deg);
}

.tilt-right {
	transform: rotate(1.5deg);
}

.testimonial-avatar img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ffdd57;
	margin-bottom: 12px;
}

.testimonial-text h3 {
	font-size: 1.3rem;
	color: #ffdd57;
	margin-bottom: 4px;
}

.testimonial-text .location {
	font-size: 0.9rem;
	color: #aaa;
	display: block;
	margin-bottom: 12px;
}

.testimonial-text p {
	color: #ddd;
	font-size: 1rem;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
	.testimonial-card {
		transform: none !important;
	}
}
.gallery-section {
	background-color: #0f0a17;
	padding: 100px 20px 80px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.3s;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-item .overlay {
	position: absolute;
	bottom: 0;
	background: rgba(20, 20, 20, 0.7);
	color: #ffdd57;
	width: 100%;
	padding: 10px;
	font-size: 0.95rem;
	opacity: 0;
	transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
	opacity: 1;
}

.gallery-item.tall img {
	height: 320px;
	object-fit: cover;
}

.gallery-item.wide {
	grid-column: span 2;
}

@media (max-width: 768px) {
	.gallery-item.wide {
		grid-column: span 1;
	}

	.gallery-item.tall img {
		height: auto;
	}
}
.cinematic-stats {
	background-color: #130c1a;
	padding: 100px 20px 80px;
}

.cinematic-wrapper {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

.cinematic-poster {
	flex: 1 1 420px;
	text-align: center;
}

.cinematic-poster img {
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
	width: 100%;
	max-width: 420px;
}

.cinematic-poster .caption {
	color: #ffdd57;
	margin-top: 12px;
	font-style: italic;
	font-size: 1rem;
}

.stats-panel {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.stat-box {
	background-color: #251831;
	border-left: 4px solid #ff3c3c;
	padding: 16px 20px;
	border-radius: 10px;
	display: flex;
	gap: 16px;
	align-items: center;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
	transition: transform 0.3s;
}

.stat-box:hover {
	transform: translateX(6px);
}

.stat-box img {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
}

.stat-box h3 {
	font-size: 1.3rem;
	color: #ffdd57;
	margin-bottom: 4px;
}

.stat-box p {
	font-size: 1rem;
	color: #ddd;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
	.cinematic-wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.stats-panel {
		align-items: center;
	}

	.stat-box {
		flex-direction: column;
		text-align: center;
	}

	.stat-box img {
		margin-bottom: 10px;
	}
}
.game-modes {
	background-color: #170d23;
	padding: 100px 20px 80px;
}

.modes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.mode-card {
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	height: 400px;
	display: flex;
	align-items: flex-end;
	box-shadow: 0 0 20px rgba(255, 0, 80, 0.15);
	transition: transform 0.4s, box-shadow 0.4s;
}

.mode-card:hover {
	transform: scale(1.03);
	box-shadow: 0 0 24px rgba(255, 255, 255, 0.25);
}

.mode-overlay {
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	padding: 24px;
	width: 100%;
}

.mode-overlay img {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	margin-bottom: 10px;
}

.mode-overlay h3 {
	font-size: 1.5rem;
	color: #ffdd57;
	margin-bottom: 10px;
}

.mode-overlay p {
	font-size: 1rem;
	line-height: 1.5;
	color: #ddd;
}

/* Responsive */
@media (max-width: 480px) {
	.mode-card {
		height: 360px;
	}

	.mode-overlay {
		padding: 16px;
	}

	.mode-overlay h3 {
		font-size: 1.3rem;
	}
}
.manifesto {
	background-color: #100918;
	padding: 100px 20px 80px;
}

.manifesto-text {
	max-width: 800px;
	margin: auto;
	font-size: 1.15rem;
	line-height: 1.9;
	color: #ddd;
	font-family: 'Georgia', serif;
}

.manifesto-text p {
	margin-bottom: 24px;
}

.manifesto-text strong {
	color: #ffdd57;
	font-weight: 600;
}

.manifesto-text em {
	color: #ff3c3c;
	font-style: italic;
	display: block;
	margin: 20px 0;
	font-size: 1.1rem;
	text-align: center;
}

@media (max-width: 480px) {
	.manifesto-text {
		font-size: 1rem;
		line-height: 1.7;
	}
}
.contact-zone {
	background-color: #0a0612;
	padding: 100px 20px 80px;
	border-top: 3px dashed #ff3c3c;
}

.contact-intro {
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}

.contact-intro h2 {
	font-size: 2.4rem;
	color: #ffdd57;
	margin-bottom: 12px;
}

.contact-intro p {
	font-size: 1.05rem;
	color: #ccc;
	line-height: 1.6;
}

.coop-form {
	max-width: 700px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.form-row input {
	flex: 1 1 240px;
}

.coop-form input,
.coop-form textarea {
	padding: 14px 16px;
	border: 2px solid #251731;
	background-color: #1a1226;
	color: #fff;
	border-radius: 8px;
	font-size: 1rem;
	transition: border 0.3s;
	width: 100%;
}

.coop-form input:focus,
.coop-form textarea:focus {
	border-color: #ff3c3c;
	outline: none;
}

.coop-form input {
	width: 20px;
	accent-color: #ffdd57;
}

.coop-form textarea {
	resize: vertical;
	min-height: 160px;
}

.coop-checkbox {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	color: #ccc;
	gap: 10px;
}

.coop-checkbox a {
	color: #ffdd57;
	text-decoration: underline;
}

.send-btn {
	background-color: #ff3c3c;
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	padding: 14px 26px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.send-btn:hover {
	background-color: #e02b2b;
	transform: scale(1.03);
}

/* Mobile */
@media (max-width: 500px) {
	.form-row {
		flex-direction: column;
		gap: 12px;
	}

	.contact-intro h2 {
		font-size: 2rem;
	}
}
.faq-section {
	background-color: #160f20;
	padding: 100px 20px 80px;
}

.faq-list {
	max-width: 800px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background-color: #22142c;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
	border-left: 4px solid #ff3c3c;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px;
	text-align: left;
	font-size: 1.1rem;
	font-weight: bold;
	color: #ffdd57;
	cursor: pointer;
	transition: background 0.3s;
}

.faq-question:hover {
	background-color: #2c1a38;
}

.faq-answer {
	display: block;
	padding: 0 20px 20px;
	font-size: 1rem;
	color: #ddd;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 480px) {
	.faq-question {
		font-size: 1rem;
		padding: 16px;
	}

	.faq-answer {
		font-size: 0.95rem;
		padding: 0 16px 16px;
	}
}
.mode-card-1 {
	background-image: url('../images/mode-campaign.jpg');
}
.mode-card-2 {
	background-image: url('../images/mode-endless.jpg');
}
.mode-card-3 {
	background-image: url('../images/mode-pvp.jpg');
}
