* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 10px;
}

header h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 0.95rem;
    color: #2ecc71;
    font-weight: 500;
}

.status-list {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 30px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f3f5;
}

.status-item:last-child {
    border-bottom: none;
}

.status-name {
    font-size: 0.9rem;
    color: #495057;
}

.status-badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 12px;
}

.status-badge.ok {
    background: #d4edda;
    color: #155724;
}

.uptime {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 20px;
}

.uptime h2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
}

.uptime-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.uptime-fill {
    width: 99.98%;
    height: 100%;
    background: #2ecc71;
    border-radius: 4px;
}

.uptime-text {
    font-size: 0.85rem;
    color: #868e96;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #adb5bd;
    font-size: 0.8rem;
}
