  body {
    margin: 0;
    background:
      radial-gradient(circle at 50% 50%, #051122 0%, #02040b 40%, #000208 100%);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	    color: #ffffff;
    font-family: "Zalando Sans Expanded", sans-serif;
	font-weight: 500;
	    text-shadow:
      0 0 6px rgba(10, 20, 50, 0.9),
      0 0 12px rgba(90, 150, 255, 0.85);
  }

  #wrapper {
    width: min(45vw, 350px);
    height: min(45vw, 350px);
    perspective: 2000px;
    position: relative;
  }

    .footer{
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        color: white;
        text-align: center;
        font-size: 8px;  
        margin-bottom: 15px;
        }

	a {
	color: #ffffff;
	text-decoration: none;
	}

  #logo3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    cursor: pointer; /* clickable to exit members mode */
  }

  svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter:
      drop-shadow(0 0 18px rgba(140, 195, 255, 0.95))
      drop-shadow(0 0 45px rgba(120, 180, 255, 0.9))
      drop-shadow(0 0 90px rgba(50, 120, 255, 0.7));
  }

  .dot-path {
    fill: #dff2ff;
    pointer-events: none;
  }

  .center-dot {
    fill: #f3fbff !important;
    filter:
      drop-shadow(0 0 30px rgba(190, 230, 255, 1))
      drop-shadow(0 0 80px rgba(150, 210, 255, 0.9));
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
  }

  .connector-line {
    stroke: rgba(150, 205, 255, 0.42);
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-dasharray: 3 5;
  }

  /* text-only floating labels */

  .floating-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    color: #ffffff;
    font-family: "Zalando Sans Expanded", sans-serif;
	font-weight: 500;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: lowercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: auto;
    outline: none;
    text-shadow:
      0 0 6px rgba(10, 20, 50, 0.9),
      0 0 12px rgba(90, 150, 255, 0.85);
    transition:
      transform 0.22s ease-out,
      text-shadow 0.22s ease-out,
      letter-spacing 0.25s ease-out,
      opacity 0.25s ease-out;
    animation: tagFloat 5s ease-in-out infinite alternate;
  }

  .floating-btn:hover {
    transform: translate(-50%, -50%) translateY(-2px);
    letter-spacing: 0.05em;
    text-shadow:
      0 0 6px rgba(200, 230, 255, 1),
      0 0 16px rgba(150, 210, 255, 1);
    animation-play-state: paused;
  }

  .btn-youtube  { color: #ffffff; }
  .btn-twitter  { color: #ffffff; }
  .btn-login    { color: #ffffff; }
  .btn-members  { color: #ffffff; }

  .member-label {
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 0em;
  }

	.center {
		position:absolute;
		top: 10%;
		left: 50%;
        transform: translate(-50%, -50%);
		/*margin-top: -250px;
		margin-left: -250px; */
	
	}

  @keyframes tagFloat {
    0%   { transform: translate(-50%, -50%) translateY(0px); }
    50%  { transform: translate(-50%, -50%) translateY(-3px); }
    100% { transform: translate(-50%, -50%) translateY(0px); }
  }