* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #0f172a;
  color: #e5e7eb;
}

.app {
  max-width: 800px;
  margin: 40px auto;
  padding: 24px;
  background: #020617;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #1e293b;
}

h1 {
  margin-top: 0;
  font-size: 2rem;
}

.tagline {
  color: #9ca3af;
  margin-bottom: 16px;
}

label {
  display: block;
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #1f2933;
  background: #020617;
  color: #e5e7eb;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s;
}

button:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.4);
}

#status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #a5b4fc;
}

pre {
  background: #020617;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
  white-space: pre-wrap;
  word-wrap: break-word;
  border: 1px solid #1e293b;
}