/* --- Basis & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0c10; /* Sehr dunkles Blau/Grau */
    color: #c5c6c7;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden; /* Erlaubt scrollen nach unten, blockiert seitliches Wackeln */
}

.container {
    text-align: center;
    padding: 2rem;
    z-index: 10;
    margin: auto; /* Zentriert den Inhalt auf der Startseite schön in der Mitte */
    width: 100%;
}

/* --- Cooles CSS Logo --- */
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: transparent;
    background: linear-gradient(45deg, #66fcf1, #45a29e);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    cursor: default;
}

.logo:hover {
    transform: scale(1.05);
}

.m-letter {
    font-size: 6.5rem;
    color: #66fcf1;
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.5);
}

/* Der Leuchteffekt hinter dem Logo */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(102, 252, 241, 0.15) 0%, rgba(11, 12, 16, 0) 70%);
    z-index: 1;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* --- Content Bereich --- */
.content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 300;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #66fcf1;
    font-weight: bold;
    margin-top: 1rem;
    padding: 10px;
    border: 1px solid rgba(102, 252, 241, 0.2);
    border-radius: 8px;
    display: inline-block;
}

/* --- Footer & Rechtliches --- */
footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin-top: auto; /* Drückt den Footer immer automatisch ganz nach unten */
}

footer a {
    color: #45a29e;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #66fcf1;
    text-decoration: underline;
}