:root{ --bg:#0b1020; --card:#141b34; --muted:#8ea0c2; --text:#e9efff; --accent:#64b5f6; --accent2:#c3f584; --border:#223055; }
*{ box-sizing:border-box }
html,body{ height:100% }
body{ margin:0; font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial; background:linear-gradient(180deg,#0b1020,#0e1630); color:var(--text); }
header{ display:flex; align-items:center; gap:16px; padding:20px; background:linear-gradient(90deg, rgba(10,14,28,0.6), rgba(8,12,22,0.6)); border-bottom:1px solid rgba(255,255,255,0.03); }
.logo{ width:96px; height:64px; object-fit:cover; border-radius:8px; box-shadow:0 6px 20px rgba(0,0,0,.4); border:1px solid rgba(255,255,255,0.02) }
.header-text h1{ margin:0; font-size:28px; font-weight:700 }
.subtitle{ color:var(--muted); margin:4px 0 0 }
.filters{ display:flex; flex-wrap:wrap; gap:12px; padding:12px 20px; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(255,255,255,.02) }
.filter-group{ display:flex; flex-direction:column; gap:6px } .filter-group label{ font-size:12px; color:var(--muted) }
input,select,button{ height:36px; padding:0 10px; border-radius:10px; border:1px solid var(--border); background:#0f1732; color:var(--text) }
button{ cursor:pointer; border-color:transparent; background:var(--accent); color:#04111d; font-weight:700 } button.secondary{ background:#2a3a66; color:var(--text) }
.cards{ display:grid; grid-template-columns:1fr 1fr; gap:16px; padding:16px 20px }
.card{ background:var(--card); border:1px solid var(--border); border-radius:16px; padding:16px; box-shadow:0 4px 20px rgba(0,0,0,.2) }
.kpis{ display:flex; flex-direction:column; gap:10px }
.kpi{ display:flex; align-items:center; gap:12px; background:#0f1732; border:1px solid var(--border); border-radius:12px; padding:10px }
.kpi .rank{ font-weight:900; font-size:14px; background:var(--accent2); color:#06111a; padding:4px 8px; border-radius:10px }
.kpi .name{ font-weight:700 } .kpi .sub{ color:var(--muted); font-size:12px } .kpi .value{ margin-left:auto; font-weight:900 }
.table-section{ padding:8px 20px 24px } .table-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:8px }
.table-wrapper{ background:var(--card); border:1px solid var(--border); border-radius:16px; overflow:hidden }
table{ width:100%; border-collapse:collapse; font-size:14px } th,td{ padding:10px 12px; border-bottom:1px solid var(--border) } thead th{ position:sticky; top:0; background:#101836 }
.num{ text-align:right } .strong{ font-weight:800 } .empty{ padding:16px; color:var(--muted) } .hidden{ display:none }
footer{ padding:20px; color:var(--muted) }
@media (max-width: 860px){
  .cards{ grid-template-columns:1fr }
  th:nth-child(2), td:nth-child(2), th:nth-child(3), td:nth-child(3), th:nth-child(8), td:nth-child(8){ display:none }
}
