:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f6f7fb;
  color: #1b1c20;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.banner {
  background: #fff7d1;
  color: #5f4d00;
  padding: 8px 16px;
  text-align: center;
  font-size: 14px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 16px 48px;
}

.header {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

h1 {
  font-size: 24px;
  margin: 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(16, 16, 29, 0.08);
  display: grid;
  gap: 12px;
}

.cover,
.result-image {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e6e8f0;
}

.result-image {
  aspect-ratio: 4 / 3;
}

button {
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
}

button.primary {
  background: #5b6cff;
  color: #fff;
}

button.secondary {
  background: #f1f2f8;
  color: #1b1c20;
}

button.option {
  background: #f1f2f8;
  text-align: left;
  width: 100%;
}

button.option.selected {
  background: #dde1ff;
  border: 1px solid #5b6cff;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.muted {
  color: #5f6472;
}

.progress {
  font-size: 14px;
  color: #5f6472;
}

.options {
  display: grid;
  gap: 8px;
}

.nav,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.result-title {
  font-weight: 600;
}
