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

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto;
    background: #0a0f1c;
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* TOPBAR */
.topbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 24px;
    border-bottom:1px solid #1f2937;
    background:#0f172a;
}

.logo {
    font-weight:700;
}

.badge {
    font-size:12px;
    padding:6px 10px;
    border:1px solid #334155;
    border-radius:999px;
    color:#94a3b8;
}

/* LAYOUT */
.container {
    flex:1;
    padding:28px;
}

/* METRICS STRIPE STYLE */
.metrics {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:16px;
    margin-bottom:28px;
}

.metric-card {
    background:linear-gradient(145deg,#111827,#0f172a);
    border:1px solid #1f2937;
    border-radius:16px;
    padding:18px;
}

.metric-card h3 {
    font-size:14px;
    color:#94a3b8;
    margin-bottom:10px;
}

.metric-value {
    font-size:18px;
    font-weight:600;
}

.metric-label {
    font-size:12px;
    color:#64748b;
    display:block;
    margin-top:6px;
}

/* STATUS */
.status.ok {
    color:#22c55e;
    font-weight:600;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:16px;
}

.card {
    background:#111827;
    border:1px solid #1f2937;
    border-radius:16px;
    padding:18px;
    text-decoration:none;
    color:inherit;
    transition:.2s;
}

.card:hover {
    transform:translateY(-3px);
    border-color:#3b82f6;
}

.card h2 {
    margin-bottom:8px;
}

.card p {
    margin-top: 6px;
    color: #94a3b8;
    font-size: 13px;
}

.card span {
    display: inline-block;
    margin-top: 4px;
    color: #3b82f6;
    font-weight: 500;
}

/* FOOTER */
.footer {
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    padding:14px 24px;
    border-top:1px solid #1f2937;
    background:#0f172a;
    font-size:12px;
    color:#64748b;
}

.numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}

.numbers span {
    background: #0f172a;
    border: 1px solid #334155;
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 34px;
    text-align: center;
}

.numbers .plus {
    background: transparent;
    border: none;
    padding: 0;
    color: #94a3b8;
    font-weight: bold;
}
.mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mini-grid span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 10px;
    background: #111827;
    border: 1px solid #1f2937;
    font-size: 13px;
    white-space: nowrap;
}