.muse-popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: transparent;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999;
}


.muse-card{
  width: 85%;
  max-width: 280px;
  background: #0f141a;
  border-radius: 18px;
  padding: 16px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.6);

  position: relative;
}


/* 🔥 CLOSE BUTTON + ANIMASI */
.muse-close{
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  transition: all 0.3s ease;
}

/* 🔥 saat diklik */
.muse-close.active{
  transform: rotate(45deg); /* X jadi + */
  color: #8be9e7;           /* warna vinyl */
}


.vinyl-wrapper{
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 15px;
}


/* COVER DEPAN */
.album-cover{
  width: 160px;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}


/* VINYL BELAKANG */
.vinyl-disc{
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;

  right: -35px;
  top: 10px;

  z-index: 1;

  background:
    repeating-radial-gradient(circle,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 2px,
      transparent 2px,
      transparent 6px
    ),
    radial-gradient(circle at center,
      #d9ffff 0%,
      #9ef3f1 25%,
      #6fe3df 50%,
      #4fd0cc 75%,
      #36bfb9 100%
    );

  animation: spin 3s linear infinite;
}


/* SHINING IKUT MUTER */
.vinyl-disc::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;

  background: conic-gradient(
    transparent 0deg,
    rgba(255,255,255,0.4) 40deg,
    transparent 80deg,
    transparent 360deg
  );

  mix-blend-mode: overlay;

  animation: spin 3s linear infinite;
}


/* CENTER VINYL */
.vinyl-disc::after{
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;

  background: #6fe3df;
  border-radius: 50%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.muse-title{
  color: #8be9e7;
  font-size: 18px;
  margin-bottom: 12px;
}


.buy-btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #8be9e7;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: 0.25s;
}


.buy-btn:hover{
  background: #8be9e7;
  color: #000;
}


.buy-btn:active{
  background: #8be9e7;
  color: #000;
  transform: scale(0.95);
}


@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
