    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: sans-serif;
      background-color: #000;
    }

    .bg-image {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-image: url('bg_beaches_red.png');
      background-size: cover;
      background-position: center;
      z-index: -2;
    }

    #bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
    }

    .top-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 48px;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 0 20px;
      z-index: 10;
      color: white;
      font-size: 1.2rem;
      opacity: 0.6;
    }

     .menu-toggle {
      background: none;
      border: none;
      color: white;
      font-size: 1.8rem;
      cursor: pointer;
      z-index: 11;
    }

    .menu-container {
  position: relative;
}

.menu {
  position: absolute;
  top: 116%;
  right: 0;
  background-color: rgba(0, 0, 0, 1.0);
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 15px 25px;
  z-index: 10;
  white-space: nowrap;
}
    .menu a {
      color: #cecece;
      text-decoration: none;
      font-size: 1.1rem;
    }

    .menu a:hover {
      text-decoration: underline;
      color: #ffffff;
    }

    .top-logo {
      padding-top: 5px;
      height: 32px;
    }

    .overlay {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      color: white;
      text-align: center;
      padding-top: 150px;
    }

    .link-row {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .yt-thumb,
    .spotify-thumb {
      width: 80%;
      max-width: 250px;
      height: auto;
      transition: transform 0.2s ease;
    }

    .yt-thumb:hover,
    .spotify-thumb:hover {
      transform: scale(1.05);
    }
