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

body {
    font-family: monospace;
    background: #fff;
    min-height: 100vh;
    padding: 40px 20px;
    color: #000;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    margin-bottom: 40px;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 10px;
}

.last-update {
    font-size: 0.85rem;
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-bottom: 40px;
    border: 2px solid #000;
}

.stat-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-right: 2px solid #000;
}

.stat-card:last-child {
    border-right: none;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
}

.projects {
    display: grid;
    gap: 1px;
    border: 2px solid #000;
}

.project-card {
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #000;
}

.project-card:last-child {
    border-bottom: none;
}

.project-info {
    flex: 1;
}

.project-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.project-url {
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.project-url:hover {
    text-decoration: underline;
}

.project-description {
    color: #999;
    font-size: 0.8rem;
}

.project-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.status-badge {
    padding: 4px 12px;
    border: 2px solid #000;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    background: #fff;
}

.status-badge.operational {
    background: #fff;
    color: #000;
}

.status-badge.degraded {
    background: #fff;
    color: #000;
}

.status-badge.offline {
    background: #000;
    color: #fff;
}

.status-badge.checking {
    background: #fff;
    color: #666;
}

.response-time {
    font-size: 0.75rem;
    color: #666;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    font-size: 0.85rem;
    border-top: 2px solid #000;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .project-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-status {
        align-items: flex-start;
        margin-top: 10px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
