.VideoDownload_container__NxIs_ {
  min-height: 100vh;
  margin-top: 2rem;
  background-color: #0e0c15;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(to bottom,
        rgba(14, 12, 21, 1) 0%,
        rgba(14, 12, 21, 0.8) 20%,
        rgba(14, 12, 21, 0) 50%,
        rgba(14, 12, 21, 0.8) 80%,
        rgba(14, 12, 21, 1) 100%),
    linear-gradient(to right, #1a1a1a 1px, transparent 1px),
    linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.VideoDownload_container__NxIs_::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
  background: linear-gradient(45deg, 
      rgba(110, 0, 255, 0.3), 
      rgba(255, 0, 0, 0.3), 
      rgba(110, 0, 255, 0.3));
  filter: blur(80px);
  opacity: 0.3;
  animation: VideoDownload_gradientAnimation___fRxI 10s ease infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes VideoDownload_gradientAnimation___fRxI {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.VideoDownload_title__sHPhD {
  text-align: center;
  max-width: 56rem;
  margin-bottom: 1.5rem;
}

.VideoDownload_heading__ijnLQ {
  font-family: 'BlackFont', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(to right, white, #afafaf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .VideoDownload_heading__ijnLQ {
    font-size: 3.75rem;
  }
}

.VideoDownload_inputContainer__z2_Me {
  width: 100%;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.VideoDownload_inputWrapper__artW8 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.VideoDownload_inputGroup__h_ayY {
  position: relative;
  width: 100%;
}

.VideoDownload_linkIcon__c7zbE {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #9ca3af;
  pointer-events: none;
}

.VideoDownload_input__o71_Y {
  width: 100%;
  padding: 1rem 1.5rem 1rem 48px;
  border-radius: 0.75rem;
  background-color: #000000;
  border: 1px solid #374151;
  color: white;
  font-size: 1.125rem;
  transition: border-color 0.2s;
}

.VideoDownload_input__o71_Y:focus {
  outline: none;
  border-color: #7c3aed;
}

.VideoDownload_button__4y63K {
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 10px;
  color: white;
  background-color: black;
  padding: 15px 40px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: 'BlackFont', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.VideoDownload_button__4y63K::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(to right, #3187C4, #DB51DD);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.VideoDownload_button__4y63K:hover {
  background-color: #1a1a1a;
  color: white;
  box-shadow: 0 0 10px rgba(49, 135, 196, 0.3),
              0 0 20px rgba(219, 81, 221, 0.3),
              0 0 30px rgba(49, 135, 196, 0.2),
              0 0 40px rgba(219, 81, 221, 0.2);
  animation: VideoDownload_bounce__jv_0G 0.6s ease;
}

@keyframes VideoDownload_bounce__jv_0G {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (min-width: 768px) {
  .VideoDownload_inputContainer__z2_Me {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .VideoDownload_inputWrapper__artW8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .VideoDownload_button__4y63K {
    width: auto;
    margin-top: 0;
  }
}

.VideoDownload_error__UmXe4 {
  width: 100%;
  max-width: 42rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #ef4444;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.VideoDownload_loading__gLNXb {
  width: 100%;
  max-width: 42rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(49, 135, 196, 0.1);
  border: 1px solid rgba(49, 135, 196, 0.2);
  color: #b0cdef;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.VideoDownload_loading__gLNXb::before {
  content: '';
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(49, 135, 196, 0.3);
  border-top-color: #b0cdef;
  border-radius: 50%;
  animation: VideoDownload_spin__UcQDh 1s linear infinite;
}

@keyframes VideoDownload_spin__UcQDh {
  to {
    transform: rotate(360deg);
  }
}

.VideoDownload_button__4y63K:disabled {
  opacity: 0.7;
  cursor: not-allowed;
} 
