* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #facc15;
	--primary-hover: #eab308;
	--background: #0f172a;
	--background-light: #1e293b;
	--background-card: #1a2744;
	--foreground: #f8fafc;
	--foreground-muted: #94a3b8;
	--border: #334155;
	--accent: #3b82f6;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, sans-serif;
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.6;
	overflow-x: hidden;
}

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

.age-banner {
	background-color: #dc2626;
	color: white;
	text-align: center;
	padding: 8px 16px;
	font-size: 14px;
}

.age-banner span {
	font-weight: bold;
	background-color: white;
	color: #dc2626;
	padding: 2px 8px;
	border-radius: 4px;
	margin-right: 8px;
}

.header {
	background-color: var(--background);
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--border);
}

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

.logo {
	font-size: 24px;
	font-weight: bold;
	color: var(--foreground);
	text-decoration: none;
	letter-spacing: 2px;
}

.logo-egg {
	color: var(--primary);
}

.nav-desktop {
	display: flex;
	gap: 32px;
}

.nav-desktop a {
	color: var(--foreground);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-desktop a:hover {
	color: var(--primary);
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu-btn span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--foreground);
	transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
	display: none;
	flex-direction: column;
	padding: 16px;
	background-color: var(--background-light);
}

.nav-mobile.active {
	display: flex;
}

.nav-mobile a {
	color: var(--foreground);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.15s ease-in-out, transform 0.15s ease-in-out;
	cursor: pointer;
	font-size: 16px;
	min-width: 150px;
}

.btn-primary {
	background: linear-gradient(180deg, #fde047 0%, #facc15 50%, #ca8a04 100%);
	color: #000;
	border: none;
	box-shadow: 0 4px 0 #a16207, 0 6px 10px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 1px;
}

.btn-primary:hover {
	background: linear-gradient(180deg, #fef08a 0%, #fde047 50%, #eab308 100%);
	transform: translateY(2px);
	box-shadow: 0 2px 0 #a16207, 0 0 10px rgba(250, 204, 21, 0.6),
		0 0 40px rgba(250, 204, 21, 0.4);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 1px;
}

.btn-outline:hover {
	background-color: rgba(250, 204, 21, 0.1);
	color: var(--primary);
	box-shadow: 0 0 20px rgba(250, 204, 21, 0.5), 0 0 40px rgba(250, 204, 21, 0.3),
		inset 0 0 15px rgba(250, 204, 21, 0.1);
}

.btn-small {
	padding: 10px 24px;
	font-size: 14px;
	min-width: 120px;
}

.hero {
	padding: 60px 0;
	background: linear-gradient(
		135deg,
		var(--background) 0%,
		#1a1a4e 50%,
		#4a1942 100%
	);
}

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

.hero h1 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 24px;
	line-height: 1.2;
}

.hero p {
	color: var(--foreground-muted);
	margin-bottom: 32px;
	font-size: 18px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-image img {
	width: 100%;
	max-width: 500px;
	height: auto;
}

.features {
	padding: 80px 0;
	background-color: var(--background);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature-card {
	background-color: var(--background-card);
	padding: 32px;
	border-radius: 16px;
}

.feature-icon {
	width: 180px;
	height: 180px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

.feature-card p {
	color: var(--foreground-muted);
	margin-bottom: 12px;
}

.highlight {
	color: var(--primary);
	font-weight: bold;
}

.difficulty-list {
	margin-top: 16px;
}

.difficulty-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px dotted var(--border);
	font-size: 14px;
}

.difficulty-item span:first-child {
	font-weight: bold;
}

.difficulty-item span:last-child {
	color: var(--foreground-muted);
}

.journey {
	padding: 80px 0;
	background-color: var(--background);
}

.journey .container {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}

.carousel {
	position: relative;
	background: linear-gradient(135deg, #2a3f5f 0%, #1e3a5f 100%);
	border-radius: 24px;
	padding: 20px;
	overflow: hidden;
}

.carousel-container {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary);
	color: white;
	border: none;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	z-index: 10;
}

.carousel-btn:hover {
	background-color: var(--primary-hover);
}

.carousel-prev {
	left: 10px;
}

.carousel-next {
	right: 10px;
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--border);
	cursor: pointer;
	transition: background-color 0.3s;
}

.carousel-dot.active {
	background-color: var(--foreground);
}

.journey-buttons {
	display: flex;
	gap: 16px;
	margin-top: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.journey-text h2 {
	font-size: 36px;
	margin-bottom: 24px;
}

.journey-text p {
	color: var(--foreground-muted);
	margin-bottom: 16px;
}

.about {
	padding: 80px 0;
	background-color: var(--background);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 48px;
}

.about-text h2 {
	font-size: 36px;
	margin-bottom: 24px;
}

.about-text h3 {
	font-size: 24px;
	margin: 32px 0 16px;
	color: var(--primary);
}

.about-text p {
	color: var(--foreground-muted);
	margin-bottom: 16px;
}

.table-wrapper {
	overflow-x: auto;
	margin: 24px 0;
}

.stats-table {
	width: 100%;
	border-collapse: collapse;
	background: linear-gradient(135deg, #2a3f5f 0%, #1e3a5f 100%);
	border-radius: 12px;
	overflow: hidden;
}

.stats-table th,
.stats-table td {
	padding: 16px 24px;
	text-align: left;
}

.stats-table th {
	background-color: rgba(59, 130, 246, 0.3);
	font-weight: bold;
}

.stats-table tr:not(:last-child) td {
	border-bottom: 1px solid var(--border);
}

.about-card {
	background-color: var(--background-card);
	border-radius: 16px;
	padding: 24px;
	height: fit-content;
	position: sticky;
	top: 100px;
}

.game-preview {
	background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 24px;
}

.game-preview img {
	width: 100%;
	height: auto;
}

.game-stats {
	margin-bottom: 24px;
}

.stat-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px dotted var(--border);
}

.stat-row span:last-child {
	font-weight: bold;
}

.developer-logo {
	text-align: center;
	margin-bottom: 24px;
}

.inout-logo {
	font-size: 28px;
	font-weight: bold;
	font-style: italic;
}

.inout-logo span {
	color: var(--primary);
}

.card-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.card-buttons .btn {
	width: 100%;
}

.advantages {
	padding: 80px 0;
	background-color: var(--background-light);
}

.advantages h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 48px;
}

.advantages-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.advantage-card {
	background-color: var(--background-card);
	padding: 24px;
	border-radius: 16px;
	text-align: center;
	transition: transform 0.3s;
	width: calc(25% - 18px);
	min-width: 250px;
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-card p {
	color: var(--foreground-muted);
	font-size: 14px;
}

.advantage-icon {
	font-size: 2rem;
}

.why-chicken {
	padding: 80px 0;
	background-color: var(--background);
}

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

.why-text h2 {
	font-size: 36px;
	margin-bottom: 32px;
}

.why-reasons {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.reason h4 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--primary);
}

.reason p {
	color: var(--foreground-muted);
}

.why-image {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.why-image img {
	width: 100%;
	border-radius: 16px;
}

.why-stats {
	display: flex;
	justify-content: space-around;
	background-color: var(--background-card);
	padding: 24px;
	border-radius: 12px;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 28px;
	font-weight: bold;
	color: var(--primary);
}

.stat-label {
	font-size: 14px;
	color: var(--foreground-muted);
}

.device {
	padding: 80px 0;
	background-color: var(--background);
}

.device-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
	gap: 48px;
	align-items: center;
}

.device-image {
	position: relative;
	display: flex;
	justify-content: center;
}

.phone-frame {
	border-radius: 32px;
	padding: 12px;
}

.phone-frame img {
	width: 100%;
	border-radius: 24px;
	max-height: 500px;
}

.floating-coins {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.coin {
	position: absolute;
	font-size: 40px;
	animation: float 3s ease-in-out infinite;
}

.coin-1 {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.coin-2 {
	top: 50%;
	right: 5%;
	animation-delay: 1s;
}

.coin-3 {
	bottom: 20%;
	left: 5%;
	animation-delay: 2s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.device-text h2 {
	font-size: 36px;
	margin-bottom: 24px;
}

.device-text p {
	color: var(--foreground-muted);
	margin-bottom: 16px;
}

.device-buttons {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.reviews {
	padding: 80px 0;
	background-color: var(--background);
}

.reviews h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 48px;
	color: var(--primary);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.review-card {
	background-color: var(--background-card);
	padding: 24px;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	flex-wrap: wrap;
	gap: 8px;
}

.review-header strong {
	color: var(--primary);
}

.review-header span {
	font-size: 14px;
	color: var(--foreground-muted);
}

.platform {
	color: var(--accent);
}

.stars {
	color: var(--primary);
	margin-bottom: 12px;
	letter-spacing: 2px;
}

.review-card p {
	color: var(--foreground-muted);
	font-size: 14px;
}

.faq {
	padding: 80px 0;
	background-color: var(--background-light);
}

.faq h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 48px;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 20px 24px;
	background-color: var(--background-card);
	border: none;
	color: var(--foreground);
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s;
}

.faq-question:hover {
	background-color: var(--background);
}

.faq-icon {
	font-size: 24px;
	color: var(--primary);
	transition: transform 0.3s;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background-color: var(--background);
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 20px 24px;
	color: var(--foreground-muted);
}

.payments {
	padding: 80px 0;
	background-color: var(--background);
}

.payments h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 16px;
}

.payments-subtitle {
	text-align: center;
	color: var(--foreground-muted);
	margin-bottom: 48px;
}

.payments-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.payment-card {
	background-color: var(--background-card);
	padding: 24px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--border);
	transition: transform 0.3s, border-color 0.3s;
}

.payment-card:hover {
	transform: translateY(-5px);
}

.payment-card.featured {
	border-color: var(--primary);
	background: linear-gradient(
		135deg,
		var(--background-card) 0%,
		rgba(250, 204, 21, 0.1) 100%
	);
}

.payment-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

.payment-card span {
	font-weight: 600;
}

.responsible {
	padding: 80px 0;
	background-color: var(--background-light);
	text-align: center;
}

.responsible h2 {
	font-size: 36px;
	margin-bottom: 24px;
}

.responsible > .container > p {
	color: var(--foreground-muted);
	max-width: 700px;
	margin: 0 auto 32px;
}

.responsible-points {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 32px;
}

.point {
	background-color: var(--background-card);
	padding: 24px;
	border-radius: 12px;
}

.point-icon {
	font-size: 32px;
	display: block;
	margin-bottom: 12px;
}

.point p {
	color: var(--foreground-muted);
	font-size: 14px;
}

.help-text {
	color: var(--foreground-muted);
	margin-bottom: 16px;
}

.help-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}
.help-links img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.help-links a {
	color: var(--accent);
	text-decoration: none;
}

.help-links a:hover {
	text-decoration: underline;
}

.footer {
	padding: 60px 0 40px;
	background-color: #4a5568;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 32px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 24px;
}

.footer-chicken img {
	width: 120px;
	height: auto;
}

.footer-logo {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.footer-info p {
	color: var(--foreground-muted);
	margin-bottom: 12px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: right;
}

.footer-nav a {
	color: var(--foreground);
	text-decoration: none;
	font-weight: 500;
}

.footer-nav a:hover {
	color: var(--primary);
}

.footer-disclaimer {
	border-top: 1px solid var(--border);
	padding-top: 32px;
}

.footer-disclaimer p {
	color: var(--foreground-muted);
	font-size: 12px;
	margin-bottom: 12px;
	text-align: center;
}

@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: 1fr;
	}

	.journey .container {
		grid-template-columns: 1fr;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.about-card {
		position: static;
	}

	.advantage-card {
		width: calc(50% - 12px);
	}

	.why-content {
		grid-template-columns: 1fr;
	}

	.device-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.device-buttons {
		justify-content: center;
	}

	.responsible-points {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.mobile-menu-btn {
		display: flex;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-image {
		order: -1;
	}

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

	.hero-buttons {
		justify-content: center;
	}

	.carousel-prev {
		left: 10px;
	}

	.carousel-next {
		right: 10px;
	}

	.carousel-btn {
		width: 32px;
		height: 32px;
		font-size: 18px;
	}

	.journey-buttons {
		flex-direction: column;
		align-items: center;
	}

	.journey-buttons .btn {
		width: 100%;
		max-width: 300px;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.payments-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-brand {
		flex-direction: column;
	}

	.footer-nav {
		text-align: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.why-stats {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.advantage-card {
		width: 100%;
	}

	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.responsible-points {
		grid-template-columns: 1fr;
	}

	.payments-grid {
		grid-template-columns: 1fr;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons .btn {
		width: 100%;
	}

	.device-buttons {
		flex-direction: column;
	}

	.device-buttons .btn {
		width: 100%;
	}

	h2 {
		font-size: 28px !important;
	}
}
