.onhosty-world3d{
  --oh-world3d-h:620px;
  background: radial-gradient(1200px 700px at 30% 20%, rgba(0,255,255,.10), rgba(0,0,0,.65) 55%, rgba(0,0,0,.9));
  border: 1px solid rgba(0,255,255,.18);
  border-radius: 18px;
  padding: 14px;
  color: #eaffff;
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
  overflow: hidden;
}
.onhosty-world3d-head{display:flex;justify-content:space-between;align-items:flex-end;gap:12px;flex-wrap:wrap;margin-bottom:10px}
.onhosty-world3d-title{font-size:20px;font-weight:800;letter-spacing:.3px}
.onhosty-world3d-sub{opacity:.85;font-size:13px}
.onhosty-world3d-zones{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 12px}
.onhosty-world3d-zones .ohz{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(0,255,255,.22);
  background: rgba(0,0,0,.35);
  text-decoration:none;color:#eaffff;font-size:13px;
}
.onhosty-world3d-zones .ohz.is-active{background:rgba(0,255,255,.14);border-color:rgba(0,255,255,.45)}
.onhosty-world3d-filters{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 10px}
.onhosty-world3d-filters .ohf{
  cursor:pointer;
  padding:7px 10px;border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.30);
  color:#eaffff;font-size:13px;
}
.onhosty-world3d-filters .ohf.is-active{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.32)}
.onhosty-world3d-stage{
  position:relative;
  height:var(--oh-world3d-h);
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(800px 500px at 50% 40%, rgba(0,255,255,.10), rgba(0,0,0,.78));
}
.onhosty-world3d-canvas{width:100%;height:100%;display:block}
.onhosty-world3d-hud{position:absolute;left:12px;bottom:12px;display:flex;gap:8px;align-items:center}
.onhosty-world3d-hud .ohhint{
  font-size:12px;opacity:.85;
  padding:6px 9px;border-radius:10px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
}
.onhosty-world3d-tooltip{
  position:absolute;min-width:220px;max-width:320px;
  padding:10px 10px;border-radius:14px;
  border:1px solid rgba(0,255,255,.20);
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  color:#eaffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
  pointer-events:none;
  transform: translate(-50%, -110%);
  display:none;
}
.onhosty-world3d-tooltip.is-on{display:block}
.onhosty-world3d-tooltip .t-title{font-weight:800;margin:0 0 6px;font-size:14px}
.onhosty-world3d-tooltip .t-meta{font-size:12px;opacity:.9;display:flex;gap:10px;flex-wrap:wrap}
.onhosty-world3d-tooltip .t-pill{padding:2px 7px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.06)}
.onhosty-world3d-tooltip .t-hp{margin-top:8px;height:8px;border-radius:999px;background:rgba(255,255,255,.12);overflow:hidden;border:1px solid rgba(255,255,255,.12)}
.onhosty-world3d-tooltip .t-hp > i{display:block;height:100%;width:50%;background:linear-gradient(90deg, rgba(0,255,255,.9), rgba(0,255,255,.25))}

/* Arrow controls */
.onhosty-world3d-arrows{
  position:absolute;right:12px;bottom:12px;
  width:112px;height:112px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-template-rows:repeat(3, 1fr);
  gap:8px;
  pointer-events:auto;
}
.oh3d-arrow{
  width:100%;height:100%;
  border-radius:14px;
  border:1px solid rgba(0,255,255,.20);
  background:rgba(0,0,0,.35);
  color:#eaffff;
  font-size:18px;font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(0,0,0,.35);
}
.oh3d-arrow:hover{border-color:rgba(0,255,255,.40)}
.oh3d-arrow:active{transform:translateY(1px)}
.oh3d-arrow.up{grid-column:2;grid-row:1}
.oh3d-arrow.left{grid-column:1;grid-row:2}
.oh3d-arrow.right{grid-column:3;grid-row:2}
.oh3d-arrow.down{grid-column:2;grid-row:3}
