:root {
  --color-bg: #F5F4EE;
  --color-card: #FFFFFF;
  --color-accent: #D97757;
  --color-accent-dark: #A8502F;
  --color-text: #3D3929;
  --color-text-muted: #6B6656;
  --color-border: #E5E1D8;
  --color-error: #C0392B;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--color-bg);
  color: var(--color-text);
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.card {
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

p {
  line-height: 1.5;
  color: var(--color-text);
}

a {
  color: var(--color-accent-dark);
}

.subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
}

.dropzone {
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  padding: 3rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.dropzone:hover,
.dropzone.dropzone-active {
  border-color: var(--color-accent);
  background-color: rgba(217, 119, 87, 0.06);
}

.dropzone-link {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.status-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.status-row {
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  background: var(--color-bg);
  font-size: 0.9rem;
}

.status-row.status-error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-error);
}

.footer {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

.footer-sep {
  margin: 0 0.5rem;
}
