/* ==========================================================================
   1. RESET & GLOBALE EINSTELLUNGEN
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Edles, dunkles Schieferblau */
    color: #f1f5f9;            /* Angenehmes Off-White */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    line-height: 1.6;
}

/* ==========================================================================
   2. LAYOUT & INHALTS-KARTE
   ========================================================================== */
.container {
    width: 100%;
    max-width: 640px; /* Optimale Breite für angenehme Zeilenlängen */
}

.card {
    background-color: rgba(30, 41, 59, 0.7); /* Leicht transparent */
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px); /* Moderner Glaseffekt */
    padding: 48px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   3. TYPOGRAFIE & ABSTÄNDE
   ========================================================================== */
h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.card p {
    font-size: 1.05rem;
    color: #94a3b8; /* Sanftes Grau für besseren Lesekomfort */
    margin-bottom: 16px; /* Ersetzt das alte Inline-Styling */
}

/* Verhindert einen unschönen Abstand unter dem absolut letzten Element */
.card p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   4. RESPONSIVE DESIGN (MOBILGERÄTE)
   ========================================================================== */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .card {
        padding: 32px 24px;
    }

    h1 {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }

    .card p {
        font-size: 1rem;
    }
}
