/* Grund-Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f172a; /* Dunkles, modernes Blau/Schwarz */
    font-family: 'Inter', -apple-system, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Der klickbare Bereich */
.content-link {
    text-decoration: none;
    text-align: center;
    color: #f8fafc;
    padding: 20px;
    transition: transform 0.3s ease;
}

.content-link:hover {
    transform: scale(1.02);
}

/* Der Hauptsatz */
h1 {
    font-size: clamp(2rem, 5vw, 4rem); /* Passt sich der Bildschirmgröße an */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Kleiner Hinweis unter dem Satz */
.subtext {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Animation beim Laden */
.fade-in {
    animation: fadeInBlur 1.5s ease-out forwards;
}

@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}