* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf6f0;
  font-family: 'Georgia', serif;
  color: #2b2620;
  padding: 24px;
}
main {
  max-width: 420px;
  width: 100%;
  text-align: center;
}
h1 {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.subtitle {
  color: #6b6255;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.dropzone {
  display: block;
  border: 2px dashed #c9a876;
  border-radius: 12px;
  padding: 48px 16px;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
}
.dropzone:active { background: #f5eee1; }
.dropzone input { display: none; }
#dzText { font-size: 1.1rem; color: #4a3f2f; }
.hidden { display: none; }
#progressWrap {
  height: 6px;
  background: #eee0c8;
  border-radius: 3px;
  margin-top: 16px;
  overflow: hidden;
}
#progressBar {
  height: 100%;
  width: 0%;
  background: #c9a876;
  transition: width 0.2s;
}
#status { margin-top: 16px; color: #7a6a4f; font-size: 0.95rem; }
.gallery-link {
  display: inline-block;
  margin-top: 40px;
  color: #a68a5b;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid #c9a876;
}
