:root {
  --bg: #080b2d;
  --paper: #f7f5ff;
  --panel: rgba(255, 255, 255, 0.96);
  --ink: #17211f;
  --muted: #60706c;
  --line: #ded8f2;
  --teal: #7a16d6;
  --teal-dark: #5010a3;
  --teal-soft: #f0e8ff;
  --cyan: #10d7f2;
  --magenta: #b532a9;
  --amber: #d98a13;
  --amber-soft: #fff2dc;
  --red: #bd3b31;
  --shadow: 0 18px 60px rgba(20, 45, 40, 0.12);
  --radius: 8px;
  color-scheme: light;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 215, 242, 0.24), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(181, 50, 169, 0.35), transparent 32%),
    linear-gradient(180deg, #081044 0%, #120828 48%, #ffffff 100%);
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

img,
canvas {
  max-width: 100%;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.brand-logo-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  color: #ffffff;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.top-actions,
.share-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-button,
.ghost-button,
.ghost-link {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.primary-button {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 121, 111, 0.22);
}

.primary-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.ghost-button {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
}

.ghost-button:hover,
.ghost-link:hover {
  background: var(--paper);
}

.large {
  width: 100%;
  min-height: 50px;
  font-size: 16px;
}

.screen {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 72px;
}

.brand-banner {
  display: block;
  width: min(100%, 760px);
  margin-bottom: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.screen.active {
  display: block;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 150px);
}

.intro-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  color: #ffffff;
}

.intro-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.85;
}

.course-map-preview {
  width: min(100%, 760px);
  max-height: 280px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 112, 0.45);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.course-map-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.intro-points span {
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 800;
  color: var(--teal-dark);
}

.start-panel,
.question-panel,
.progress-panel,
.result-side,
.report-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.start-panel {
  padding: 28px;
}

label {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  height: 46px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 121, 111, 0.12);
}

.profile-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 12px;
}

.privacy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.history-panel {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.history-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.history-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.history-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.history-fields input {
  margin-top: 0;
}

.history-panel .ghost-button {
  width: 100%;
  margin-top: 10px;
}

.history-results {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.history-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 12px;
}

.history-item strong,
.history-item span {
  display: block;
}

.history-item strong {
  color: var(--ink);
  font-size: 13px;
}

.history-item span,
.history-empty {
  color: var(--muted);
  font-size: 12px;
}

.history-empty {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.quiz-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.progress-panel,
.question-panel {
  padding: 24px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.progress-header strong {
  color: var(--teal);
}

.progress-track {
  height: 10px;
  margin: 14px 0 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf0ee;
}

#progressBar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 0.24s ease;
}

.dimension-list {
  display: grid;
  gap: 10px;
}

.dimension-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 13px;
}

.dimension-item.active {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 800;
}

.question-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.question-dimension {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.question-panel h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.28;
  letter-spacing: 0;
}

.question-help {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.scale-options {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.scale-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  text-align: left;
}

.scale-option:hover {
  border-color: var(--teal);
}

.scale-option.selected {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.scale-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #edf3f1;
  color: var(--teal-dark);
  font-weight: 900;
}

.scale-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.scale-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.result-main {
  display: grid;
  gap: 18px;
}

.result-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  padding: 22px;
}

.result-owner {
  margin: 0 0 8px;
  color: #4e5c69;
  font-size: 14px;
  font-weight: 700;
}

.result-heading h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
  color: #101827;
}

.score-badge {
  display: grid;
  min-width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--amber-soft);
  color: var(--ink);
}

.score-badge span {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.score-badge small {
  color: var(--muted);
  font-weight: 800;
}

.result-summary {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #334155;
  padding: 18px 20px;
  font-size: 17px;
  line-height: 1.8;
}

.save-status {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
}

.save-status.success {
  border-color: rgba(8, 121, 111, 0.25);
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.save-status.error {
  border-color: rgba(189, 59, 49, 0.25);
  background: #fff0ee;
  color: var(--red);
}

.triad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.triad-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.triad-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.triad-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.triad-score strong {
  font-size: 30px;
}

.triad-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.profile-snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 16px;
  padding: 16px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.profile-snapshot div {
  min-width: 0;
}

.profile-snapshot span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.profile-snapshot strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}

.report-section {
  box-shadow: none;
  padding: 22px;
}

.report-section h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading-row h2 {
  margin-bottom: 6px;
}

.section-heading-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.insight-grid,
.advice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.advice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-grid h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.training-section {
  overflow: hidden;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.module-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  text-align: left;
}

.module-card:hover,
.module-card.active {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.module-card.recommend-0 {
  border-color: #6d10c6;
  background: linear-gradient(135deg, #54109c 0%, #861ce0 100%);
}

.module-card.recommend-1 {
  border-color: #056b9c;
  background: linear-gradient(135deg, #075985 0%, #0891b2 100%);
}

.module-card.recommend-2 {
  border-color: #b45309;
  background: linear-gradient(135deg, #b45309 0%, #e07a0c 100%);
}

.module-card.active.recommend-0,
.module-card.active.recommend-1,
.module-card.active.recommend-2 {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.75), 0 10px 24px rgba(27, 13, 63, 0.28);
}

.module-card.recommend-0 strong,
.module-card.recommend-1 strong,
.module-card.recommend-2 strong,
.module-card.recommend-0 span,
.module-card.recommend-1 span,
.module-card.recommend-2 span {
  color: #ffffff;
}

.module-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
}

.module-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.module-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(122, 22, 214, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f4edff 100%);
  padding: 18px;
}

.module-detail h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.module-detail p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.module-detail strong {
  color: var(--teal-dark);
  line-height: 1.6;
}

.module-detail img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.result-side {
  position: sticky;
  top: 18px;
  padding: 20px;
}

.radar-wrap {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.dimension-scores {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.score-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.score-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9efed;
}

.score-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.share-actions {
  align-items: stretch;
  flex-direction: column;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 20;
  min-width: 220px;
  transform: translateX(-50%) translateY(20px);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.admin-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 72px;
}

.admin-login,
.admin-dashboard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-login {
  max-width: 520px;
  margin: 52px auto;
  padding: 28px;
}

.admin-login h1,
.admin-heading h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.admin-login p,
.admin-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.admin-dashboard {
  padding: 24px;
}

.ai-settings-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(122, 22, 214, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f4edff 100%);
  padding: 18px;
}

.ai-settings-panel h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 20px;
}

.ai-settings-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.ai-settings-form {
  display: grid;
  grid-template-columns: 180px minmax(220px, 1fr) 180px minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.ai-settings-form label {
  margin-bottom: 0;
}

.ai-settings-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ai-settings-actions button {
  min-height: 46px;
  white-space: nowrap;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.admin-search {
  display: flex;
  min-width: min(460px, 100%);
  gap: 10px;
}

.admin-search input {
  margin-top: 0;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.table-button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--teal-dark);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
}

.empty-cell {
  color: var(--muted);
  text-align: center;
}

.hidden {
  display: none;
}

@media (max-width: 920px) {
  .topbar,
  .result-heading,
  .admin-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .top-actions,
  .admin-search {
    width: 100%;
  }

  .top-actions button,
  .top-actions a,
  .admin-search button {
    flex: 1;
  }

  .intro-grid,
  .quiz-layout,
  .result-layout,
  .triad-grid,
  .insight-grid,
  .advice-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    min-height: 0;
  }

  .result-side {
    position: static;
  }

  .module-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .screen {
    padding: 16px 12px 48px;
  }

  .topbar {
    gap: 14px;
    padding: 14px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .top-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .top-actions button,
  .top-actions a {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
  }

  .intro-copy h1,
  .result-heading h1 {
    font-size: 30px;
  }

  .intro-copy p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.7;
  }

  .brand-banner,
  .course-map-preview {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .intro-points {
    gap: 8px;
    margin-top: 20px;
  }

  .intro-points span {
    width: 100%;
    padding: 10px 12px;
  }

  .start-panel,
  .question-panel,
  .progress-panel,
  .result-side,
  .report-section {
    padding: 18px;
  }

  .history-fields,
  .profile-extra-grid,
  .profile-snapshot,
  .history-item {
    grid-template-columns: 1fr;
  }

  .history-item .ghost-link {
    width: 100%;
    min-height: 40px;
  }

  .quiz-layout {
    gap: 12px;
  }

  .progress-panel {
    padding: 14px 16px;
  }

  .progress-track {
    margin: 10px 0 0;
  }

  .dimension-list {
    display: none;
  }

  .question-panel {
    min-height: 0;
    padding: 18px 14px;
  }

  .question-panel h2 {
    font-size: 22px;
    line-height: 1.38;
  }

  .question-help {
    font-size: 14px;
  }

  .scale-options {
    gap: 10px;
    margin: 22px 0 8px;
  }

  .scale-option {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 58px;
    padding: 10px 12px;
  }

  .score-badge {
    width: 100%;
    height: auto;
    min-height: 94px;
  }

  .result-summary {
    padding: 16px;
    font-size: 15px;
  }

  .triad-card,
  .report-section,
  .result-side {
    padding: 16px;
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .module-card {
    min-height: 96px;
    padding: 12px;
  }

  .module-detail {
    padding: 14px;
  }

  .module-detail img {
    width: min(100%, 220px);
    height: auto;
    aspect-ratio: 1;
    justify-self: center;
  }

  .radar-wrap canvas {
    width: min(100%, 360px);
    height: auto;
  }

  .share-actions button {
    min-height: 46px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    transform: translateY(20px);
  }

  .toast.show {
    transform: translateY(0);
  }

  .admin-main {
    padding: 20px 12px 48px;
  }

  .admin-login,
  .admin-dashboard {
    padding: 18px;
  }

  .ai-settings-panel {
    padding: 14px;
  }

  .ai-settings-form {
    grid-template-columns: 1fr;
  }

  .ai-settings-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-search {
    flex-direction: column;
  }
}

@media print {
  .topbar,
  .share-actions,
  .toast {
    display: none;
  }

  body {
    background: #ffffff;
  }

  .screen {
    display: none;
    padding: 0;
  }

  #resultScreen.active {
    display: block;
  }

  .result-layout {
    grid-template-columns: 1fr;
  }

  .result-side {
    position: static;
    box-shadow: none;
  }
}
