body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	background: #0E0C17;
	color: #C8C7D1;
}

header {
	text-align: left;
	padding: 3em 1em;
	background-color: #1C1827;
}

.header-flex {
	display: flex;
	align-items: flex-start;
	gap: 2em;
	max-width: 1000px;
	margin: auto;
	padding: 2em 1em;
	flex-wrap: wrap; /* Für kleine Bildschirme */
}

.header-flex img {
	width: 300px;
	height: auto;
	flex-shrink: 0;
}

.header-text {
	flex: 1;
	min-width: 250px;
}

@media (max-width: 600px) {
	.header-flex {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.header-text {
		text-align: center;
	}
}


header h1 {
	margin-bottom: 0.5em;
	color: #7B3DF0;
}

.download-button {
	display: inline-block;
	margin-top: 1em;
	padding: 0.75em 1.5em;
	background-color: #492478;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.download-button:hover {
	background-color: #492478;
}

main {
	padding: 2em;
	max-width: 1500px;
	margin: auto;
}

.entry {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2em;
	flex-direction: row;
}

.entry.reverse {
	flex-direction: row-reverse;
}

.entry img {
	width: 600px;
	height: 300px;
	border-radius: 10px;
	border: 2px solid #4A247E;
	object-fit: cover;
}

@media (max-width: 600px) {
	.entry,.entry.reverse{
		flex-direction: column-reverse;
		gap: 0;
	}

	.entry img {
		width: 300px;
		height: 200px;
	}
}

.entry-text {
	padding: 2em;
}

.entry-text h3 {
	margin-top: 0;
	margin-bottom: 0.5em;
	color: #7B3DF0;
}

.tp-command {
	display: inline-block;
	background: #2f2f2f;
	padding: 0.4em 0.6em;
	border-radius: 4px;
	font-family: monospace;
	font-size: 0.95em;
	color: #9fdf9f;
	cursor: pointer;
	position: relative;
}

.tp-command.copied::after {
	content: "✔️ Kopiert!";
	position: absolute;
	top: -1.8em;
	left: 0;
	font-size: 0.8em;
	color: #7fff7f;
}

footer {
	text-align: center;
	padding: 1em;
	background-color: #231336;
	font-size: 0.9em;
	color: #aaa;
}
#lightbox {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
	border: 4px solid white;
	border-radius: 10px;
}

