/* General Reset & Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    color: #1c1e21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Main Container */
.container {
    text-align: center;
    max-width: 700px;
    width: 100%;
}

header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

/* Status Card */
.status-card {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.status-card h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-top: 0;
}

.status-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.status-card hr {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 25px 0;
}

/* Dynamic Content Section */
#dynamic-content p {
    font-size: 1rem;
    color: #555;
}

#dynamic-content strong {
    color: #333;
}

/* Footer */
footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}