:root{
  --vc-bg:#050910;
  --vc-card:#0a131c;
  --vc-card2:#071019;
  --vc-line:#143344;
  --vc-cyan:#24e8ff;
  --vc-green:#48ff8a;
  --vc-warn:#ffc04d;
  --vc-red:#ff5e6e;
  --vc-text:#eef8ff;
  --vc-muted:#8ca6b8;
}

html,body{
  background:#04070d!important;
}

.vc-shell{
  margin:0 auto 18px;
  max-width:760px;
  color:var(--vc-text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.vc-hero{
  position:relative;
  margin:10px 10px 12px;
  padding:14px;
  border-radius:26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(36,232,255,.20), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(72,255,138,.10), transparent 26%),
    linear-gradient(180deg,#10202b 0%,#071019 52%,#03070d 100%);
  border:1px solid rgba(36,232,255,.24);
  box-shadow:0 24px 60px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.045);
  overflow:hidden;
}

.vc-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(36,232,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,232,255,.028) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.55),transparent 82%);
  pointer-events:none;
}

.vc-head{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
  z-index:1;
}

.vc-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.vc-logo{
  width:44px;
  height:44px;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,rgba(36,232,255,.22),rgba(36,232,255,.06));
  border:1px solid rgba(36,232,255,.35);
  box-shadow:0 0 24px rgba(36,232,255,.18);
  font-size:22px;
}

.vc-title h1{
  margin:0!important;
  font-size:21px!important;
  line-height:1.05!important;
  color:#f4fbff!important;
  letter-spacing:-.4px;
}

.vc-sub{
  margin-top:4px;
  color:var(--vc-muted);
  font-size:11px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.vc-live{
  flex:0 0 auto;
  padding:6px 10px;
  border-radius:999px;
  color:#76ffad;
  background:rgba(72,255,138,.09);
  border:1px solid rgba(72,255,138,.28);
  font-size:10px;
  font-weight:900;
  letter-spacing:.5px;
  box-shadow:0 0 18px rgba(72,255,138,.12);
}

.vc-live:before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#48ff8a;
  margin-right:6px;
  box-shadow:0 0 12px #48ff8a;
}

.vc-car-card{
  position:relative;
  z-index:1;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(4,10,16,.72),rgba(2,7,12,.94));
  border:1px solid rgba(36,232,255,.18);
  overflow:hidden;
  padding:8px;
}

.vc-car-svg{
  display:block;
  width:100%;
  height:250px;
}

.vc-car-body{
  fill:rgba(46,92,132,.33);
  stroke:rgba(36,232,255,.42);
  stroke-width:2;
  filter:drop-shadow(0 0 18px rgba(36,232,255,.26));
}

.vc-car-glass{
  fill:rgba(42,76,111,.48);
  stroke:rgba(116,206,255,.22);
  stroke-width:1;
}

.vc-wheel{
  fill:#02070d;
  stroke:rgba(255,255,255,.12);
  stroke-width:1.2;
}

.vc-bus{
  stroke:rgba(36,232,255,.30);
  stroke-width:2;
  stroke-dasharray:5 7;
}

.vc-node{
  fill:#050b12;
  stroke:#ffc04d;
  stroke-width:1.5;
  filter:drop-shadow(0 0 8px rgba(255,192,77,.24));
}

.vc-node.ok{
  stroke:#48ff8a;
  filter:drop-shadow(0 0 12px rgba(72,255,138,.42));
}

.vc-node-text{
  fill:#eef8ff;
  font-size:12px;
  font-weight:900;
  text-anchor:middle;
}

.vc-node-sub{
  fill:#7df4ff;
  font-size:8px;
  font-weight:800;
  text-anchor:middle;
}

.vc-metric-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:7px;
  margin-top:8px;
}

.vc-mini{
  min-width:0;
  border-radius:16px;
  padding:9px 7px;
  background:linear-gradient(180deg,#07131c,#03080d);
  border:1px solid rgba(36,232,255,.13);
}

.vc-mini label{
  display:block;
  color:#7ff6ff;
  font-size:9px;
  font-weight:900;
  margin-bottom:4px;
}

.vc-mini strong{
  display:block;
  font-size:17px;
  line-height:1;
  color:#f4fbff;
}

.vc-mini span{
  display:block;
  margin-top:3px;
  font-size:9px;
  color:var(--vc-muted);
}

.vc-section{
  margin:10px;
  padding:13px;
  border-radius:22px;
  background:linear-gradient(180deg,#0b141e,#060c13);
  border:1px solid rgba(36,232,255,.15);
  box-shadow:0 14px 34px rgba(0,0,0,.32);
}

.vc-section-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.vc-section-title h2{
  margin:0!important;
  font-size:15px!important;
  color:#f2fbff!important;
}

.vc-tag{
  padding:4px 8px;
  border-radius:999px;
  background:rgba(36,232,255,.08);
  border:1px solid rgba(36,232,255,.22);
  color:#7ff6ff;
  font-size:9px;
  font-weight:900;
}

.vc-status{
  display:grid;
  gap:8px;
}

.vc-status-item{
  display:grid;
  grid-template-columns:34px 1fr 20px;
  align-items:center;
  gap:8px;
  min-height:54px;
  padding:9px 10px;
  border-radius:16px;
  background:#050a10;
  border:1px solid rgba(255,255,255,.06);
}

.vc-status-icon{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-weight:900;
  font-size:16px;
}

.vc-ok .vc-status-icon{
  background:rgba(72,255,138,.18);
  color:#48ff8a;
  box-shadow:0 0 16px rgba(72,255,138,.16);
}

.vc-info .vc-status-icon{
  background:rgba(42,167,255,.16);
  color:#62c7ff;
}

.vc-warn .vc-status-icon{
  background:rgba(255,192,77,.18);
  color:#ffc04d;
}

.vc-status-main strong{
  display:block;
  font-size:12px;
  color:#f4fbff;
}

.vc-status-main span{
  display:block;
  margin-top:2px;
  font-size:11px;
  line-height:1.25;
  color:#a8bbc9;
}

.vc-chevron{
  color:#536879;
  font-size:20px;
}

.vc-gauge-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}

.vc-gauge{
  position:relative;
  min-height:112px;
  border-radius:18px;
  padding:10px;
  background:linear-gradient(180deg,#06111a,#02070c);
  border:1px solid rgba(36,232,255,.14);
  overflow:hidden;
}

.vc-gauge label{
  display:block;
  color:#7ff6ff;
  font-size:10px;
  font-weight:900;
}

.vc-gauge strong{
  display:block;
  margin-top:3px;
  color:#f5fbff;
  font-size:23px;
  line-height:1;
}

.vc-gauge span{
  display:block;
  margin-top:2px;
  color:#8ca6b8;
  font-size:9px;
}

.vc-ring{
  position:absolute;
  right:-8px;
  bottom:-22px;
  width:92px;
  height:92px;
  border-radius:50%;
  background:conic-gradient(var(--vc-cyan) calc(var(--p)*1%), rgba(255,255,255,.08) 0);
  mask:radial-gradient(circle, transparent 48%, #000 50%);
  filter:drop-shadow(0 0 12px rgba(36,232,255,.35));
}

.vc-ring.ok{ background:conic-gradient(var(--vc-green) calc(var(--p)*1%), rgba(255,255,255,.08) 0); }
.vc-ring.warn{ background:conic-gradient(var(--vc-warn) calc(var(--p)*1%), rgba(255,255,255,.08) 0); }

.vc-plan{
  display:grid;
  gap:8px;
}

.vc-plan-item{
  display:grid;
  grid-template-columns:30px 1fr;
  gap:9px;
  align-items:center;
  padding:10px;
  border-radius:16px;
  background:#050a10;
  border:1px solid rgba(36,232,255,.10);
}

.vc-plan-num{
  width:27px;
  height:27px;
  border-radius:10px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#7ff6ff;
  background:rgba(36,232,255,.12);
}

.vc-plan-item strong{
  display:block;
  font-size:12px;
  color:#f3fbff;
}

.vc-plan-item span{
  display:block;
  margin-top:2px;
  font-size:11px;
  color:#9eb3c3;
}

.vc-access{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.vc-access a{
  display:block;
  text-align:center;
  text-decoration:none;
  color:#dff8ff!important;
  font-weight:800;
  font-size:12px;
  padding:12px 8px;
  border-radius:15px;
  background:linear-gradient(180deg,rgba(36,232,255,.13),rgba(36,232,255,.055));
  border:1px solid rgba(36,232,255,.22);
}

.vc-bottom-pad{
  height:70px;
}

.vc-bottom-nav{
  position:fixed;
  left:10px;
  right:10px;
  bottom:8px;
  max-width:740px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:24px;
  overflow:hidden;
  background:rgba(3,9,15,.92);
  border:1px solid rgba(36,232,255,.20);
  backdrop-filter:blur(12px);
  z-index:50;
}

.vc-bottom-nav a{
  padding:12px 4px;
  text-align:center;
  color:#a9bfce!important;
  font-size:10px;
  text-decoration:none;
  font-weight:800;
}

.vc-bottom-nav a:first-child{
  color:#7ff6ff!important;
  background:rgba(36,232,255,.09);
}

@media(max-width:520px){
  .vc-shell{
    max-width:none;
  }

  .vc-hero{
    margin:0 0 9px;
    border-radius:0 0 24px 24px;
    padding:12px 10px 10px;
  }

  .vc-title h1{
    font-size:20px!important;
  }

  .vc-sub{
    font-size:10px;
  }

  .vc-logo{
    width:40px;
    height:40px;
    border-radius:14px;
  }

  .vc-car-svg{
    height:222px;
  }

  .vc-metric-row{
    grid-template-columns:repeat(3,1fr);
  }

  .vc-mini strong{
    font-size:16px;
  }

  .vc-section{
    margin:8px;
    padding:11px;
    border-radius:19px;
  }

  .vc-gauge-grid{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .vc-gauge{
    min-height:104px;
  }
}

@media(max-width:370px){
  .vc-metric-row{
    grid-template-columns:repeat(2,1fr);
  }

  .vc-access{
    grid-template-columns:1fr;
  }
}
