body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0c1622;
  color: #ffffff;
}

.hero {
  position: relative;
  height: 70vh;
  background: url('/assets/img/vbio-network-graphic.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
  background: rgba(10, 20, 35, 0.75);
  padding: 2rem 3rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

.stats div {
  text-align: center;
}

.stats span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #1e5fff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin: 0.5rem;
}

.btn.secondary {
  background: #444;
}

.map-section {
  height: 100vh;
}

#network-map {
  height: 100%;
}

.side-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: rgba(15, 30, 50, 0.9);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
/* =========================
   NETWORK MAP LAYOUT
   ========================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

#deployment-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 20vh;
}

/* =========================
   NETWORK SIDE PANEL
   ========================= */

.side-panel {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  background: rgba(10, 25, 45, 0.85);
  padding: 1.2rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  color: white;
  z-index: 3;
}
/* =========================
   VBIO CENTER PANEL
   ========================= */

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 2;
  text-align: center;
  background: rgba(10, 25, 45, 0.85);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  width: 420px;
}

.vbio-robot {
  display: block;
  width: 270px;
  margin: 0 auto 1.4rem auto;
  filter: drop-shadow(0 0 25px rgba(0, 200, 255, 0.75));
  animation: vbioFloat 4s ease-in-out infinite;
}

/* Subtle AI floating motion */
@keyframes vbioFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
/* =========================
   MAP + VBIO CONSOLE LAYERING
   ========================= */

.map-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Map container */
#network-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Force Leaflet internal panes below console */
.leaflet-pane,
.leaflet-top,
.leaflet-bottom {
  z-index: 2 !important;
}

/* Console above everything */
.vbio-console {
  text-align: center; 
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;

  width: 420px;          /* smaller again */
  padding: 1.8rem;

  background: rgba(10, 25, 45, 0.92);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  color: #e6f4ff;

  box-shadow:
    0 0 60px rgba(0,200,255,0.35),
    0 20px 60px rgba(0,0,0,0.6);
}

.console-status {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.status-light {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: gray;
}

.status-light.online {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

.status-light.offline {
  background: #ff4444;
  box-shadow: 0 0 10px #ff4444;
}

.console-controls {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.console-log {
  background: #07131f;
  border-radius: 10px;
  padding: 1rem;
  height: 140px;
  overflow-y: auto;
  font-family: monospace;
  font-size: 0.85rem;
  margin-top: 1rem;
}
