body{
    margin:0;
  }
  .experience {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100vh;
    z-index: 1;
  }
  
  .scrollTarget {
    position: absolute;
    height: 500vh;
    width: 100px;
    top: 0;
    z-index: 0;
  }
  
  .vignette-radial {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    pointer-events: none;
  }
  
  .vignette-radial:after {
    pointer-events: none;
    content: ' ';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: radial-gradient(circle, transparent 60%, black 150%);
  }

  .astronaut-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Below text, above canvas */
    pointer-events: none;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .astronaut-img {
      width: 100%;
      height: auto;
      max-width: 320px;
      max-height: 320px;
      display: block;
  }

  .text-section {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    width: 80%;
    max-width: 600px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    border-radius: 18px;
    padding: 2em 1.5em;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border: 1px solid rgba(180, 210, 240, 0.25);
  }

  .text-section h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
  }

  .text-section p {
    font-size: 1.2em;
    line-height: 1.6;
    opacity: 0.9;
  }

  .text-section.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .text-section a {
    pointer-events: none;
  }

  .text-section.visible a {
    pointer-events: auto;
  }

  a {
    color: red;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
  }

  a:hover,
  a:focus {
    color: #b30000;
    text-decoration: underline;
  }

  a:active {
    color: #800000;
  }

  .footer-logos {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    gap: 2.5em;
    padding: 1.2em 0;
    background: none;
    z-index: 10;
    pointer-events: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.08);
    transition: box-shadow 0.2s;
    margin: 0 0.5em;
    text-decoration: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-logo:hover,
.footer-logo:focus {
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.15);
}

.footer-logo svg,
.footer-logo img {
    width: 28px;
    height: 28px;
    display: block;
}

.music-toggle {
    position: fixed;
    top: 24px;
    right: 32px;
    z-index: 1001;
    background: rgba(180, 210, 240, 0.35);
    border: 1px solid rgba(180, 210, 240, 0.25);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.08);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    padding: 0;
}
.music-toggle:hover,
.music-toggle:focus {
    background: rgba(180, 210, 240, 0.55);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.15);
}
.music-toggle img {
    width: 28px;
    height: 28px;
    pointer-events: none;
}

@media (max-width: 600px) {
  .text-section {
    top: 25%;
  }
  .astronaut-container {
    top: 60%;
  }
}