/* Grundlegende Zurücksetzung */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d1f15; /* Sehr dunkles, erdiges Grün */
    color: #ffffff;
    overflow: hidden; /* Verhindert Scrollen auf der Platzhalterseite */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Canvas-Hintergrund */
#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Inhalt über der Animation */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

/* Moderne Glassmorphism-Karte */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out;
}

.badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #a8e063, #56ab2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c8e6c9;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Lade-Animation */
.animation-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #56ab2f;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

/* Kontakt-Button */
.contact-btn {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background: #2e7d32;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-btn:hover {
    background: transparent;
    border-color: #56ab2f;
    color: #56ab2f;
    transform: translateY(-2px);
}

/* Keyframe-Animationen */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    .glass-card { padding: 40px 20px; }
}
