body {
  background:#020617;
  font-family:Arial;
  color:#fff;
}

.container {
  max-width:400px;
  margin:60px auto;
  padding:20px;
  background:#0f172a;
  border-radius:12px;
  text-align:center;
}

input, select, button {
  width:100%;
  padding:12px;
  margin-top:10px;
  border-radius:8px;
  border:none;
}

button {
  background:linear-gradient(90deg,#22c55e,#38bdf8,#6366f1);
  color:#000;
  font-weight:bold;
  cursor:pointer;
}

/* Progress */
.progress {
  margin-top:20px;
  background:#1e293b;
  border-radius:10px;
  overflow:hidden;
  position:relative;
  height:14px;
}

.bar {
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#22c55e,#facc15,#fb7185);
  transition:width 0.4s;
}

#percent {
  font-size:12px;
  margin-top:5px;
  display:block;
}

/* Result */
#result img {
  width:120px;
  margin-top:20px;
  border-radius:10px;
  border:2px solid #38bdf8;
}

#download {
  display:block;
  margin-top:15px;
  padding:14px;
  background:linear-gradient(90deg,#facc15,#fb7185,#38bdf8);
  color:#000;
  text-decoration:none;
  font-weight:bold;
  border-radius:12px;
}

.hidden { display:none; }
.file-input {
  display: none;
}

.file-upload-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  cursor: pointer;
  width: fit-content;

  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #ffffff;

  box-shadow: 0 8px 30px rgba(99,102,241,0.45);
  transition: all 0.3s ease;
  user-select: none;
}

.file-upload-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(34,211,238,0.6);
}

.file-upload-btn .icon {
  font-size: 34px;
}

.file-upload-btn .text strong {
  font-size: 16px;
}

.file-upload-btn .text small {
  font-size: 12px;
  opacity: 0.9;
}
.features {
  text-align: center;
  color: #ffffff; /* Or your theme color */
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.features p {
  margin: 8px 0; /* spacing between items */
}
@media (max-width: 480px) {
  body {
    font-size: 18px; /* Bigger base font */
  }

  h1 {
    font-size: 24px; /* Zoom in headings */
  }

  h2 {
    font-size: 20px;
  }

  label[for="video"], select, button {
    font-size: 16px;
    padding: 16px;
  }

  .features p {
    font-size: 16px;
  }
}

