body {
  background: #0f172a;
  font-family: Arial;
  color: white;
  margin: 0;
}

.container {
  width: 800px;
  margin: 40px auto;
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.top {
  display: none;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dropZone {
  border: 2px dashed #6b7280;
  padding: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.dropZone:hover {
  background: #374151;
}

.progress {
  background: #374151;
  height: 8px;
  border-radius: 10px;
  margin-top: 10px;
}

.bar {
  height: 8px;
  width: 0%;
  background: #22c55e;
  border-radius: 10px;
}

.info {
  margin-top: 10px;
  font-size: 13px;
  color: #9ca3af;
}

button {
  margin-top: 10px;
  padding: 6px 12px;
  background: #6b7280;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

#result {
  margin-top: 20px;
}

.linkBox {
  background: #1f2937;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyBtn {
  background: #22c55e;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  color: white;
  cursor: pointer;
}
#resetBtn {
  margin-top: 20px;
  padding: 16px 35px;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 12px;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
#infoBox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(30,41,59,0.9);
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 600px) {
  #infoBox {
    top: 10px;
    bottom: auto;
    right: 10px;
    font-size: 12px;
    padding: 8px;
  }
}