/* body { */
	/* margin: 0; */
	/* font-family: 'Inter', sans-serif; */
	/* background: #0f2027; */
	/* color: white; */
	/* height: 100vh; */
	/* display: flex; */
	/* justify-content: center; */
	/* align-items: center; */
	/* overflow: hidden; */
	/* position: relative; */
/* } */

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	background: #0f2027;
	color: white;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center; /* vertikal zentriert */
	overflow: hidden;   /* Body scrollt nicht */
	position: relative;
}

/* Animated gradient glow */
.gradient-bg {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 1100px;
	height: 1100px;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle at center, #00e0c6, #203a43 60%);
	filter: blur(160px);
	opacity: 0.35;
	animation: slowScale 10s ease-in-out infinite alternate;
	pointer-events: none;
}

@keyframes slowScale {
	0% { transform: translate(-50%, -50%) scale(0.9); }
	50% { transform: translate(-50%, -50%) scale(1.4); }
	100% { transform: translate(-50%, -50%) scale(0.9); }
}

@keyframes slowMove {
	0% { transform: translate(-100px, -50px) scale(1); }
	50% { transform: translate(100px, 50px) scale(1.1); }
	100% { transform: translate(-50px, 80px) scale(1); }
}

.indexContainer {
	position: relative;
	text-align: center;
	z-index: 2;
	max-width: 800px;
	padding: 60px 40px;
	animation: fadeIn 2s ease forwards;
	opacity: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container {
	position: relative;
	z-index: 2;
	max-width: 800px;
	max-height: 80vh; /* scrollen nur innerhalb des Containers */
	padding: 60px 40px;
	animation: fadeIn 1.5s ease forwards;
	opacity: 0;
	overflow-y: auto; /* scroll wenn Inhalt zu groß */
	display: flex;
	flex-direction: column;
	align-items: left; /* Inhalt links */
	text-align: left;  /* Text linksbündig */
}

@keyframes fadeIn {
	to { opacity: 1; }
}

.logo {
	height: 90px;
	width: auto;
	margin-top: 10px;
}

.subtitle {
	font-size: 16px;
	letter-spacing: 4px;
	font-weight: 600;
	opacity: 0.7;
	margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
}

.tagline {
	margin-top: 40px;
	font-size: 26px;
	font-weight: 300;
	line-height: 1.6;
	opacity: 0.9;
}

.subtagline {
	margin-top: 15px;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.6;
	opacity: 0.9;
}

.highlight {
	color: #00e0c6;
	font-weight: 600;
}

.cta-button {
	display: inline-block;
	margin-top: 40px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	color: white;
	text-decoration: none;
	border: 1px solid #00e0c6;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background: #00e0c6;
	color: #0f2027;
	box-shadow: 0 0 20px rgba(0,224,198,0.5);
}

.cta-note {
	margin-top: 12px;
	font-size: 12px;
	opacity: 0.6;
}

.section {
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.section strong {
    font-weight: 600;
}

a {
    color: #00e0c6;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

.back {
    margin-top: 50px;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
}


footer {
	position: absolute;
	bottom: 40px;
	width: 100%;
	text-align: center;
	font-size: 15px;
	opacity: 0.8;
	margin-top: 20px; /* Abstand zum Inhalt */
}

footer a {
	color: white;
	margin: 0 20px;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

footer a:hover {
	opacity: 0.5;
}

@media (max-width: 900px) {
	h1 { font-size: 52px; }
	.logo { height: 52px; }
	.tagline { font-size: 20px; }
}