 * {
   margin: 0;
   padding: 0;
 }

 body {
   font-family: Arial, sans-serif;
   background: #333333;
   color: rgb(255, 255, 255);
   background-repeat: no-repeat;
 }
body::-webkit-scrollbar{
        display: none;
      }
 .card {
   border-radius: 20px;
 }

 .Thumbnail {
   margin: 5% 5% 0 5%;
   height: 560px;
   width: auto;
   object-fit: cover;
   border-radius: 25px;

 }

 .play {
   height: 50px;
   width: auto;
   border: none;
   background-color: transparent;
   color: white;
 }

 .info {
   place-items: center;
   line-height: 1.3;
 }

 .title {
   font-size: 2em;
   font-weight: bold;

 }

 .artist {
   font-size: 1em;
   color: #ccc;
 }

 .bitrate {
   line-height: 1.5;
   font-size: 1em;
   font-weight: bold;
   color: #ff5e00;
 }




 #seekBar {
   /* width: 70%; */
   height: 8px;
   appearance: none;
   background: linear-gradient(to right, white 0%, white 0%, #e0e0e0 0%);
   border-radius: 10px;
   outline: none;
   opacity: 0.7;
   transition: background 0.2s;
 }

 #seekBar:hover {
   opacity: 1;
 }

 /* Thumb (white circle) */
 #seekBar::-webkit-slider-thumb {
   appearance: none;
   height: 14px;
   width: 14px;
   border-radius: 50%;
   background: rgb(255, 255, 255);
   cursor: pointer;
   margin-top: -3px;
 }

 #seekBar::-moz-range-thumb {
   height: 14px;
   width: 14px;
   border-radius: 50%;
   background: rgb(255, 255, 255);
   cursor: pointer;
 }

 #seekBar {
   pointer-events: auto;
 }

 #seekBar::-webkit-slider-thumb {
   appearance: none;
   height: 0;
   width: 0;
   background: transparent;
   border: none;
 }


 /* ************************************************ */


 /* #lyrics {
      margin: 10% 0;
      display: flex;
      place-items: center;
      flex-direction: column;
      font-size: 2em;
      width: 100%;
      height: 80vh;
      overflow-y:hidden;
      color: rgba(165, 165, 165, 0.795);
    }
    #lyrics::-webkit-scrollbar{
      display: none;
    }
    .highlight {
      -webkit-text-stroke: px black;
      color: #ffffff;
      font-size: 1.5em;
      font-weight: bold;
      padding: 10px;
    }
    
    .left{
        float: left;
        width: 40%;
        height: 100vh;
        display: grid;
        justify-content: center;
        align-items: center;
    }

    .right{
        float: right;
        width: 60%;
        height: 100vh;
    } */


 #timeDisplay {
   /* font-size: 14px; */
   visibility: visible;
   color: white;
   margin-top: 10px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 20px;
 }

 
 #currentTime,
 #totalTime {
   font-size: 20px;
   color: white;
 }

 #fileInput {
   display: none;
 }

 .custom-file-label {
   display: inline-flex;
   align-items: center;
   cursor: pointer;
   padding: 10px 15px;
   background-color: #ae00ff;
   color: white;
   border-radius: 5px;
   font-size: 14px;
   gap: 8px;
   width: auto;
   height: 15px;
 }

 .ssvvgg {
   width: 15px;
   height: 15px;
   fill: white;
 }

 .custom-file-label:hover {
   background-color: #45a049;
 }

.copyrights{
  padding: 10px;
  display: flex;
  align-items: end;
  justify-content: center;
  /* position: absolute;*/
  bottom: -100px; 
} 
.copyrights a{
  text-decoration: none;
  color: deeppink;
  /* font-size: 10px; */
}

html,body{height:100%;margin:0}

  .water {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    /* sparkle overlay */
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 40%),
    /* moving top layer */
    linear-gradient(45deg, var(--d), var(--c) 40%, rgba(0,0,0,0) 70%),
    /* moving mid layer */
    linear-gradient(180deg, var(--a), var(--b) 60%),
    /* extra shimmer layer */
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 70%),
    /* extra deep flow */
    linear-gradient(90deg, var(--b), var(--a) 60%);
  
  background-size:
    350% 350%,  /* sparkle overlay */
    250% 250%,  /* top layer */
    150% 150%,  /* mid layer */
    200% 200%,  /* shimmer */
    180% 180%;  /* deep flow */

  animation:
    flowA 14s linear infinite,
    flowB 20s linear infinite,
    flowC 30s linear infinite,
    flowD 50s linear infinite;
}

@keyframes flowA {
  0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
  50% { background-position: 60% 100%, 40% 80%, 20% 60%, 50% 50%, 80% 40%; }
  100% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
}

@keyframes flowB {
  0% { background-position: 100% 20%; }
  50% { background-position: 20% 80%; }
  100% { background-position: 100% 20%; }
}

@keyframes flowC {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

@keyframes flowD {
  0% { background-position: 20% 80%; }
  50% { background-position: 80% 20%; }
  100% { background-position: 20% 80%; }
}
