/* ============================================================
   CREDIIO LIVING REVIEW GLOBE — CYBERNETIC HUD TELEMETRY STYLES
   "God's Eye View" of Decentralized Reputation (RichX Chain One)
   ============================================================ */

#globe-section {
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.globe-card {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(6, 20, 48, 0.75), rgba(2, 7, 19, 0.95) 85%);
  border: 1px solid var(--edge);
  border-radius: 1.25rem;
  padding: 1.4rem;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.16), 0 20px 50px rgba(0, 3, 10, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  margin-top: 1.5rem;
}

.globe-header-block {
  text-align: center;
  margin-bottom: 1.2rem;
}

.globe-title {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.globe-sub {
  color: var(--text-2);
  font-size: 0.98rem;
  max-width: 44rem;
  margin: 0 auto;
  line-height: 1.6;
}

#globe-viewport {
  position: relative;
  width: 100%;
  height: 520px;
  min-height: 480px;
  border-radius: 1rem;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(3, 18, 42, 0.6) 0%, rgba(1, 4, 12, 0.95) 75%);
  border: 1px solid rgba(0, 229, 255, 0.22);
}

/* TACTICAL HUD TELEMETRY OVERLAY */
.globe-hud-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
}

.globe-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.globe-hud-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(3, 16, 38, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 0.45rem;
  font-family: var(--fm);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: #EAF6FF;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.15);
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.pulse-dot-ambient {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse-ambient 1.8s infinite alternate ease-in-out;
}

.pulse-dot-live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 14px #FFD700;
  animation: pulse-live 0.8s infinite alternate ease-in-out;
}

@keyframes pulse-ambient {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 1; }
}

@keyframes pulse-live {
  0% { transform: scale(1.0); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 1; box-shadow: 0 0 20px #FFD700; }
}

/* TELEMETRY READOUT CARD */
.telemetry-readout {
  background: rgba(2, 7, 19, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 0.6rem;
  padding: 0.9rem 1.1rem;
  text-align: left;
  max-width: 20rem;
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.telemetry-label {
  font-family: var(--fm);
  font-size: 0.66rem;
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.telemetry-val {
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.telemetry-sub {
  font-family: var(--fm);
  font-size: 0.74rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* LIVE FEED TICKER */
.globe-feed-card {
  background: rgba(2, 7, 19, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  text-align: left;
  max-width: 22rem;
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.globe-feed-title {
  font-family: var(--fm);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  padding-bottom: 0.25rem;
}

.globe-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feed-item {
  font-size: 0.78rem;
  color: #E2F1FF;
  line-height: 1.35;
  transition: all 0.3s;
}

.feed-item.live-item {
  color: #FFF275;
  background: rgba(255, 215, 0, 0.12);
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  border-left: 2px solid #FFD700;
}

.feed-badge {
  display: inline-block;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-family: var(--fm);
  font-size: 0.62rem;
  background: rgba(0, 229, 255, 0.2);
  color: var(--cyan);
  margin-right: 0.25rem;
  font-weight: 700;
}

.feed-item.live-item .feed-badge {
  background: #FFD700;
  color: #030814;
}

/* BOTTOM HUD CONTROLS BAR */
.globe-hud-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  pointer-events: auto;
}

.hud-btn {
  background: rgba(3, 16, 38, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--text-2);
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  font-family: var(--fm);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(12px);
}

.hud-btn:hover {
  border-color: var(--cyan);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
}

.hud-btn.active {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--cyan);
  color: #FFFFFF;
  font-weight: 700;
}

.hud-btn-pulse {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(0, 102, 255, 0.45));
  border-color: var(--cyan-2);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

.hud-btn-pulse:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 140, 0, 0.5));
  border-color: #FFD700;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  #globe-viewport {
    height: 440px;
    min-height: 400px;
  }
  .globe-feed-card {
    display: none; /* Hide feed on mobile to preserve 3D view */
  }
  .telemetry-readout {
    max-width: 100%;
    width: 100%;
    padding: 0.6rem 0.8rem;
  }
  .hud-btn {
    font-size: 0.68rem;
    padding: 0.35rem 0.6rem;
  }
}
