body {
  font-family: 'Noto Sans SC', 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.app-shell {
  flex: 1 1 auto;
}

.glass {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.6), rgba(15, 23, 42, 0.75));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 28px 80px -32px rgba(15, 23, 42, 0.75);
}

.progress-step {
  position: relative;
  padding-left: 36px;
}

.progress-step::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(148, 163, 184, 0.25);
}

.progress-step:first-child::before {
  top: 16px;
}

.progress-step:last-child::before {
  bottom: 16px;
}

.badge-primary {
  background: linear-gradient(135deg, #22d3ee, #818cf8);
  color: #0f172a;
  font-weight: 700;
}

.badge-secondary {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.35), rgba(129, 140, 248, 0.35));
  color: #e2e8f0;
  font-weight: 600;
}

.card-overlay {
  position: relative;
  overflow: hidden;
}

.card-overlay::after {
  content: '';
  position: absolute;
  inset: -40%;
  opacity: 0.18;
  background: conic-gradient(from 0deg, rgba(45, 212, 191, 0.8), rgba(14, 165, 233, 0.6), rgba(129, 140, 248, 0.75), rgba(59, 130, 246, 0.9), rgba(45, 212, 191, 0.8));
  filter: blur(60px);
  transform: rotate(15deg);
}

.scene-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 24px;
  transition: border 200ms ease, transform 200ms ease;
}

.scene-card:hover {
  border-color: rgba(45, 212, 191, 0.55);
  transform: translateY(-2px);
}

.scene-card img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 320px;
}

.scene-card textarea {
  background: rgba(2, 6, 23, 0.6);
  color: #e2e8f0;
}

textarea.editable-field {
  transition: box-shadow 0.2s ease;
}

textarea.editable-field:focus {
  box-shadow: 0 0 0 2px rgba(94, 234, 212, 0.35);
}

.download-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
