:root{
--bg:#050816;
--panel:#111827;
--panel2:#1e293b;
--border:#243244;

```
--accent:#06b6d4;
--accent2:#38bdf8;
--success:#22c55e;
--warning:#f59e0b;

--text:#f8fafc;
--muted:#94a3b8;
```

}

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

body{
font-family:Inter,Arial,sans-serif;
background:var(--bg);
color:var(--text);
font-size:14px;
}

/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 20px;
background:#0f172a;
border-bottom:1px solid var(--border);
}

.header h1{
font-size:22px;
font-weight:700;
color:var(--accent2);
}

#updated{
display:block;
margin-top:4px;
color:var(--warning);
font-size:12px;
}

.header-right{
display:flex;
align-items:center;
gap:10px;
}

.version{
background:linear-gradient(
135deg,
var(--accent),
var(--accent2)
);
color:#ffffff;
padding:7px 12px;
border-radius:8px;
font-size:12px;
font-weight:700;
}

.logo{
width:85px;
height:85px;
object-fit:contain;
}

/* CONTENIDO */

.container{
max-width:1600px;
margin:auto;
padding:15px;
}

/* TARJETAS */

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-bottom:15px;
}

.card{
background:var(--panel);
border:1px solid var(--border);
border-radius:12px;
padding:14px;
text-align:center;
}

.card:hover{
border-color:var(--accent);
}

.num{
font-size:28px;
font-weight:700;
color:var(--success);
}

.card div:last-child{
margin-top:4px;
font-size:13px;
color:var(--accent2);
}

/* SECCIONES */

.section{
background:var(--panel);
border:1px solid var(--border);
border-radius:12px;
padding:15px;
margin-bottom:15px;
overflow-x:auto;
}

.section h2{
color:var(--accent2);
font-size:17px;
margin-bottom:10px;
}

/* TABLAS */

table{
width:100%;
border-collapse:collapse;
font-size:12px;
}

thead{
background:var(--panel2);
}

th{
padding:8px;
text-align:left;
font-size:12px;
font-weight:700;
color:var(--accent2);
border-bottom:2px solid var(--accent);
}

td{
padding:7px 8px;
font-size:12px;
color:var(--text);
border-bottom:1px solid var(--border);
}

tbody tr:nth-child(even){
background:rgba(255,255,255,.02);
}

tbody tr:hover

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

/* COLORES TABLAS */

#gateways td:first-child{
color:#60a5fa;
font-weight:600;
}

#users td:first-child{
color:#4ade80;
font-weight:600;
}

#heard td:first-child{
color:#fbbf24;
font-weight:600;
}

/* MOVIL */

@media(max-width:768px){

```
.header{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.stats{
    grid-template-columns:1fr;
}

.header h1{
    font-size:18px;
}

.logo{
    width:38px;
    height:38px;
}

.num{
    font-size:24px;
}

table{
    font-size:11px;
}

th,
td{
    font-size:11px;
    padding:6px;
}
```

}


.footer{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;

    padding:12px;

    background:#0f172a;
    border-top:1px solid var(--border);

    color:var(--accent2);

    font-size:12px;
    font-weight:600;
}

.footer-item{
    display:flex;
    align-items:center;
    gap:5px;
}

.footer-item svg{
    color:var(--accent);
}

.footer-sep{
    color:var(--warning);
}

@media(max-width:768px){

    .footer{
        flex-direction:column;
        gap:6px;
    }

    .footer-sep{
        display:none;
    }

}



.qrz-link{
    color:#fbbf24;
    text-decoration:none;
    font-weight:600;
}

.qrz-link:hover{
    color:#ffd966;
    text-decoration:underline;
}

.gps-link{
    display:inline-flex;
    align-items:center;
    gap:4px;
    color:#22c55e;
    text-decoration:none;
    font-weight:600;
}

.gps-link:hover{
    color:#4ade80;
    text-decoration:underline;
}