
/* extracted from <style> tag */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #333;
}
h1 {
  text-align: center;
  padding: 2rem 1rem 1rem;
  color: #4a148c;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}
.drop-area {
  border: 3px dashed #8e24aa;
  border-radius: 10px;
  background: #f3e5f5;
  aspect-ratio: 4/3;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}
.drop-area.active {
  box-shadow: 0 0 20px #ab47bc;
  background: #e1bee7;
}
.drop-area input {
  display: none;
}
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}
select, input[type="number"], input[type="range"], button, input[type="text"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}
button {
  background: #7b1fa2;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #6a1b9a;
}
.preview {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}
.preview img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.progress-container {
  margin-top: 1rem;
}
.progress-bar {
  height: 10px;
  background: #c158dc;
  width: 0%;
  border-radius: 10px;
  transition: width 0.4s ease;
}
.messages {
  margin-top: 1rem;
  color: #2e7d32;
  font-weight: bold;
}
.stats {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #444;
}
.share-buttons {
  margin-top: 2rem;
  text-align: center;
}
.share-buttons button {
  margin: 0.5rem;
  background: #03a9f4;
}
.share-buttons button.whatsapp { background: #25D366; }
.share-buttons button.facebook { background: #4267B2; }
.share-buttons button.twitter { background: #1DA1F2; }
@media (max-width: 600px) {
  .preview {
    flex-direction: column;
  }
}
