.oc-linktree {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg, transparent);
  border-radius: 0;
  box-sizing: border-box;
  overflow: visible;
  aspect-ratio: 1 / 1; /* Erst-Rendering-Hinweis, wird per JS exakt nachgeschärft */
}

.oc-linktree svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.oc-node {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.15;
  padding: 6%;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(11, 15, 25, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: clamp(9px, 1.6vw, 14px);
  width: 16%;
  height: 16%;
}

.oc-hub {
  width: 27.5%;
  height: 27.5%;
}

.oc-node:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 10px 26px rgba(11, 15, 25, 0.28);
}

.oc-hub {
  z-index: 3;
  font-size: clamp(13px, 2.6vw, 21px);
  font-weight: 800;
  letter-spacing: 0.01em;
}
