body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #f8f8f8;
    color: #111;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container {
    margin: auto;
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.status {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.links a {
    margin: 0 15px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #0000;
    transition: 0.2s;
}

.links a:hover {
    border-bottom: 1px solid #000;
}

footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #666;
}
