   body {
      margin: 0;
      height: 100vh;
      background: #f8e6f7;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: Arial, sans-serif;
      position: relative;
    }

    .top-text {
      position: absolute;
      top: 20px;
      width: 100%;
      text-align: center;
      font-size: 2em;
      font-family: 'Cursive', serif;
      color: #fbe8d3;
      text-shadow: 0 0 15px #fbe8d3;
    }

    .bubble-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .music-bubble {
      width: 250px;
      height: 250px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      cursor: pointer;
      border-radius: 50%;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      z-index: 10;
    }

    .music-bubble img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .music-bubble:hover {
      transform: scale(1.2);
      box-shadow: 0 0 25px rgba(179, 0, 134, 0.8);
    }

   
    .bubble1 { top: 10%; left: 20%; }
    .bubble2 { top: 30%; left: 60%; }
    .bubble3 { top: 50%; left: 35%; }
    .bubble4 { top: 65%; left: 70%; }
    .bubble5 { top: 80%; left: 50%; }

   
    .left-bottom-link {
      position: absolute;
      bottom: 20px;
      left: 20px;
      width: 500px;
      transform: rotate(10deg);
    }

    .left-bottom-link img {
      width: 100%;
      height: auto;
    }

   
    .right-side-img {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 450px;
    }

    
    #player-container {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1000;
      background: rgba(0,0,0,0.7);
      padding: 20px;
      border-radius: 10px;
    }
    #player-container iframe {
      width: 560px;
      height: 315px;
      border: none;
    }
    #close-btn {
      position: absolute;
      top: -10px;
      right: -10px;
      background: #ff69b4;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }