body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e1e2f 0%, #1c1c2a 100%);
    color: #f0f0f0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

header p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #a0a0b0;
    margin-top: 0;
}

.status-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.status-card h2 {
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.status-ok {
    color: #4caf50;
    font-weight: 600;
    font-size: 1.1rem;
}

footer {
    padding: 1.5rem;
    font-size: 0.9rem;
    color: #a0a0b0;
}

footer a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #4caf50;
}
