body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container { width: 80%; max-width: 800px; }
nav { display: flex; justify-content: space-between; margin-bottom: 50px; }
.logo { font-weight: bold; letter-spacing: 1px; color: #00ff88; }
ul { list-style: none; display: flex; gap: 20px; margin: 0; }
a { color: #888; text-decoration: none; font-size: 14px; }
h1 { font-size: 2.5rem; margin-bottom: 10px; }
p { color: #888; line-height: 1.6; }
.status-box {
    display: inline-block;
    padding: 8px 16px;
    background: #1a1a1a;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 20px;
}
.dot {
    height: 8px;
    width: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
footer { margin-top: 100px; font-size: 12px; color: #444; }