@font-face{
  font-family:"Hero New";
  src: url("/static/fonts/HeroNew-Regular.otf") format("opentype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

:root{
  --purple:#88007C;
  --red:#EE143E;
  --blue:#4092FB;
  --pink:#CC00B9;
  --black:#000000;
  --bg:#0b0b0b;
  --text:#f2f2f2;
  --muted:#b9b9b9;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1000px 400px at 20% 0%,
              rgba(136,0,124,.25), transparent 60%),
             radial-gradient(800px 300px at 80% 10%,
              rgba(64,146,251,.2), transparent 60%),
             linear-gradient(180deg, #0b0b0b, #0f0f10 60%, #0b0b0b);
  color:var(--text);
  font-family:"Hero New", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.wrap{
  max-width:720px;
  margin:8vh auto;
  padding:24px;
  text-align:center;
}

h1{
  margin:0 0 28px;
  font-weight:400;
  letter-spacing:.2px;
  font-size:clamp(28px, 5vw, 48px);
  color:#fff;
}

form{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
}

.dropzone{
  position:relative;
  width:100%;
  border:2px dashed rgba(255,255,255,.2);
  border-radius:14px;
  padding:28px;
  cursor:pointer;
  transition:border-color .2s ease, background-color .2s ease;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.dropzone input[type="file"]{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:pointer;
}
.dz-text{
  display:block;
  color:var(--muted);
  pointer-events:none;
}
.dz-ready{
  display:none;
  color:#1db954;
  font-weight:500;
  pointer-events:none;
}
.file-selected .dz-text{
  display:none;
}
.file-selected .dz-ready{
  display:block;
}

/* Button with hover/click effects */
button{
  appearance:none;
  border:none;
  border-radius:12px;
  padding:14px 20px;
  font-size:16px;
  font-family:inherit;
  color:white;
  background: linear-gradient(90deg, var(--red), var(--pink));
  background-size: 200% 100%;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(238,20,62,.25);
  transition: transform .06s ease, background-position .3s ease;
}
button:hover{
  transform:translateY(-1px) scale(1.02);
  background-position:100% 0;
}
button:active{
  transform:translateY(1px) scale(.98);
}
button:disabled{
  opacity:.6;
  cursor:progress;
}

.status{
  min-height:1em;
  color:var(--muted);
}

footer{
  margin-top:24px;
  color:var(--muted);
  font-size:13px;
}
