body {
  font-family: "Uncut Sans", sans-serif;
}

.contact-link {
  display: inline-flex;
  overflow: visible;
  padding: 0.25rem;
  border-radius: 9999px;
  transition: all 0.3s;
}

.contact-inner {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 9999px;
  padding: 0.25rem;
  transition: all 0.2s;
}

.contact-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  color: #101010;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s;
}

.contact-link:hover {
  transform: translateY(0px);
}

.contact-link:hover .contact-inner {
  background: linear-gradient(to top, #ececec, #fff);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.07), 0 0 1px rgba(0, 0, 0, 0.05),
    0 3px 3px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.12);
}

.contact-link:hover .contact-button {
  background: linear-gradient(#f4f4f4, #fefefe);
}

.case-link:hover i {
  transform: translate(12px, 0px);
}

#hover-play-text {
  transition: opacity 0.3s ease, color 0.3s ease; /* Smooth transition for opacity and color */
}

.playing-text {
  opacity: 1;
  color: #272727; /* Green or any color you prefer */
}

.default-text {
  opacity: 0.7;
  color: #272727; /* Example default color */
}

.next-btn1:hover {
  background: linear-gradient(#e9e9e9, #e9e9e9 50%, #fff);
  transform: translateY(-2px);
}

.next-btn1:hover .cl-level-3 {
  transition: all 0.2s ease-in-out;
  color: #272727 !important;
  opacity: 92%;
}

.next-btn-container {
  overflow: hidden;
}

.next-btn1:hover .next-btn-container {
  background: linear-gradient(to top, #ececec, #fff);
  /* box-shadow: 0 0 1px rgba(0, 0, 0, 0.07), 0 0 1px rgba(0, 0, 0, 0.05), 
    0 3px 3px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.12);*/
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.02), 0 0 1px rgba(0, 0, 0, 0.02),
    0 3px 3px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.next-btn1:hover .next-btn-content {
  background: linear-gradient(#f4f4f4, #fefefe);
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.spin-pulse {
  animation: spin 2s linear infinite, pulse 1.5s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}
