* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #0a0c10;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #eef2ff;
    padding: 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #2d3748;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.logo {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.node-info {
    color: #9ca3af;
    font-family: monospace;
}
h1 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
pre, table {
    background: #11161f;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #2d3748;
    font-family: monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 1px solid #2d3748;
}
th {
    color: #a78bfa;
}
a {
    color: #8b5cf6;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.card {
    background: #11161f;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #2d3748;
    margin-bottom: 1.5rem;
}
.big-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: monospace;
    color: #60a5fa;
    margin: 0.5rem 0;
}
.trend {
    font-size: 0.8rem;
    color: #9ca3af;
}
.trend.up { color: #34d399; }
.uptime {
    background: #0f172a;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-family: monospace;
    margin: 1rem 0;
}
.footer-links {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
}
