:root {
	--primary-bg: #291d0c;

	--secondary-bg: #291d0c;

	--header-bg: #3d3d3d;

	--accent-color: #fff;

	--highlight-color: #00ff22;

	--highlight-hover: #03c71d;

	--text-light: #e0e0e0;

	--text-dark: #0a1118;

	--border-color: #494b4c;

	--dropdown-text-color: #b9c7e0;

	--dropdown-hover-bg: #5e6c84;

	--footer-link-color: #00ff22;

	--footer-link-hover: #03c71d;

	--copyright-text-color: #fff;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Verdana', sans-serif;
	line-height: 1.6;
	color: var(--text-light);
	background: linear-gradient(
		to bottom,
		var(--primary-bg),
		var(--secondary-bg)
	);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-banner {
	background: var(--header-bg);
	color: #fff;
	padding: 0;
	border-radius: 10px;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.banner-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	min-height: 70px;
}

.game-logo {
	margin: 0;
}

.game-logo a {
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.game-logo img {
	max-height: 60px;
	vertical-align: middle;
	margin-right: 10px;
}

.banner-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.action-button {
	background: var(--highlight-color);
	color: var(--text-dark);

	padding: 10px 20px;
	border-radius: 100px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
	background: var(--highlight-hover);
}

.center-cta {
	text-align: center;
	margin: 30px 0;
}

.center-cta .action-button {
	font-size: 18px;
	padding: 15px 30px;
	display: inline-block;
}

.language-dropdown {
	position: relative;
	display: inline-block;
}

.language-button {
	background: var(--secondary-bg);
	color: var(--dropdown-text-color);
	padding: 8px 16px;
	border-radius: 100px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background 0.3s ease;
	width: auto;
	white-space: nowrap;
}

.language-button .fi {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.language-button:hover {
	background: var(--dropdown-hover-bg);
}

.dropdown-content {
	display: none;
	position: absolute;
	background: var(--secondary-bg);
	width: max-content;
	min-width: 120px;
	max-width: 250px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
	z-index: 1001;
	border-radius: 5px;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
	padding: 5px 0;
}

.dropdown-content a {
	color: var(--dropdown-text-color);
	padding: 12px 16px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background 0.3s ease, color 0.3s ease;
	white-space: nowrap;
}

.dropdown-content a .fi {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.dropdown-content a:hover {
	background: var(--dropdown-hover-bg);
	color: #fff;
}

.language-dropdown:hover .dropdown-content {
	display: block;
}

.page-content-wrapper {
	max-width: 1400px;
	width: 100%;

	margin: 20px auto;
	padding: 20px;
	flex-grow: 1;
}

.section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.section-title {
	font-size: 40px;
	color: var(--accent-color);

	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin-bottom: 10px;
}

.game-feature-card ul li a {
	color: #00ff22;
}

.game-demo-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
	margin-bottom: 30px;
}

.game-demo-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.article-body {
	width: 100%;

	max-width: 100%;
}

.article-body img {
	max-width: 100%;
	height: auto;
	margin: 20px 0;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game-feature-card {
	background: #191919;
	padding: 25px;
	border-radius: 2px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	margin-bottom: 25px;
}

.game-feature-card h2 {
	color: var(--highlight-color);

	margin-bottom: 15px;
	font-size: 24px;
}

.game-feature-card ol {
	margin-left: 30px;
	padding-left: 10px;
	color: var(--text-light);
}

.media-text-block {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}

.media-text-block img {
	max-width: 250px;
	border-radius: 10px;
	float: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.media-text-block .text-content {
	flex: 1;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: #191919;

	border-radius: 8px;
	overflow: hidden;
}

th,
td {
	padding: 12px 15px;
	text-align: left;
	border: 1px solid var(--border-color);
}

th {
	background: var(--header-bg);

	color: #fff;
	font-weight: bold;
}

.promo-callout {
	display: flex;
	align-items: center;
	background: var(--accent-color);

	color: var(--text-dark);

	padding: 25px;
	border-radius: 10px;
	margin: 30px 0;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.promo-graphic {
	flex: 0 0 20%;
	margin-right: 20px;
}

.promo-graphic img {
	max-width: 100%;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-text {
	flex: 1;
}

.promo-text span {
	font-size: 20px;
	font-weight: bold;
	color: var(--text-dark);
}

.promo-action {
	flex: 0 0 25%;
	text-align: center;
}

.promo-action a {
	background: var(--highlight-color);

	color: #fff;
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promo-action a:hover {
	background: var(--highlight-hover);
}

.site-navigation {
	background: var(--primary-dark);
	border-bottom: 1px solid var(--secondary-dark);
}

.site-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

.site-navigation li {
	margin: 0;
}

.site-navigation a {
	display: block;
	padding: 15px 20px;
	color: var(--text-light);
	text-decoration: none;
	transition: background 0.3s, color 0.3s;
	border-bottom: 2px solid transparent;
}

.site-navigation a:hover {
	background: var(--secondary-dark);
	color: var(--accent-bright);
}

.site-navigation a.active {
	background: var(--secondary-dark);
	color: var(--highlight-warm);
	border-bottom-color: var(--highlight-warm);
}

@media (max-width: 768px) {
	.site-navigation ul {
		flex-direction: column;
	}

	.site-navigation a {
		text-align: center;
		padding: 12px 20px;
	}
}

.site-info-bar {
	background: var(--header-bg);

	color: var(--text-light);
	border-radius: 10px;
	padding: 20px 0;
	text-align: center;
	margin-top: auto;
}

.info-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.info-links nav a {
	color: var(--footer-link-color);

	text-decoration: none;
	transition: color 0.3s ease;
}

.info-links nav a:hover {
	color: var(--footer-link-hover);
}

.copy-text {
	font-size: 14px;
	color: var(--copyright-text-color);

	margin-top: 10px;
}

.img-cov {
	width: 100%;
	height: 100%;
}

.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
@media (max-width: 768px) {
	.banner-content {
		flex-direction: column;
		text-align: center;
		padding-bottom: 15px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.game-logo {
		margin-bottom: 15px;
	}

	.banner-actions {
		flex-direction: column;
		gap: 15px;
		margin-top: 10px;
		width: 100%;
	}

	.action-button {
		width: 90%;
		max-width: 300px;
		margin: 0 auto;
		padding: 12px 20px;
	}

	.center-cta .action-button {
		width: 90%;
		max-width: 350px;
		font-size: 16px;
		padding: 12px 25px;
	}

	.language-dropdown {
		width: 90%;
		max-width: 300px;
		margin: 0 auto;
	}

	.language-button {
		padding: 12px 16px;
		justify-content: center;
	}

	.dropdown-content {
		width: 100%;
		max-width: 200px;
		left: 50%;
		transform: translateX(-50%);
	}

	.page-content-wrapper {
		padding: 15px;
		margin: 15px auto;
		width: 100%;
	}

	.section-heading {
		margin-bottom: 30px;
	}

	.section-title {
		font-size: 32px;
	}

	.game-demo-container {
		margin-bottom: 25px;
		width: 100%;
	}

	.article-body {
		margin-bottom: 15px;
		width: 100%;
		max-width: 100%;
	}

	.article-body img {
		max-width: 100%;
		height: auto;
		margin: 15px 0;
	}

	.game-feature-card {
		padding: 15px;
		margin-bottom: 20px;
	}

	.game-feature-card h2 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.game-feature-card ol {
		margin-left: 20px;
		padding-left: 5px;
	}

	.media-text-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 20px;
	}

	.media-text-block img {
		max-width: 100%;
		height: auto;
		margin: 0 auto 15px auto;
		float: none;
	}

	table {
		margin: 15px 0;
	}

	th,
	td {
		padding: 10px;
		font-size: 13px;
	}

	.promo-callout {
		flex-direction: column;
		text-align: center;
		padding: 20px;
		margin: 25px 0;
	}

	.promo-graphic {
		flex: auto;
		margin-right: 0;
		margin-bottom: 15px;
		width: 80%;
		max-width: 180px;
	}

	.promo-graphic img {
		margin: 0 auto;
	}

	.promo-text {
		margin: 0 0 15px 0;
	}

	.promo-text span {
		font-size: 18px;
	}

	.promo-action {
		flex: auto;
		width: 90%;
		max-width: 250px;
		margin: 0 auto;
	}

	.promo-action a {
		padding: 12px 20px;
	}

	.site-info-bar {
		padding: 15px 0;
	}

	.info-links {
		gap: 8px;
	}

	.copy-text {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.banner-content {
		padding-left: 5px;
		padding-right: 5px;
	}

	.game-logo img {
		max-height: 50px;
	}

	.game-logo a {
		font-size: 20px;
	}

	.action-button,
	.language-dropdown {
		width: 95%;
	}

	.center-cta .action-button {
		width: 95%;
		max-width: none;
	}

	.section-title {
		font-size: 26px;
	}

	.page-content-wrapper {
		padding: 10px;
	}

	.game-feature-card {
		padding: 10px;
	}

	.game-feature-card h2 {
		font-size: 18px;
	}

	th,
	td {
		padding: 8px;
		font-size: 12px;
	}

	.promo-callout {
		padding: 15px;
	}

	.promo-text span {
		font-size: 16px;
	}

	.promo-graphic {
		width: 90%;
	}

	.promo-action a {
		padding: 10px 15px;
	}

	.site-info-bar {
		padding: 10px 0;
	}

	.info-links nav a {
		font-size: 13px;
	}

	.copy-text {
		font-size: 12px;
	}
}
.footer__menu{
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
}
.footer__menu a {
	color: #fff;
	text-decoration: none;
}