body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: #fff;
      background-color: #040712;
    }
    #bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
    }
    #overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.55);
      z-index: 0;
    }
    .content {
      position: relative;
      z-index: 1;
      padding: 60px 20px 80px;
      min-height: 100vh;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      background: transparent;
    }
    h1 {
      font-weight: 800;
      margin-bottom: 10px;
    }
    h2 {
      font-weight: 700;
      margin-bottom: 12px;
    }
    .music-section {
      width: 100%;
      max-width: 960px;
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .music-panel {
      background: linear-gradient(160deg, rgba(12, 16, 32, 0.85), rgba(5, 7, 15, 0.75));
      border-radius: 22px;
      padding: clamp(1.75rem, 3vw, 2.75rem);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(20px);
      text-align: left;
      overflow: hidden;
      animation: fadeSlide 0.95s ease-out forwards;
      position: relative;
    }
    .music-panel:nth-of-type(2) {
      animation-delay: 0.1s;
    }
    .music-panel:nth-of-type(3) {
      animation-delay: 0.2s;
    }
    .music-panel .music-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .music-panel .music-list li {
      background: rgba(255, 255, 255, 0.06);
      padding: 12px 16px;
      border-radius: 12px;
      line-height: 1.5;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }
    .music-panel p {
      margin: 0;
      line-height: 1.6;
    }
    .back-link {
      color: #ccc;
      text-decoration: underline;
      margin-top: 10px;
      font-size: 1rem;
    }
    @keyframes fadeSlide {
      0% {
        opacity: 0;
        transform: translateY(35px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .back-link {
      color: #ccc;
      text-decoration: underline;
      margin-top: 40px;
      font-size: 1rem;
    }
