body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f7f6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}
.container {
    text-align: center;
    background: #fff;
    padding: 50px 80px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
h1 {
    margin: 0;
    font-size: 2.5em;
    color: #2c3e50;
}
p {
    margin-top: 15px;
    color: #7f8c8d;
    font-size: 1.1em;
}
.status {
    margin-top: 30px;
    display: inline-block;
    padding: 8px 15px;
    background-color: #e8f8f5;
    color: #1abc9c;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}
.footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.footer a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #34495e;
    text-decoration: underline;
}