:root {
  --paper: #f6f1e8;
  --paper-deep: #efe4d2;
  --surface: #fffaf1;
  --surface-strong: #fffdf8;
  --ink: #1c252f;
  --muted: #69717b;
  --line: #e1d4c2;
  --line-strong: #cdbb9f;
  --cinnabar: #a8432e;
  --cinnabar-deep: #7f2f23;
  --jade: #2d736b;
  --jade-soft: #e0f0ea;
  --gold: #c79b4c;
  --shadow: 0 18px 48px rgba(41, 32, 22, 0.12);
  --nav-height: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(246, 241, 232, 0.96)),
    radial-gradient(circle at 20% 0%, rgba(199, 155, 76, 0.18), transparent 34%),
    var(--paper);
  font-family:
    "Noto Serif SC",
    "Source Han Serif SC",
    "Microsoft YaHei",
    "PingFang SC",
    system-ui,
    sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

.desktop-blocker {
  display: none;
}

.app-shell {
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.92), rgba(246, 241, 232, 0.98)),
    var(--paper);
}

.screen {
  min-height: 100svh;
  padding: calc(16px + env(safe-area-inset-top)) 16px calc(var(--nav-height) + 20px + env(safe-area-inset-bottom));
}

.login-screen {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(26px + env(safe-area-inset-top)) 18px calc(18px + env(safe-area-inset-bottom));
}

.login-hero {
  padding-top: 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-seal {
  width: 48px;
  height: 48px;
  padding: 4px;
  border: 1px solid rgba(168, 67, 46, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.brand-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
}

.brand-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.login-note {
  margin-top: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #4d5662;
  font-size: 0.92rem;
}

.login-form,
.modal-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span,
.form-label {
  color: #44505b;
  font-size: 0.84rem;
  font-weight: 700;
}

.input,
.select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  padding: 0 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(45, 115, 107, 0.75);
  box-shadow: 0 0 0 4px rgba(45, 115, 107, 0.12);
  background: #fffefb;
}

.textarea {
  width: 100%;
  min-height: 90px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  padding: 12px 14px;
}

.helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.demo-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.quiet-btn,
.danger-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease,
    border-color 140ms ease;
}

.primary-btn {
  background: var(--ink);
  color: #fffaf1;
  box-shadow: 0 10px 24px rgba(28, 37, 47, 0.22);
}

.primary-btn:active,
.secondary-btn:active,
.ghost-btn:active,
.quiet-btn:active,
.danger-btn:active,
.nav-btn:active,
.coin-token:active,
.chip:active {
  transform: translateY(1px);
}

.secondary-btn {
  border: 1px solid rgba(168, 67, 46, 0.35);
  background: #fff4e6;
  color: var(--cinnabar-deep);
}

.ghost-btn {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.8);
  color: #33404c;
}

.quiet-btn {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--jade);
  font-size: 0.84rem;
}

.danger-btn {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(168, 67, 46, 0.25);
  background: rgba(168, 67, 46, 0.08);
  color: var(--cinnabar-deep);
  font-size: 0.84rem;
}

.icon-btn {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
}

.login-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.login-foot {
  display: flex;
  justify-content: center;
  color: var(--muted);
  font-size: 0.76rem;
}

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: calc(-16px - env(safe-area-inset-top)) -16px 12px;
  padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
  border-bottom: 1px solid rgba(225, 212, 194, 0.72);
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(18px);
}

.top-title {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.top-title strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-title span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.role-badge,
.status-badge,
.moving-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 0.72rem;
  font-weight: 800;
}

.role-badge {
  background: rgba(45, 115, 107, 0.11);
  color: var(--jade);
}

.status-badge {
  background: rgba(105, 113, 123, 0.1);
  color: #53606a;
}

.status-badge.is-on {
  background: rgba(45, 115, 107, 0.12);
  color: var(--jade);
}

.status-badge.is-off {
  background: rgba(168, 67, 46, 0.1);
  color: var(--cinnabar-deep);
}

.hero-panel,
.tool-panel,
.surface-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: var(--shadow);
}

.detail-panel {
  padding: 14px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(168, 67, 46, 0.09), transparent 35%),
    linear-gradient(315deg, rgba(45, 115, 107, 0.08), transparent 45%);
  content: "";
}

.hero-content {
  position: relative;
  display: grid;
  gap: 14px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(168, 67, 46, 0.22);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 250, 241, 0.7);
  color: var(--cinnabar-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-title {
  margin: 0;
  font-size: 1.62rem;
  line-height: 1.25;
}

.hero-copy {
  margin: 0;
  color: #4c5662;
  font-size: 0.94rem;
}

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

.chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: #4a5360;
  font-size: 0.86rem;
  font-weight: 800;
}

.chip.is-active {
  border-color: rgba(45, 115, 107, 0.34);
  background: var(--jade-soft);
  color: #1b5b54;
}

.section {
  margin-top: 16px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.section-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.section-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.coin-method-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ec;
}

.coin-method-image img {
  width: 100%;
}

.tool-panel {
  padding: 14px;
}

.cast-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.progress-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(28, 37, 47, 0.08);
  color: #3e4853;
  font-size: 0.8rem;
  font-weight: 800;
}

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

.coin-token {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
}

.coin-token img {
  width: 56px;
  height: 56px;
}

.coin-token strong {
  margin-top: 6px;
  font-size: 0.9rem;
}

.coin-token span {
  color: var(--muted);
  font-size: 0.72rem;
}

.coin-token[aria-pressed="true"] {
  border-color: rgba(199, 155, 76, 0.78);
  background: #fff6df;
  box-shadow: inset 0 0 0 1px rgba(199, 155, 76, 0.2);
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 12px 0;
}

.score-item {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.7);
  padding: 6px;
  text-align: center;
}

.score-item strong {
  display: block;
  font-size: 0.8rem;
}

.score-item span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.button-row {
  display: flex;
  gap: 10px;
}

.button-row.is-spaced {
  margin-top: 10px;
}

.button-row > * {
  flex: 1;
}

.line-board {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.line-slot {
  display: grid;
  grid-template-columns: 48px 1fr 58px;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-bottom: 1px solid rgba(225, 212, 194, 0.74);
}

.line-slot:last-child {
  border-bottom: 0;
}

.line-slot.is-current {
  border-radius: 8px;
  background: rgba(45, 115, 107, 0.08);
  padding-right: 8px;
  padding-left: 8px;
}

.line-slot.is-filled .line-label {
  color: var(--ink);
}

.line-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.line-meta {
  color: #3c4652;
  font-size: 0.78rem;
  text-align: right;
}

.hex-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
}

.hex-line::before,
.hex-line::after {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.hex-line.yang::before {
  width: 100%;
}

.hex-line.yang::after {
  display: none;
}

.hex-line.yin {
  justify-content: space-between;
}

.hex-line.yin::before,
.hex-line.yin::after {
  width: 42%;
}

.hex-line.empty::before {
  width: 100%;
  background: transparent;
  border-top: 2px dashed var(--line-strong);
}

.hex-line.empty::after {
  display: none;
}

.moving-dot {
  position: absolute;
  right: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinnabar);
}

.result-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(168, 67, 46, 0.22);
  border-radius: 8px;
  background: #fff8ec;
  padding: 14px;
}

.result-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.result-card p {
  margin: 0;
  color: #4c5662;
}

.search-bar {
  position: relative;
}

.search-bar input {
  padding-left: 42px;
}

.search-bar::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 15px;
  height: 15px;
  border: 2px solid #7b858d;
  border-radius: 50%;
  content: "";
  transform: translateY(-56%);
}

.search-bar::after {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: #7b858d;
  content: "";
  transform: rotate(45deg);
}

.filter-tabs,
.detail-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar,
.detail-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: #4a5360;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
}

.tab-btn.is-active {
  border-color: rgba(168, 67, 46, 0.32);
  background: rgba(168, 67, 46, 0.1);
  color: var(--cinnabar-deep);
}

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

.list-row,
.record-row,
.user-row {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  padding: 12px;
  text-align: left;
}

.list-row {
  grid-template-columns: 44px 1fr auto;
  align-items: center;
}

.list-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(168, 67, 46, 0.1);
  color: var(--cinnabar-deep);
  font-weight: 900;
}

.list-main {
  min-width: 0;
}

.list-main strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-main span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chev {
  color: #8c8172;
  font-size: 1.1rem;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 126px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.detail-name {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.16;
}

.detail-keywords {
  margin: 8px 0 0;
  color: var(--cinnabar-deep);
  font-weight: 800;
}

.hexagram-figure {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.7);
  padding: 14px 18px;
}

.quote {
  margin: 14px 0 0;
  border-left: 4px solid var(--cinnabar);
  border-radius: 0 8px 8px 0;
  background: rgba(168, 67, 46, 0.08);
  padding: 12px 12px 12px 14px;
  color: #3b2e28;
  font-weight: 800;
}

.content-block {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.plain-copy {
  margin: 0;
  color: #44505b;
  font-size: 0.94rem;
}

.scene-grid {
  display: grid;
  gap: 10px;
}

.scene-item,
.timeline-row,
.question-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  padding: 12px;
}

.scene-item strong,
.timeline-row strong,
.question-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.9rem;
}

.scene-item p,
.timeline-row p,
.question-row p {
  margin: 0;
  color: #4f5964;
  font-size: 0.86rem;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: start;
}

.timeline-index {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--jade-soft);
  color: var(--jade);
  font-weight: 900;
}

.sticky-actions {
  position: fixed;
  z-index: 20;
  right: 16px;
  bottom: calc(var(--nav-height) + 14px + env(safe-area-inset-bottom));
  left: 16px;
  display: flex;
  gap: 10px;
  max-width: 448px;
  margin: 0 auto;
}

.empty-state {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.record-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.record-row strong,
.user-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.record-row span,
.user-row span {
  color: var(--muted);
  font-size: 0.78rem;
}

.user-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.admin-tab {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  color: #4c5662;
  font-weight: 800;
}

.admin-tab.is-active {
  border-color: rgba(45, 115, 107, 0.32);
  background: var(--jade-soft);
  color: var(--jade);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  padding: 10px;
}

.stat-item strong {
  display: block;
  font-size: 1.18rem;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.72rem;
}

.profile-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  padding: 14px;
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fffaf1;
  font-weight: 900;
}

.profile-head strong {
  display: block;
}

.profile-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.bottom-nav {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(225, 212, 194, 0.82);
  background: rgba(255, 250, 241, 0.94);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  backdrop-filter: blur(18px);
}

.nav-btn {
  display: grid;
  min-width: 0;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-btn svg {
  width: 21px;
  height: 21px;
  margin-bottom: 3px;
}

.nav-btn.is-active {
  background: rgba(168, 67, 46, 0.1);
  color: var(--cinnabar-deep);
}

.modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: end center;
  background: rgba(28, 37, 47, 0.32);
  padding: 16px;
}

.modal {
  width: 100%;
  max-width: 448px;
  max-height: calc(100svh - 32px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 26px 80px rgba(28, 37, 47, 0.28);
  padding: 16px;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.decision-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(168, 67, 46, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(255, 253, 248, 0.98));
  padding: 14px;
}

.decision-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.decision-card p {
  margin: 0;
  color: #47535f;
}

.toast {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: calc(var(--nav-height) + 20px + env(safe-area-inset-bottom));
  left: 18px;
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(28, 37, 47, 0.92);
  color: #fffaf1;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(28, 37, 47, 0.28);
}

.hidden {
  display: none !important;
}

@media (max-width: 359px) {
  .screen {
    padding-right: 12px;
    padding-left: 12px;
  }

  .scenario-grid,
  .score-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 760px), (hover: hover) and (pointer: fine) {
  body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.8), rgba(239, 228, 210, 0.92)),
      var(--paper-deep);
  }

  .app-shell {
    display: none;
  }

  .desktop-blocker {
    display: grid;
    width: min(420px, calc(100vw - 48px));
    gap: 12px;
    justify-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.92);
    padding: 34px 28px;
    text-align: center;
    box-shadow: var(--shadow);
  }

  .desktop-mark {
    width: 72px;
    height: 72px;
    border-radius: 8px;
  }

  .desktop-mark img {
    width: 100%;
    height: 100%;
  }

  .desktop-blocker h1 {
    margin: 4px 0 0;
    font-size: 2rem;
    line-height: 1.12;
  }

  .desktop-blocker p {
    margin: 0;
    color: var(--cinnabar-deep);
    font-size: 1.1rem;
    font-weight: 900;
  }

  .desktop-blocker span {
    color: var(--muted);
    font-size: 0.92rem;
  }
}
