/* ============================================================
   globe.css — Three.js Visitor Globe
   ============================================================ */

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

body {
  background: #1c1917;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#globe-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#globe-stats {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
  pointer-events: none;
}

.globe-stat-label {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}

.globe-stat-value {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 1.4rem;
  font-weight: 500;
  color: #d4854a;
}
