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


body > div > a {
	text-decoration: none;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #fff;
	background: #004258;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	flex: 1;
}

.header {
	text-align: center;
	padding: 20px 0;
	background: #145368;
	border-radius: 10px;
	margin-bottom: 20px;
}

.logo {
	max-height: 80px;
	width: auto;
}

.banner-container {
	position: relative;
	width: 100%;
	margin: 20px 0;
	background: #145368;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 1845/520;
}

.game-image {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 10px;
	object-fit: cover;
}

@media (max-width: 768px) {
	.game-image {
		transform: scale(1.05);
		object-position: 40% 35%;
	}
}

.cta-button {
	display: block;
	max-width: 300px;
	margin: -25px auto 30px;
	padding: 15px 30px;
	background: #FF2B39;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	z-index: 2;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.content-zone {
	background: #145368;
	padding: 30px;
	border-radius: 10px;
	margin: 20px 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Content Zone Image Styles */
.content-zone img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
	display: block;
}

.content-zone img[data-aspect="square"] {
	aspect-ratio: 1/1;
	object-fit: cover;
}

.content-zone img[data-aspect="wide"] {
	aspect-ratio: 16/9;
	object-fit: cover;
}

.content-zone img[data-size="small"] {
	max-width: 300px;
	margin: 20px auto;
}

.content-zone img[data-size="medium"] {
	max-width: 500px;
	margin: 20px auto;
}

.image-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin: 20px 0;
}

.image-row img {
	flex: 1;
	min-width: 200px;
	margin: 0;
}

/* Table Styles */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: rgba(0, 28, 44, 0.3);
}

th, td {
	padding: 12px;
	text-align: left;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

th {
	background: rgba(255, 195, 0, 0.1);
	font-weight: bold;
}

/* List Styles */
ul, ol {
	margin: 20px 0;
	padding-left: 40px;
}

li {
	margin-bottom: 10px;
	position: relative;
}

ul li::before {
	content: "•";
	color: #FD3E3E;
	font-weight: bold;
	position: absolute;
	left: -20px;
}

ol li::marker {
	color: #FD3E3E;
	font-weight: bold;
}

/* Footer Styles */
.footer {
	background: #145368;
	padding: 40px 0 20px;
	margin-top: 40px;
}

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

.footer-links {
	display: flex;
	justify-content: center;
	gap: 80px;
	margin-bottom: 40px;
}

.footer-section {
	margin: 0;
	min-width: 160px;
}

.footer-section h3 {
	color: #FD3E3E;
	font-size: 16px;
	margin-bottom: 15px;
	font-weight: 600;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.footer-section ul li::before {
	content: none;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-section a:hover {
	color: #FD3E3E;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
}

.footer-legal {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	line-height: 1.5;
}

.footer-legal p {
	margin: 5px 0;
}

@media (max-width: 768px) {
	.wrapper {
		padding: 10px;
	}

	.content-zone {
		padding: 20px;
	}

	.logo {
		max-height: 60px;
	}

	.image-row {
		gap: 10px;
	}

	.image-row img {
		min-width: 150px;
	}

	.content-zone img[data-size="small"],
	.content-zone img[data-size="medium"] {
		max-width: 100%;
	}

	.footer {
		padding: 30px 0 15px;
	}

	.footer-links {
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-bottom: 30px;
	}

	.footer-section {
		margin: 0 0 25px;
		min-width: 160px;
	}

	.footer-section a {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.header {
		padding: 10px 0;
	}

	.content-zone {
		padding: 15px;
	}

	.logo {
		max-height: 40px;
	}

	.footer-content {
		padding: 0 15px;
	}

	.footer-section h3 {
		font-size: 16px;
	}

	.footer-section a {
		font-size: 13px;
	}
}
