/* [project]/src/components/Uploader.module.css [app-client] (css) */
.Uploader-module__jiNM0a__uploaderContainer {
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}

.Uploader-module__jiNM0a__dropZone {
  text-align: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #1e293b66;
  border: 2px dashed #fff3;
  border-radius: 20px;
  padding: 4rem 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.Uploader-module__jiNM0a__dropZone:hover {
  border-color: var(--primary);
  background: #3b82f61a;
  box-shadow: 0 0 20px #3b82f633;
}

.Uploader-module__jiNM0a__dropZone.Uploader-module__jiNM0a__dragging {
  border-color: var(--success);
  background: #10b9811a;
  transform: scale(1.02);
  box-shadow: 0 0 30px #10b9814d;
}

.Uploader-module__jiNM0a__fileInput {
  display: none;
}

.Uploader-module__jiNM0a__uploadIcon {
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform .3s;
}

.Uploader-module__jiNM0a__dropZone:hover .Uploader-module__jiNM0a__uploadIcon {
  transform: translateY(-5px);
}

.Uploader-module__jiNM0a__dropText {
  color: var(--foreground);
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.Uploader-module__jiNM0a__subText {
  color: #fff9;
  font-size: .9rem;
}

.Uploader-module__jiNM0a__error {
  border-left: 4px solid var(--error);
  color: #fca5a5;
  background: #ef44441a;
  border-radius: 8px;
  padding: 1rem;
  font-size: .9rem;
  animation: .3s forwards Uploader-module__jiNM0a__slideIn;
}

.Uploader-module__jiNM0a__fileList {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px #0003;
}

.Uploader-module__jiNM0a__fileList h4 {
  color: var(--foreground);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.Uploader-module__jiNM0a__fileList ul {
  flex-direction: column;
  gap: .5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.Uploader-module__jiNM0a__fileItem {
  background: #ffffff0d;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  transition: background .2s;
  display: flex;
}

.Uploader-module__jiNM0a__fileItem:hover {
  background: #ffffff1a;
}

.Uploader-module__jiNM0a__fileName {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 85%;
  font-size: .9rem;
  overflow: hidden;
}

.Uploader-module__jiNM0a__removeBtn {
  color: #ffffff80;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  transition: all .2s;
  display: flex;
}

.Uploader-module__jiNM0a__removeBtn:hover {
  color: var(--error);
  background: #ef44441a;
}

.Uploader-module__jiNM0a__convertBtn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.Uploader-module__jiNM0a__converting {
  background: var(--card-bg);
  color: #ffffffb3;
  box-shadow: none;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.Uploader-module__jiNM0a__spinner {
  margin-right: .5rem;
  animation: 1s linear infinite Uploader-module__jiNM0a__spin;
}

@keyframes Uploader-module__jiNM0a__spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes Uploader-module__jiNM0a__slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/src/app/page.css [app-client] (css) */
.main-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  position: relative;
}

.hero-section {
  text-align: center;
  z-index: 10;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 4rem 2rem;
  display: flex;
}

.title {
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.subtitle {
  color: #ffffffb3;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.uploader-wrapper {
  width: 100%;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=src_2e8507a8._.css.map*/