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

body {
    background: #0f1117;
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
    padding: 30px;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 28px;
    color: #fff;
}

.uptime {
    color: #888;
    font-size: 14px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #1a1d27;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2d3a;
}

.card-title {
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.big-num {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
}

.bar-wrap {
    background: #2a2d3a;
    border-radius: 6px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.bar {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease, background 0.5s ease;
    width: 0%;
}

.sub {
    font-size: 13px;
    color: #888;
}

.net-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #2a2d3a;
    font-size: 15px;
}

.net-row:last-child { border-bottom: none; }

.services-section h2 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1d27;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2d3a;
}

th {
    background: #2a2d3a;
    padding: 12px 20px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

td {
    padding: 14px 20px;
    border-bottom: 1px solid #2a2d3a;
    font-size: 15px;
}

tr:last-child td { border-bottom: none; }

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot.green { background: #2ecc71; }
.dot.red { background: #e74c3c; }