* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(26, 26, 26);
}

#we {
    position: absolute;
    bottom: 250px;
    font-size: 10px;
    color: rgb(235, 223, 223);
    text-align: center;
}

body {
    background: linear-gradient(to bottom, #380445, #9f0d7f, #e16893); 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-1 {
    flex-direction: column;
    width: 350px;
    height: 450px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3),
                -5px -5px 15px rgba(255,255,255,0.1);
    background: linear-gradient(to bottom, #DF6589, #ed40b9, #ff6ec4, #ff3c3c);
    transition: transform 0.3s ease-in-out;
}

.art {
    margin-top: 30px;
}

.art img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 5px solid #3C1053;
    box-shadow: 0 0 10px #3C1053;
}

.art-name, .prog, .msc {
    margin-top: 10px;
}

.art-name {
    width: 90%;
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    padding: 0 10px;
}

.title {
    display: inline-block;
    padding-left: 100%;
    animation: run 15s linear infinite;
}

.msc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.ctrl {
    cursor: pointer;
    background-color: #f699e5; 
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.ctrl:hover {
    transform: scale(1.1);
    background-color: #c78ce8; 
    
}

.ctrl:active {
    transform: scale(0.9);
}

i {
    font-size: 22px;
    color: white;
}

.none {
    display: none;
}

.prog {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    width: 80%;
}

.time {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    color: white;
}

.line {
    width: 100%;
    height: 5px;
    margin-top: 5px;
    background-color: rgb(228, 151, 192);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.lineChild {
    position: absolute;
    border-radius: 10px;
    background-color: #cb1d51;
    width: 0%;
    height: 100%;
    transition: width 0.1s;
     
    
}

.lineChild::after {
    content: "";
    position: absolute;
    background-color: rgb(228, 218, 218);
    cursor: pointer;
    top: -4px;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #5a2975; */
    
}




.box-1 {
    
    animation: pulseGlow 6s infinite ease-in-out;
}

body {
    transition: 1.5s ease-in-out;
    background-size: 400% 400%; /* For gradient animations */
}





@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1),
                    0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
                    0 0 40px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1),
                    0 0 20px rgba(255, 255, 255, 0.2);
    }
}

@keyframes round {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes run {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.round {
    animation: round 15s linear infinite;
    transform-origin: center center; 
}

@keyframes round {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.bubbles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* Behind content */
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(5px);
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.bubble {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 20px rgba(223, 101, 137, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}