.globe-loader-overlay {
  position: fixed; inset: 0;
  background: #e8f1fb;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 1;
  transition: opacity 400ms ease;
}
.globe-loader-overlay.hidden { opacity: 0; pointer-events: none; }

.cb-loader {
  position: relative;
  width: 240px; height: 240px;
  display: flex; align-items: center; justify-content: center;
}

/* Outer rings */
.cb-ring { position: absolute; inset: 0; border-radius: 50%; pointer-events: none; }
.cb-ring.r1 {
  border: 2px solid rgba(10,42,94,0.18);
  border-top-color: rgba(10,42,94,0.85);
  animation: cb-spin 1.6s linear infinite;
}
.cb-ring.r2 {
  inset: 16px;
  border: 1.5px dashed rgba(10,42,94,0.22);
  animation: cb-spin-rev 7s linear infinite;
}
.cb-ring.r3 {
  inset: -12px;
  border: 1px solid rgba(10,42,94,0.10);
  animation: cb-pulse 2.8s ease-in-out infinite;
}

/* Stage : globe in back, logo always on top */
.cb-stage {
  position: relative;
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}

.cb-globe-wrap {
  position: absolute;
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.55;
  animation: cb-globe-breathe 4s ease-in-out infinite;
}
.cb-globe-canvas {
  width: 180px; height: 180px;
  filter: drop-shadow(0 4px 14px rgba(10,42,94,0.18));
}

.cb-logo-wrap {
  position: relative;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  animation: cb-logo-float 3s ease-in-out infinite;
}
.cb-logo-glow {
  position: absolute; inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,241,251,0.95) 0%, rgba(232,241,251,0.7) 45%, rgba(232,241,251,0) 75%);
  filter: blur(4px);
}
.cb-logo-img {
  position: relative;
  width: 90px; height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(10,42,94,0.30));
}

/* Bottom text */
.cb-text {
  position: absolute;
  bottom: -56px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #0a2a5e;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.85;
}
.cb-text .dot {
  display: inline-block;
  width: 4px; height: 4px;
  margin-left: 3px;
  border-radius: 50%;
  background: #0a2a5e;
  animation: cb-dot 1.4s ease-in-out infinite;
}
.cb-text .dot:nth-child(2) { animation-delay: 0.2s; }
.cb-text .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes cb-spin     { to { transform: rotate(360deg); } }
@keyframes cb-spin-rev { to { transform: rotate(-360deg); } }
@keyframes cb-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.1); }
}
@keyframes cb-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes cb-globe-breathe {
  0%, 100% { opacity: 0.50; }
  50%      { opacity: 0.65; }
}
@keyframes cb-dot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(-3px); opacity: 1; }
}
