.mnh-globe-wrap{
  max-width:1200px;
  margin:40px auto;
  padding:40px 20px;
  color:#fff;
}

.mnh-globe-header{
  text-align:center;
  margin-bottom:28px;
}

.mnh-globe-header h2{
  font-size:36px;
  line-height:1.15;
  margin:0 0 10px;
  color:#ffffff;
}

.mnh-globe-header p{
  margin:0;
  font-size:16px;
  color:rgba(255,255,255,0.75);
}

/* meta row */
.mnh-globe-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin:0 0 18px;
}

.mnh-live-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(19,214,122,0.10);
  border:1px solid rgba(19,214,122,0.28);
  color:#dfffea;
  font-size:13px;
  font-weight:700;
}

.mnh-live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#13d67a;
  box-shadow:0 0 0 0 rgba(19,214,122,0.6);
  animation:mnhLivePulse 1.8s infinite;
}

.mnh-last-updated{
  font-size:13px;
  color:rgba(255,255,255,0.72);
}

.mnh-refresh-btn{
  height:38px;
  padding:0 16px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.12);
  transition:all .25s ease;
}

.mnh-refresh-btn:hover{
  background:rgba(19,214,122,0.14);
  border-color:rgba(19,214,122,0.35);
  color:#dfffea;
  transform:translateY(-1px);
}

/* toolbar */
.mnh-globe-toolbar{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.mnh-globe-toolbar input{
  width:100%;
  max-width:320px;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  color:#fff;
  padding:0 16px;
  outline:none;
}

.mnh-globe-toolbar input::placeholder{
  color:rgba(255,255,255,0.45);
}

.mnh-globe-toolbar button{
  height:48px;
  padding:0 22px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#13d67a,#0fb86a);
  color:#04130b;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(19,214,122,0.25);
}

.mnh-join-globe-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:14px;
  text-decoration:none;
  background:linear-gradient(135deg,#ffffff,#e9fff3);
  color:#07140c;
  font-size:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.30);
  box-shadow:0 12px 28px rgba(255,255,255,0.12);
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.mnh-join-globe-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(255,255,255,0.18);
  opacity:.96;
}

/* progress */
.mnh-globe-progress{
  width:100%;
  max-width:920px;
  margin:0 auto 22px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 14px 30px rgba(0,0,0,0.16);
}

.mnh-globe-progress-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.mnh-globe-progress-top strong{
  font-size:14px;
  color:#fff;
}

#mnh-progress-percent{
  font-size:13px;
  color:rgba(255,255,255,0.76);
  font-weight:700;
}

.mnh-globe-progress-bar{
  width:100%;
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  overflow:hidden;
  position:relative;
}

.mnh-globe-progress-fill{
  height:100%;
  width:0%;
  border-radius:999px;
  background:linear-gradient(90deg,#13d67a,#2effb2);
  box-shadow:0 0 16px rgba(19,214,122,0.28);
  transition:width .45s ease;
}

/* canvas */
#mnh-globe-canvas{
  width:100%;
  min-height:500px;
  border-radius:24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(20,220,120,0.08), transparent 28%),
    linear-gradient(180deg,#05070b 0%, #020303 100%);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 30px 80px rgba(0,0,0,0.35);
  position:relative;
  overflow:hidden;
}

#mnh-globe-canvas::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 50%, rgba(19,214,122,0.08), transparent 18%),
    radial-gradient(circle at 32% 42%, rgba(19,214,122,0.06), transparent 10%),
    radial-gradient(circle at 50% 48%, rgba(19,214,122,0.05), transparent 16%),
    radial-gradient(circle at 66% 44%, rgba(19,214,122,0.07), transparent 12%),
    radial-gradient(circle at 78% 52%, rgba(19,214,122,0.06), transparent 14%),
    radial-gradient(circle at 86% 60%, rgba(19,214,122,0.05), transparent 8%);
  opacity:.9;
  pointer-events:none;
  filter:blur(10px);
}

#mnh-globe-canvas::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:32px 32px;
  opacity:.18;
  pointer-events:none;
}

#mnh-globe-canvas > *{
  position:relative;
  z-index:1;
}

#mnh-globe-canvas.is-refreshing{
  opacity:.45;
  transform:scale(.985);
  transition:opacity .45s ease, transform .45s ease;
}

#mnh-globe-canvas.is-live{
  opacity:1;
  transform:scale(1);
  transition:opacity .45s ease, transform .45s ease;
}

/* placeholder + visual */
#mnh-globe-canvas .mnh-globe-placeholder{
  min-height:500px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:30px 20px;
  box-sizing:border-box;
}

#mnh-globe-canvas .mnh-globe-visual{
  position:relative;
  width:260px;
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}

#mnh-globe-canvas .mnh-globe-circle{
  width:220px;
  height:220px;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.18), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(19,214,122,0.20), rgba(8,20,14,0.9) 70%);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 40px rgba(19,214,122,0.16),
    inset 0 0 40px rgba(255,255,255,0.04);
  position:relative;
  animation:mnhGlobeSpin 12s linear infinite !important;
  transform-origin:center center;
}

#mnh-globe-canvas .mnh-globe-circle::before,
#mnh-globe-canvas .mnh-globe-circle::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.08);
}

#mnh-globe-canvas .mnh-globe-circle::before{
  transform:scaleX(0.72);
  animation:mnhGlobePulse 6s ease-in-out infinite;
}

#mnh-globe-canvas .mnh-globe-circle::after{
  transform:scaleY(0.72);
  animation:mnhGlobePulse 8s ease-in-out infinite reverse;
}

#mnh-globe-canvas .mnh-globe-orbit{
  position:absolute;
  inset:0;
  animation:mnhOrbitSpin 22s linear infinite !important;
}

#mnh-globe-canvas .mnh-orbit-face{
  position:absolute;
  top:50%;
  left:50%;
  width:42px;
  height:42px;
  margin:-21px 0 0 -21px;
  transform:rotate(var(--angle)) translateY(-118px);
  transform-origin:center center;
  display:block;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,0.28);
  border:2px solid rgba(19,214,122,0.45);
  background:#111;
  z-index:3;
}

#mnh-globe-canvas .mnh-orbit-face img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

#mnh-globe-canvas .mnh-orbit-face:hover{
  transform:rotate(var(--angle)) translateY(-118px) scale(1.12);
  border-color:rgba(19,214,122,0.9);
  box-shadow:0 10px 22px rgba(19,214,122,0.22);
  z-index:5;
}

#mnh-globe-canvas .mnh-globe-text{
  font-size:15px;
  color:rgba(255,255,255,0.72);
  text-align:center;
}

/* tooltip */
#mnh-globe-canvas .mnh-orbit-tooltip{
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,0.78);
  color:#fff;
  white-space:nowrap;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 10px 24px rgba(0,0,0,0.28);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:8;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  min-width:120px;
  text-align:center;
}

#mnh-globe-canvas .mnh-orbit-tooltip.is-visible{
  opacity:1;
  transform:translateX(-50%) translateY(-4px);
}

#mnh-globe-canvas .mnh-orbit-tooltip strong{
  font-size:12px;
  line-height:1.2;
  color:#fff;
  font-weight:700;
}

#mnh-globe-canvas .mnh-orbit-tooltip span{
  font-size:11px;
  line-height:1.2;
  color:rgba(255,255,255,0.72);
}

/* face cards grid */
#mnh-globe-canvas .mnh-faces-grid{
  width:100%;
  max-width:900px;
  margin:26px auto 0;
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:14px !important;
  padding:0 16px 20px !important;
  box-sizing:border-box;
}

#mnh-globe-canvas .mnh-face-card{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:8px !important;
  text-decoration:none !important;
  background:rgba(255,255,255,0.04) !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  border-radius:16px !important;
  padding:12px 10px !important;
  overflow:hidden !important;
  min-width:0 !important;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease !important;
}

#mnh-globe-canvas .mnh-face-card:hover{
  transform:translateY(-6px) scale(1.02) !important;
  box-shadow:0 18px 34px rgba(0,0,0,0.34) !important;
  border-color:rgba(19,214,122,0.35) !important;
  background:rgba(255,255,255,0.06) !important;
}

#mnh-globe-canvas .mnh-face-card img{
  display:block !important;
  width:72px !important;
  height:72px !important;
  min-width:72px !important;
  max-width:72px !important;
  min-height:72px !important;
  max-height:72px !important;
  border-radius:50% !important;
  object-fit:cover !important;
  border:2px solid rgba(19,214,122,0.35) !important;
  background:#111 !important;
}

#mnh-globe-canvas .mnh-face-card:hover img{
  border-color:rgba(19,214,122,0.75) !important;
  box-shadow:0 0 18px rgba(19,214,122,0.18) !important;
}

#mnh-globe-canvas .mnh-face-card span{
  display:block !important;
  width:100% !important;
  font-size:12px !important;
  line-height:1.3 !important;
  color:#fff !important;
  text-align:center !important;
  word-break:break-word !important;
}

#mnh-globe-canvas .mnh-face-card:hover span{
  color:#dfffea !important;
}

/* stats */
.mnh-globe-stats{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:22px;
}

.mnh-stat-box{
  min-width:180px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.16);
}

.mnh-stat-box strong{
  display:block;
  font-size:26px;
  line-height:1;
  color:#fff;
  margin-bottom:8px;
}

.mnh-stat-box span{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,0.72);
}

/* animations */
@keyframes mnhGlobeSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes mnhGlobePulse{
  0%,100%{ opacity:.45; }
  50%{ opacity:.9; }
}

@keyframes mnhOrbitSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes mnhLivePulse{
  0%{ box-shadow:0 0 0 0 rgba(19,214,122,0.55); }
  70%{ box-shadow:0 0 0 10px rgba(19,214,122,0); }
  100%{ box-shadow:0 0 0 0 rgba(19,214,122,0); }
}

/* mobile */
@media (max-width:767px){
  .mnh-globe-wrap{
    padding:28px 14px;
  }

  .mnh-globe-header h2{
    font-size:28px;
  }

  .mnh-globe-toolbar{
    gap:10px;
  }

  .mnh-globe-toolbar input,
  .mnh-globe-toolbar button,
  .mnh-join-globe-btn{
    width:100%;
    max-width:100%;
  }

  #mnh-globe-canvas{
    min-height:360px;
    border-radius:18px;
  }

  #mnh-globe-canvas .mnh-globe-placeholder{
    min-height:360px;
  }

  #mnh-globe-canvas .mnh-globe-visual{
    width:210px;
    height:210px;
  }

  #mnh-globe-canvas .mnh-globe-circle{
    width:170px;
    height:170px;
  }

  #mnh-globe-canvas .mnh-orbit-face{
    width:34px;
    height:34px;
    margin:-17px 0 0 -17px;
    transform:rotate(var(--angle)) translateY(-96px);
  }

  #mnh-globe-canvas .mnh-orbit-face:hover{
    transform:rotate(var(--angle)) translateY(-96px) scale(1.08);
  }

  #mnh-globe-canvas .mnh-faces-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

.mnh-recent-joined{
  max-width:920px;
  margin:18px auto 0;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 14px 30px rgba(0,0,0,0.16);
  overflow:hidden;
}

.mnh-recent-label{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#dfffea;
  margin-bottom:10px;
}

.mnh-recent-track{
  display:flex;
  gap:18px;
  white-space:nowrap;
  overflow-x:auto;
  scrollbar-width:none;
}

.mnh-recent-track::-webkit-scrollbar{
  display:none;
}

.mnh-recent-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,0.78);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}
.mnh-card-preview{
  margin-top:8px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(0,0,0,0.78);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 10px 24px rgba(0,0,0,0.28);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  transform:translateY(4px);
  min-width:140px;
  text-align:center;
}

.mnh-card-preview.is-visible{
  opacity:1;
  transform:translateY(0);
}

.mnh-card-preview strong{
  display:block;
  font-size:12px;
  line-height:1.2;
  color:#fff;
  font-weight:700;
}

.mnh-card-preview span{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1.2;
  color:rgba(255,255,255,0.72);
}