<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: #2196F3;
  --hover-color: #1976D2;
}

body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 20px;
  background: #f5f5f5;
}

.app-intro {
  background: white;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.app-intro h1 {
  color: #333;
  margin: 0 0 15px 0;
  font-size: 1.8em;
}

.app-intro p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.controls {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

input, select, button {
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

button {
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: var(--hover-color);
}

.image-container {
  background: white;
  margin: 20px 0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  box-sizing: border-box;
}

.preview-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  touch-action: none;
}

.preview-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.crop-overlay {
  position: absolute;
  border: 2px solid var(--primary-color);
  background: rgba(33, 150, 243, 0.15);
  cursor: move;
  box-sizing: border-box;
}

.resize-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  bottom: -10px;
  right: -10px;
  cursor: nwse-resize;
  touch-action: none;
}

.progress-container {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0;
}

.progress-bar {
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.download-link {
  display: block;
  margin-top: 10px;
  color: var(--primary-color);
  text-decoration: none;
}

footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 1em;
}

@media (min-width: 768px) {
  .controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  button {
    grid-column: span 2;
  }
}
</pre></body></html>