.lore-origins {
	background-color: #0a060f;
	color: #f0f0f0;
	padding: 100px 20px 80px;
}

.lore-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
	justify-content: center;
}

.lore-text {
	flex: 1 1 420px;
	max-width: 600px;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #ccc;
}

.lore-text p {
	margin-bottom: 20px;
}

.highlighted-quote {
	background-color: #1c1124;
	color: #ffdd57;
	font-style: italic;
	padding: 12px 16px;
	border-left: 4px solid #ff3c3c;
	margin-top: 30px;
}

.lore-images {
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lore-images img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(255, 0, 80, 0.3);
	transition: transform 0.3s;
}

.lore-images img:hover {
	transform: scale(1.03);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.lore-grid {
		flex-direction: column;
	}

	.highlighted-quote {
		text-align: center;
	}
}
.dev-diary {
	background: #100814;
	color: #f2f2f2;
	padding: 100px 20px;
}

.dev-diary h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 60px;
	color: #ffde59;
}

.timeline {
	position: relative;
	padding-left: 30px;
	border-left: 3px solid #ff3c3c;
}

.timeline-entry {
	margin-bottom: 40px;
	position: relative;
}

.timeline-date {
	font-weight: bold;
	color: #aaa;
	margin-bottom: 6px;
}

.timeline-content {
	background: #1b1123;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(255, 60, 60, 0.2);
	position: relative;
}

.timeline-content h3 {
	color: #ff88aa;
	margin-bottom: 10px;
}

.timeline-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #ddd;
}

.timeline-entry::before {
	content: '';
	position: absolute;
	top: 12px;
	left: -10px;
	width: 16px;
	height: 16px;
	background: #ff3c3c;
	border: 2px solid #fff;
	border-radius: 50%;
}

/* Mobile */
@media (max-width: 600px) {
	.timeline {
		padding-left: 15px;
	}

	.timeline-entry::before {
		left: -8px;
	}
}
.meet-units {
	background-color: #0e0a13;
	color: #fff;
	padding: 100px 20px;
}

.meet-units h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 20px;
	color: #ffde59;
}

.meet-units .intro {
	text-align: center;
	font-size: 1.1rem;
	color: #ccc;
	max-width: 600px;
	margin: 0 auto 50px;
}

.unit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.unit-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	transition: transform 0.3s ease;
	cursor: pointer;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.unit-card img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.unit-card:hover img {
	transform: scale(1.1);
}

.unit-info {
	position: absolute;
	bottom: 0;
	background: rgba(10, 10, 10, 0.85);
	color: #ffdddd;
	width: 100%;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.unit-card:hover .unit-info {
	transform: translateY(0);
}

.unit-info h3 {
	margin: 0 0 10px;
	font-size: 1.2rem;
	color: #ff3c3c;
}

.unit-info p {
	font-size: 0.95rem;
	line-height: 1.5;
}
.evolution-timeline {
	background-color: #1a101f;
	color: #fff;
	padding: 100px 20px;
	overflow: hidden;
}

.evolution-timeline h2 {
	text-align: center;
	font-size: 2rem;
	color: #ffde59;
	margin-bottom: 15px;
}

.evolution-timeline .intro {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 40px;
	font-size: 1.1rem;
	color: #ccc;
}

.evolution-scroll {
	display: flex;
	overflow-x: auto;
	gap: 30px;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
}

.evolution-year {
	flex: 0 0 280px;
	background: #2c1e3a;
	border-radius: 12px;
	padding: 20px;
	scroll-snap-align: start;
	box-shadow: 0 0 10px rgba(255, 60, 60, 0.1);
	transition: transform 0.3s;
}

.evolution-year:hover {
	transform: scale(1.03);
}

.evolution-year img {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 15px;
}

.evolution-year h3 {
	color: #ff88aa;
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.evolution-year p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #ddd;
}

/* Scrollbar styling */
.evolution-scroll::-webkit-scrollbar {
	height: 6px;
}

.evolution-scroll::-webkit-scrollbar-thumb {
	background: #ff3c3c;
	border-radius: 3px;
}

/* Mobile fix */
@media (max-width: 480px) {
	.evolution-year {
		flex: 0 0 240px;
	}
}
.fun-stats {
	background-color: #0d0c14;
	color: #fff;
	padding: 100px 20px;
}

.fun-stats h2 {
	text-align: center;
	font-size: 2rem;
	color: #ffde59;
	margin-bottom: 40px;
}

.stats-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.stat-card {
	background: #241c2f;
	padding: 30px;
	border-radius: 10px;
	width: 220px;
	text-align: center;
	box-shadow: 0 0 10px rgba(255, 60, 60, 0.2);
}

.stat-card h3 {
	font-size: 2rem;
	color: #ff3c3c;
	margin-bottom: 10px;
}

.stat-card p {
	font-size: 1rem;
	color: #ccc;
}

/* Accordion */
.secrets h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.3rem;
	color: #ff88aa;
}

.accordion {
	max-width: 700px;
	margin: 0 auto;
}

.accordion-item {
	margin-bottom: 10px;
	border: 1px solid #333;
	border-radius: 6px;
	overflow: hidden;
}

.accordion-toggle {
	background: #2a1f34;
	color: #fff;
	padding: 15px 20px;
	width: 100%;
	text-align: left;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s;
}

.accordion-toggle:hover {
	background: #392a4a;
}

.accordion-content {
	background: #1c1424;
	padding: 15px 20px;
	display: none;
	font-size: 0.95rem;
	color: #ddd;
	line-height: 1.6;
}
.behind-the-coop {
	background: #140e1a;
	color: #fff;
	padding: 100px 20px;
}

.behind-the-coop h2 {
	text-align: center;
	font-size: 2rem;
	color: #ffde59;
	margin-bottom: 20px;
}

.gallery-intro {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 40px;
	color: #ccc;
	font-size: 1.05rem;
}

.coop-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.gallery-item {
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(255, 60, 60, 0.15);
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item.wide {
	grid-column: span 2;
}

.gallery-item.tall {
	grid-row: span 2;
}

/* Mobile fix */
@media (max-width: 640px) {
	.gallery-item.wide,
	.gallery-item.tall {
		grid-column: span 1;
		grid-row: span 1;
	}
}
.chicken-manifesto {
	background: #1a111e;
	color: #fff;
	padding: 100px 20px;
}

.chicken-manifesto h2 {
	text-align: center;
	font-size: 2rem;
	color: #ffde59;
	margin-bottom: 30px;
}

.manifesto-wrapper {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.manifesto-text {
	flex: 1 1 400px;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #ddd;
}

.manifesto-text strong {
	color: #ff88aa;
}

.manifesto-text blockquote {
	margin: 20px 0;
	padding-left: 20px;
	border-left: 3px solid #ff3c3c;
	font-style: italic;
	color: #ffb3b3;
}

.manifesto-image {
	flex: 1 1 300px;
	text-align: center;
}

.manifesto-image img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(255, 60, 60, 0.2);
}

/* Mobile adaptation */
@media (max-width: 768px) {
	.manifesto-wrapper {
		flex-direction: column;
	}

	.manifesto-text,
	.manifesto-image {
		text-align: center;
	}

	.manifesto-text {
		padding: 0 10px;
	}
}
.voices-coop {
	background: #0e0b13;
	color: #fff;
	padding: 100px 20px;
}

.voices-coop h2 {
	text-align: center;
	color: #ffde59;
	font-size: 2rem;
	margin-bottom: 40px;
}

.voices-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.voice-bubble {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	max-width: 350px;
}

.voice-bubble img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #ff3c3c;
}

.bubble {
	background: #1e1426;
	padding: 15px 20px;
	border-radius: 18px;
	position: relative;
	font-size: 0.95rem;
	color: #ddd;
	box-shadow: 0 0 8px rgba(255, 60, 60, 0.2);
}

.bubble:after {
	content: '';
	position: absolute;
	top: 15px;
	left: -12px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-right: 12px solid #1e1426;
	border-bottom: 10px solid transparent;
}

.bubble span {
	display: block;
	font-size: 0.85rem;
	margin-top: 10px;
	color: #999;
}

/* Mobile layout */
@media (max-width: 600px) {
	.voice-bubble {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.bubble:after {
		display: none;
	}
}
.zombie-intel {
	background: #1c131f;
	color: #fff;
	padding: 100px 20px;
}

.zombie-intel h2 {
	text-align: center;
	font-size: 2rem;
	color: #ffde59;
	margin-bottom: 20px;
}

.intel-intro {
	max-width: 600px;
	margin: 0 auto 50px;
	text-align: center;
	color: #ccc;
	font-size: 1.05rem;
}

.intel-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.intel-card {
	background: #2b1e30;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(255, 60, 60, 0.1);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.intel-card:hover {
	transform: translateY(-8px);
}

.intel-card img {
	width: 100%;
	max-height: 180px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 15px;
}

.intel-card h3 {
	font-size: 1.2rem;
	color: #ff88aa;
	margin-bottom: 5px;
}

.intel-card .danger {
	color: #ff3c3c;
	font-weight: bold;
	margin-bottom: 10px;
}

.intel-card p {
	font-size: 0.95rem;
	color: #ddd;
	line-height: 1.6;
	text-align: center;
}
.join-resistance {
	background: #140d17;
	color: #fff;
	padding: 100px 20px;
}

.resistance-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.resistance-content {
	flex: 1 1 400px;
}

.resistance-content h2 {
	font-size: 2rem;
	color: #ffde59;
	margin-bottom: 20px;
}

.resistance-content p {
	font-size: 1.05rem;
	color: #ddd;
	margin-bottom: 25px;
	line-height: 1.7;
}

.resistance-content strong {
	color: #ff88aa;
}

.play-button img {
	width: 160px;
	transition: transform 0.3s ease;
}

.play-button img:hover {
	transform: scale(1.1);
}

.resistance-image {
	flex: 1 1 320px;
	text-align: center;
}

.resistance-image img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Mobile styles */
@media (max-width: 768px) {
	.resistance-wrapper {
		flex-direction: column;
		text-align: center;
	}
}
