* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: black;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 600px;
    width: 100%;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .block-container {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .music-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .music-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 320px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    overflow: hidden;
  }

  .link {
    background-image: url('images/block2.png');
  }
  
  .instagram {
    background-image: url('images/block3.png');
  }
  
  .tiktok {
    background-image: url('images/block1.png');
  }
  
  .spotify {
    background-image: url('images/block1.png');
  }
  
  .apple-music {
    background-image: url('images/block2.png');
  }
  
  .amazon-music {
    background-image: url('images/block3.png');
  }
  
  .youtube-music {
    background-image: url('images/block1.png');
  }
  
  .music-logo {
    width: 140px;
    height: 140px;
    position: relative;
    filter: brightness(0) invert(1);
    transition: transform 2.5s ease, filter 0.3s ease;
  }

  #link-logo {
    top: 26px;
    left: 38px;
  }

  #instagram-logo {
    top: 26px;
    left: -23px;
    transform: rotate(6deg)
  }

  #tiktok-logo {
    top: 26px;
    left: -8px;
  }

  #spotify-logo {
    top: 26px;
    left: -8px;
  }

  #apple-logo {
    top: 20px;
    left: 38px;
  }

  #amazon-logo {
    top: 20px;
    left: -20px;
  }

  #youtube-logo {
    top: 24px;
    left: -8px;
  }
  
  /* Mobile hover effects (scroll-based) */
  .music-block {
    transform: scale(1);
  }
  
  .music-block.visible {
    transform: scale(1.05);
  }
  
  .music-block.visible .music-logo {
    transform: scale(1.05);
    filter: none;
  }
  
  /* For Desktop! */
  @media screen and (min-width: 600px) {
    .block-container {
      width: 80%;
      margin-bottom: 50px;
    }
    
    /* Desktop hover effects */
    .music-block:hover {
      transform: scale(1.05);
    }
    
    .music-block:hover .music-logo {
      transform: scale(1.05);
      filter: none;
    }
  }

  #lyrics-background {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
    transform: translateY(-50%);
    overflow: clip;
  }

  .lyrics-line-forward, .lyrics-line-reverse {
    position: absolute;
    white-space: nowrap;
    font-family: monospace;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -2px;
    color: #fff;
    left: 0;
    will-change: transform;
  }

  .lyrics-line-forward {
    animation: scrollLyricsForward 50s linear infinite;
  }

  .lyrics-line-reverse {
    animation: scrollLyricsReverse 50s linear infinite;
  }

  @keyframes scrollLyricsForward {
    0% {
      transform: translateX(-101%);
    }
    100% {
      transform: translateX(0%);
    }
  }

  @keyframes scrollLyricsReverse {
    0% {
      transform: translateX(5%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* For Desktop! */
  @media screen and (min-width: 600px) {
    @keyframes scrollLyricsForward {
      0% {
        transform: translateX(-80%);
      }
      100% {
        transform: translateX(0%);
      }
    }
  
    @keyframes scrollLyricsReverse {
      0% {
        transform: translateX(-10%);
      }
      100% {
        transform: translateX(-100%);
      }
    }
  }