* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #0b1220, #050a14);
    color: #ffffff;
}

.header {
    text-align: center;
    padding: 40px 20px;
}

.header img {
    height: 40px;
    margin-bottom: 16px;
}

.header h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.header p {
    color: #9aa4b2;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.status-card {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 20px;
    border-left: 5px solid;
    transition: 0.3s;
}

.status-card:hover {
    transform: translateY(-3px);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-card h3 {
    font-size: 18px;
}

.badge {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

.status-card.online {
    border-color: #22c55e;
}

.status-card.online .badge {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.status-card.instability {
    border-color: #facc15;
}

.status-card.instability .badge {
    background: rgba(250,204,21,0.15);
    color: #facc15;
}

.status-card.offline {
    border-color: #ef4444;
}

.status-card.offline .badge {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

.issue {
    margin-top: 10px;
    font-size: 14px;
    color: #fca5a5;
}

.ok {
    margin-top: 10px;
    font-size: 14px;
    color: #9aa4b2;
}

.legend {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    font-size: 14px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.dot.online { background: #22c55e; }
.dot.instability { background: #facc15; }
.dot.offline { background: #ef4444; }

.footer {
    text-align: center;
    padding: 30px;
    color: #6b7280;
    font-size: 13px;
}
