section {
  padding: 80px 0;
}

.fs-16 {
  font-size: 16px !important;
}

.p-6 {
  padding: 30px !important;
}

section h2{
font-weight: 800;
font-size: 50px;
line-height: 65px;
letter-spacing: 0%;

}

.bg-dark-card {
  background-color: var(--color-bg) !important;
}

.justify-between {
  justify-content: space-between !important;
}

.gradient-text {
  background: linear-gradient(98.5deg, #fccf0c 9.36%, #e09900 93.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.input {
  width: 551px;
  height: 70px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(63, 63, 63, 1);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 0 20px;
  color: #ffffff;
}
.input:hover {
  border: 1px solid rgba(103, 103, 103, 1);
}
.input:focus {
  border: 1px solid rgba(195, 195, 195, 1);
  outline: none;
}

.input::placeholder {
  color: var(--color-text);
}

/* Button */

.spin-btn {
  position: relative;
  display: inline-flex;
  height: 60px;
  /* width: 283px; */
  padding: 1.5px;
  overflow: hidden;
  border-radius: 88px;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.1s ease;
}

/* ✅ default spinning stroke */
.spin-bg {
  position: absolute;
  inset: -1000%;
  background: conic-gradient(
    from 90deg at 50% 50%,
    #e09900 0%,
    #a5a5a5 34.62%,
    #e09900 100%
  );
  animation: spin 2s linear infinite;
}

/* ✅ pause animation + switch to yellow stroke */
.spin-btn:hover .spin-bg {
  animation-play-state: paused;
  background: conic-gradient(from 90deg at 50% 50%, #e09900 0%, #e09900 100%);
}

.btn-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: rgba(252, 207, 12, 1);
  font-size: 30px;
  font-weight: 500;
  border-radius: 88px;
  padding: 0 28px;
  backdrop-filter: blur(12px);
}

/* ✅ active state — remove border & spin */
.spin-btn:active .spin-bg {
  display: none;
}

/* solid background on click */
.spin-btn:active .btn-content {
  background: var(--color-bg);
  border-radius: 88px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spin-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}


.wid-container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}
