  body {
      margin: 0;
      overflow: hidden;
      font-family: 'Courier New', monospace;
	  background-color: #000003;
    }

    .center-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      text-align: center;
    }

    .hub {
      background: #111;
      border: 2px solid #0ff;
      padding: 1rem 2rem;
      border-radius: 50%;
      box-shadow: 0 0 20px #0ff;
      cursor: default;
      color: #0ff;
    }

    .satellite-link {
      position: absolute;
      width: 150px;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #0ff;
      border-radius: 50%;
      text-align: center;
      background-color: rgba(0, 255, 255, 0.1);
      color: #0ff;
      font-size: 0.8rem;
      transition: transform 0.3s;
      text-decoration: none;
    }

    .satellite-link:hover {
      transform: scale(1.1);
      background-color: rgba(0, 255, 255, 0.2);
    }