.common-button {
  background-color: #fe543d;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  align-items: center;
  display: flex;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.common-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.common-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.common-button:hover::before {
  left: 100%;
}

.common-button:hover::after {
  width: 300px;
  height: 300px;
}

.common-button:hover {
  background-color: #c82333;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(254, 84, 61, 0.5);
  letter-spacing: 0.5px;
}

.common-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(254, 84, 61, 0.3);
}

.common-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;

  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: clamp(2.1rem, 5vw, 3rem);
}
.common-content {
  font-size: 1.25rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-variant: justify;
}
.color-black {  
  color: #000000 !important;
}
.color-white {
  color: #ffffff !important;
  font-size: 20px;
}

.justify-text {
  text-align: justify !important;
}
.border-radius {
  border-radius: 40px !important;
}
.border-radius-small {
  border-radius: 25px !important;
}

.arrow-icon {
  margin-left: 10px;
  display: inline-block;
  animation: arrowTimed 1.4s ease-in-out infinite;
}

@keyframes arrowTimed {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  } /* pause */
  40% {
    transform: translateX(10px);
  } /* move */
  60% {
    transform: translateX(10px);
  } /* hold */
  80% {
    transform: translateX(0);
  } /* return */
  100% {
    transform: translateX(0);
  } /* pause */
}

.watch-now {
  position: relative;
  cursor: pointer;
}

/* Play Button Animation */
.watch-now img {
  width: 90px;
  animation: floatPlay 2.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Ripple Effect */
.watch-now::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: ripple 2.5s infinite;
}

/* Text Animation */
.watch-now a {
  margin-top: 12px;
  text-decoration: none;
  animation: textFadeUp 1.2s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* Hover Effect */
.watch-now:hover img {
  transform: scale(1.1);
}

/* Animations */
@keyframes floatPlay {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
