.Cabin {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  animation: shimmer 2s infinite;
  background: linear-gradient(to right, #334155 0%, #475569 20%, #334155 40%, #334155 100%);
  background-size: 1000px 100%;
}

.wave-animation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.wave-animation span {
  display: block;
  width: 3px;
  height: 100%;
  background-color: #a855f7;
  border-radius: 3px;
  animation: wave 1.2s infinite ease-in-out;
}

.wave-animation span:nth-child(1) {
  animation-delay: 0s;
}

.wave-animation span:nth-child(2) {
  animation-delay: 0.1s;
}

.wave-animation span:nth-child(3) {
  animation-delay: 0.2s;
}

.wave-animation span:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes wave {
  
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  
  20% {
    transform: scaleY(1);
  }
}

.progress-bar {
  height: 4px;
  background-color: #334155;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.progress-bar:hover {
  height: 6px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #a855f7, #c084fc);
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.glass-effect {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.3);
}

.playing-card {
  box-shadow: 0 0 0 2px #a855f7, 0 10px 25px -5px rgba(168, 85, 247, 0.3);
}

.wave-animation {
  display: flex;
  align-items: flex-end;
  height: 24px;
  gap: 3px;
}

.wave-animation span {
  display: block;
  width: 4px;
  background: #6366f1;
  /* indigo-500 */
  border-radius: 2px;
  animation: wave 1s infinite ease-in-out;
}

.wave-animation span:nth-child(1) {
  animation-delay: 0s;
}

.wave-animation span:nth-child(2) {
  animation-delay: 0.2s;
}

.wave-animation span:nth-child(3) {
  animation-delay: 0.4s;
}

.wave-animation span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes wave {
  
  0%,
  100% {
    height: 6px;
  }
  
  50% {
    height: 24px;
  }
}

.paused span {
  animation-play-state: paused;
}