
* {
    margin: 0;
    padding: 0;
  
    }
  
img {
    user-select: none; /* Prevent text/image selection */
    pointer-events: none; /* Disable interactions (optional) */
    -webkit-user-drag: none; /* Prevent dragging in WebKit browsers */
    }
    
 body {
    font-family: "Exo 2", serif !important;
    overflow-x: hidden;
    width: 100%;
    background-color: #eae6e6;
    margin: 0;
    padding: 0;
      
    }  

 a{
    text-decoration: none;
 }   

.blurrybg{
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    position: fixed;
    object-fit: cover;
    filter: blur(5px);
    opacity: 0.6;
}

.pagecontent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-top: 50px;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.albumdetails{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 400px;
}

@keyframes scaleIn {
  0% {
      transform: scale(0.8);
      opacity: 0;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.AlbumCover {
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  animation: scaleIn 0.5s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .AlbumCover {
      width: 180px;
  }
}


.album-info{
    font-size: 20px;
    margin-top: 20px;
}

.viewlyrics{
    margin-top: 10px;
    margin-bottom: 15px;
    color: black;
    text-decoration: none;
    padding: 0;
}

.viewlyrics:hover{
    text-decoration: underline;
}

.streamingtag{
    opacity: 0.7;
}

.streaminglinks{
    width: 400px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.196);
    transition: box-shadow 0.3s ease-in-out;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    animation: bounceIn 0.5s ease-out forwards;
}

@media screen and (max-width: 768px) {
    .streaminglinks{
        width: 320px;
    }
}

.streaminglinks a{
    text-decoration: none;
}


.link{
    display: flex;
    flex-direction: row;
    height: 72px;
    align-items: center;
    z-index: 2;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #cdd3cfc9;
}

.link:hover{
    background-color: #cdd3cfc9;
}


.linkpic{
    width: 125px;
    height: 40px;
    margin: 5px;
    padding: 0;
    object-fit: cover;
    z-index: 2;
    margin-left: 20px;
}

.first{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.last{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: none;
}

.playbtn{
    padding: 12px 16px;
    background-color: #E6EAF2;
    color: #181721;
    font-size: 12px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
    display: flex;
    margin: 5px;
    margin-right: 20px;
}

.playbtn:hover{
    background-color: #181721;
    color: #E6EAF2;

}







.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9000;
    background-color: #ffcb47;
    color: rgb(0, 0, 0);
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;

    
}

.home-button:hover {
    background-color: #000000;
}


.home-button:hover .fa-home{
    color: #ffffff;
}

.fa-home {
    font-size: 18px;
    color: rgb(0, 0, 0);
    transition: all 0.3s ease-in-out;
}










.menu-container {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 9999;
}

#menu-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
}

.dropdown-menu button {
    background: none;
    border: none;
    width: 100%;
    padding: 10px;
    text-align: left;
    cursor: pointer;
}

.dropdown-menu button:hover {
    background: #e9e8e8;
}

.hidden {
    display: none;
}


.footer2{
    width: 100%;
    padding: 2% 0;
    background: linear-gradient(to bottom, #0000000a, #000000);

  }

  .floatingcover{
 animation: floatUpDown 3s ease-in-out infinite;
 cursor: pointer !important;
}

@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(5px); } /* moves up */
  100% { transform: translateY(0); }
}