
* {
	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: #375F89;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background:#CAD3FF;
	background-repeat: repeat;
	background-size: 200px 133px;
	background-position: 0 0;
}

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

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

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

.banner-container {
	position: relative;
	width: 100%;
	margin: 20px 0;
	background: #FAF9FF;
	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: linear-gradient(180deg, #DB5670 0%, #F8A530 100%);
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(248, 165, 48, 1);
}

.cta-button:hover {
	background: linear-gradient(180deg, #DB5670 0%, #F8A530 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(219, 86, 112, 1);
}

.cta-button:active {
	background: linear-gradient(180deg, #DB5670 0%, #F8A530 100%);
	transform: translateY(1px);
	box-shadow: 0 2px 4px rgba(248, 165, 48, 1);
}

.content-zone {
	background: #B8C3FF;
	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;
	justify-content: center;
}


.image-row a {
	flex: 0 1 calc(25% - 20px); /* 4 images per row with gap considered */
	min-width: 150px;
	max-width: 250px;
	display: block;
}

.image-row img {
	width: 100%;
	height: auto;
	object-fit: contain;
	margin: 0;
	display: block;
	max-height: 300px; /* Limit maximum height */
}

/* 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: #EBE7F8;
	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;
	color: #7B6CAA;
}

.footer-section {
	margin: 0;
	min-width: 160px;
	color: #7B6CAA;
}

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

/* Mobile responsive fixes */
@media (max-width: 992px) {
	.image-row a {
		flex: 0 1 calc(33.333% - 20px); /* 3 images per row on medium screens */
	}
}

.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: #7B6CAA;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

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

.footer-bottom {
	border-top: 1px solid #7B6CAA;
	padding-top: 20px;
	text-align: center;
}

.footer-legal {
	color: #7B6CAA;
	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: 100px;
	}

	.image-row {
		gap: 10px;
		margin: 15px 0;
	}
	
	.image-row a {
	flex: 0 1 calc(50% - 10px); /* 2 images per row on tablets */
	min-width: 120px;
	max-width: 180px;
	}

	.image-row img {
		max-height: 250px;
	}

	.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) {
	.wrapper {
		padding: 8px; /* Even smaller padding for very small screens */
	}
	
	.image-row a {
		flex: 0 1 calc(50% - 10px); /* Keep 2 per row on mobile */
		min-width: 100px;
		max-width: 160px;
	}
	
	.image-row img {
		max-height: 200px;
	}
	
	.header {
		padding: 10px 0;
	}

	.content-zone {
		padding: 15px;
	}

	.logo {
		max-height: 80px;
	}

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

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

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


/* Add these styles to your main.css file */

.content-intro {
	background: #B8C3FF;
	padding: 25px;
	border-radius: 10px;
	margin: 20px 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	color: #375F89;
	font-size: 1.1em;
	line-height: 1.6;
}

.content-intro p {
	margin-bottom: 15px;
}

.content-intro p:last-child {
	margin-bottom: 0;
}

.content-intro h2, 
.content-intro h3 {
	color: #FD3E3E;
	margin-bottom: 15px;
	font-weight: 600;
}

.content-intro h2 {
	font-size: 1.6em;
}

.content-intro h3 {
	font-size: 1.3em;
}

.content-intro ul, 
.content-intro ol {
	margin: 15px 0;
	padding-left: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
	.content-intro {
		padding: 20px;
		font-size: 1em;
	}
	
	.content-intro h2 {
		font-size: 1.4em;
	}
	
	.content-intro h3 {
		font-size: 1.2em;
	}
}

@media (max-width: 480px) {
	.content-intro {
		padding: 15px;
	}
}


h1 {
	color: #375F89;
	font-size: 2rem; /* Basisgröße für Desktop */
	margin: 15px 0;
	line-height: 1.2;
	transition: font-size 0.3s ease;
}

@media (max-width: 992px) {
	h1 {
		font-size: 1.8rem; /* Etwas kleiner für Tablets */
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 1.5rem; /* Noch kleiner für größere Mobilgeräte */
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.3rem; /* Am kleinsten für Smartphones */
		margin: 10px 0;
	}
}

.main-nav {
	margin-top: 15px;
}

.main-nav ul {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-nav li {
	margin: 0 15px;
}

.main-nav li::before {
	content: none;
}

.main-nav a {
	color: #375F89;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: color 0.2s;
	padding: 5px 10px;
	border-radius: 4px;
}

.main-nav a:hover {
	color: #FD3E3E;
	background-color: rgba(109, 38, 237, 0.1);
}

@media (max-width: 768px) {
	.main-nav ul {
		flex-wrap: wrap;
	}
	
	.main-nav li {
		margin: 5px 10px;
	}
}

@media (max-width: 480px) {
	.main-nav li {
		margin: 3px 8px;
	}
	
	.main-nav a {
		font-size: 14px;
		padding: 4px 8px;
	}
}

h1, h2, h3, h4, h5, p, li, ol, ul {
	color: #375F89;
}