* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: #2d3748;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #68d391;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Main Content */
.main {
    flex: 1;
    padding: 4rem 0;
    background: white;
}

.content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.content h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content .lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.content .lead a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #cbd5e0;
    transition: border-color 0.3s ease;
}

.content .lead a:hover {
    border-bottom-color: #2d3748;
}

.content .description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.info-box {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.info-box p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: #2d3748;
    color: white;
}

.btn-primary:hover {
    background: #1a202c;
    transform: translateY(-1px);
}

/* Impressum */
.impressum {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-group {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.impressum-group:last-child {
    border-bottom: none;
}

.impressum-group h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impressum-group p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.impressum-group a {
    color: #2d3748;
    text-decoration: none;
    border-bottom: 1px solid #cbd5e0;
    transition: border-color 0.3s ease;
}

.impressum-group a:hover {
    border-bottom-color: #2d3748;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #cbd5e0;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.75rem;
    }

    .content .lead {
        font-size: 1.1rem;
    }

    .content .description {
        font-size: 1rem;
    }

    .info-box {
        padding: 2rem 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .container {
        padding: 0 1.5rem;
    }

    .main {
        padding: 3rem 0;
    }
}
