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

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2rem;
    color: #1a1a2e;
}

.subtitle {
    color: #666;
    margin-top: 0.5rem;
}

.status-card, .info {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-card h2, .info h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.status.operational {
    color: #16a34a;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16a34a;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.info ul {
    list-style: none;
}

.info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.info li:last-child {
    border-bottom: none;
}

code {
    background: #f0f0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 2rem;
}
