:root {
  --ink: #2C1810;
  --ink-light: #5C3D2E;
  --parchment: #F5EDD6;
  --parchment-dark: #E8D9B4;
  --parchment-shadow: #D4C49A;
  --red: #C0392B;
  --red-light: #E8715C;
  --gold: #B8860B;
  --gold-light: #DAA520;
  --teal: #1B6B6B;
  --teal-light: #2E9E9E;
  --stamp-red: #8B1A1A;
  --bg: #F0E6C8;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(184,134,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,26,26,0.05) 0%, transparent 50%);
  font-family: 'Noto Serif SC', serif;
  color: var(--ink);
  min-height: 100vh;
  padding-bottom: 2rem;
}

/* ── HEADER ── */
.header {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  border-bottom: 2px solid var(--parchment-shadow);
  background: linear-gradient(180deg, var(--parchment-dark) 0%, var(--bg) 100%);
}
.header::before, .header::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  width: 3px;
  height: 60%;
  background: var(--gold);
  border-radius: 2px;
}
.header::before { left: 1rem; }
.header::after { right: 1rem; }

.title-main {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.12);
}
.title-sub {
  font-size: 0.75rem;
  color: var(--ink-light);
  letter-spacing: 0.25em;
  margin-top: 0.25rem;
}
.stars-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-light);
}
.star-count {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.4rem;
  color: var(--gold);
}
.star-icon { font-size: 1rem; color: var(--gold-light); }

/* ── PROGRESS BAR ── */
.progress-wrap {
  padding: 0.75rem 1.25rem 0.5rem;
  background: var(--parchment);
  border-bottom: 1px solid var(--parchment-shadow);
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--ink-light);
  margin-bottom: 0.3rem;
  letter-spacing: 0.08em;
}
.progress-bar {
  height: 8px;
  background: var(--parchment-shadow);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 100%);
  border-radius: 4px;
  transition: width 0.6s ease;
}

/* ── DAY TABS ── */
.day-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.75rem 1rem 0;
  gap: 0.5rem;
  background: var(--parchment);
}
.day-tabs::-webkit-scrollbar { display: none; }
.day-tab {
  flex-shrink: 0;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1.5px solid var(--parchment-shadow);
  background: transparent;
  font-family: 'Noto Serif SC', serif;
  font-size: 0.75rem;
  color: var(--ink-light);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.day-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--parchment);
}

/* ── MAIN CONTENT ── */
.content { padding: 1rem; }

/* ── SPOT CARD ── */
.spot-card {
  position: relative;
  background: var(--parchment);
  border: 1.5px solid var(--parchment-shadow);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 2px 3px 0 var(--parchment-shadow);
}
.spot-card.completed {
  opacity: 0.85;
}
.spot-card.completed::after {
  content: '已完成';
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--stamp-red);
  color: #FFE4C4;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 0.9rem;
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  border: 1.5px solid rgba(139,26,26,0.4);
  transform: rotate(8deg);
  letter-spacing: 0.1em;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px dashed var(--parchment-shadow);
}
.card-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.card-meta { flex: 1; min-width: 0; }
.card-name {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.35rem;
}
.tag {
  font-size: 0.65rem;
  padding: 0.1rem 0.45rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.tag-hist { background: rgba(176,84,11,0.12); color: #7A3B06; border: 1px solid rgba(176,84,11,0.25); }
.tag-food { background: rgba(192,57,43,0.1); color: #7B1A10; border: 1px solid rgba(192,57,43,0.2); }
.tag-fun  { background: rgba(27,107,107,0.1); color: #0D4A4A; border: 1px solid rgba(27,107,107,0.2); }
.tag-tip  { background: rgba(184,134,11,0.1); color: #6B4D00; border: 1px solid rgba(184,134,11,0.2); }

.card-body { padding: 0.75rem 1rem; }

/* 背景故事 */
.story-box {
  background: rgba(0,0,0,0.03);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 0 2px 2px 0;
}
.story-title {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.story-text {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* 游戏任务 */
.mission-box {
  background: rgba(192,57,43,0.05);
  border: 1.5px solid rgba(192,57,43,0.2);
  border-radius: 3px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.75rem;
}
.mission-title {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.mission-icon { font-size: 0.85rem; }
.mission-list { list-style: none; }
.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.5;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s;
}
.mission-item:hover { background: rgba(192,57,43,0.05); }
.mission-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--red);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.7rem;
  color: white;
}
.mission-item.done .mission-check {
  background: var(--teal);
  border-color: var(--teal);
}
.mission-item.done .mission-check::after { content: '✓'; }
.mission-item.done .mission-text { text-decoration: line-through; color: var(--ink-light); }

/* 互动问题 */
.question-box {
  background: rgba(27,107,107,0.06);
  border: 1.5px solid rgba(27,107,107,0.2);
  border-radius: 3px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.75rem;
}
.question-title {
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.question-text {
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
}
.question-hint {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: var(--teal);
}

/* 实用信息 */
.info-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--ink-light);
  padding: 0.2rem 0;
}
.info-icon { font-size: 0.8rem; flex-shrink: 0; }

/* 完成按钮 */
.complete-btn {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.65rem;
  background: var(--ink);
  color: var(--parchment);
  border: none;
  border-radius: 3px;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.2s;
}
.complete-btn:hover { background: var(--ink-light); }
.complete-btn.done {
  background: var(--teal);
  cursor: default;
}

/* ── 美食卡 ── */
.food-section {
  margin-top: 1.25rem;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--parchment-shadow);
}
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.food-card {
  background: var(--parchment);
  border: 1.5px solid var(--parchment-shadow);
  border-radius: 3px;
  padding: 0.65rem;
  box-shadow: 1px 2px 0 var(--parchment-shadow);
  position: relative;
  overflow: hidden;
}
.food-card.locked::after {
  content: '🔒';
  position: absolute;
  inset: 0;
  background: rgba(245,237,214,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.food-emoji { font-size: 1.5rem; margin-bottom: 0.3rem; }
.food-name {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.food-desc {
  font-size: 0.68rem;
  color: var(--ink-light);
  line-height: 1.5;
}
.food-unlock {
  margin-top: 0.3rem;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── 印章收集 ── */
.stamp-section {
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, var(--parchment-dark) 0%, var(--parchment) 100%);
  border-top: 2px solid var(--parchment-shadow);
  border-bottom: 2px solid var(--parchment-shadow);
  margin: 0.5rem 0;
}
.stamp-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.5rem;
  color: var(--stamp-red);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.stamp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.stamp {
  width: 90px;
  height: 90px;
  border: 3px solid var(--parchment-shadow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--parchment-shadow);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  background: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-family: 'Ma Shan Zheng', cursive;
}
.stamp.earned {
  border-color: var(--stamp-red);
  color: var(--stamp-red);
  background: rgba(139,26,26,0.08);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.18), inset 0 0 0 2px rgba(139,26,26,0.12);
}
.stamp:hover {
  transform: scale(1.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(184,134,11,0.4);
}
.stamp.earned:hover {
  border-color: var(--stamp-red);
  box-shadow: 0 0 20px rgba(139,26,26,0.4);
}
.stamp-inner { font-size: 2rem; margin-bottom: 0.2rem; }

/* ── NIGHT PLAN ── */
.night-card {
  background: rgba(44,24,16,0.06);
  border: 1.5px solid var(--parchment-shadow);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.night-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.night-desc {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── HIDDEN SECTIONS ── */
.day-section { display: none; }
.day-section.active { display: block; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--parchment);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-family: 'Ma Shan Zheng', cursive;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease;
  z-index: 100;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── MODAL ── */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-bg.show { display: flex; }
.modal {
  background: var(--parchment);
  border-radius: 4px;
  padding: 1.5rem;
  max-width: 320px;
  width: 100%;
  text-align: center;
  border: 2px solid var(--parchment-shadow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.modal-emoji { font-size: 3rem; margin-bottom: 0.5rem; }
.modal-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.modal-text { font-size: 0.85rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 1rem; }
.modal-close {
  background: var(--ink);
  color: var(--parchment);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.1em;
}

/* ── INDEX.HTML 特有样式 ── */
.brand-line {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-top: 0.15rem;
  font-family: 'ZCOOL XiaoWei', serif;
}
.family-ribbon {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.2rem 0.8rem;
  background: rgba(139,26,26,0.08);
  border: 1px dashed var(--stamp-red);
  border-radius: 2px;
  color: var(--stamp-red);
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}
.night-card.gold-highlight {
  border-color: var(--gold);
  background: rgba(184,134,11,0.05);
}
.feedback-section {
  margin: 1.5rem 1rem 0;
  padding: 1rem;
  background: var(--parchment);
  border: 1.5px dashed var(--stamp-red);
  border-radius: 4px;
  text-align: center;
}
.feedback-prompt {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1rem;
  color: var(--stamp-red);
  margin-bottom: 0.6rem;
  letter-spacing: 0.1em;
}
.feedback-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--parchment-shadow);
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  font-family: 'Noto Serif SC', serif;
  font-size: 0.8rem;
  color: var(--ink);
  resize: none;
  margin-bottom: 0.5rem;
}
.feedback-input:focus {
  outline: none;
  border-color: var(--stamp-red);
  background: #fff;
}
.feedback-submit {
  padding: 0.45rem 1.5rem;
  background: var(--stamp-red);
  color: var(--parchment);
  border: none;
  border-radius: 3px;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  cursor: pointer;
}
.feedback-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.feedback-thanks { font-size: 0.85rem; color: var(--teal); padding: 0.5rem 0; }
.modal-family-stamp {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.15rem 0.75rem;
  background: rgba(139,26,26,0.08);
  border: 1px dashed var(--stamp-red);
  color: var(--stamp-red);
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 0.85rem;
  transform: rotate(-4deg);
  letter-spacing: 0.1em;
}
.loading, .error-screen {
  padding: 3rem 1.5rem;
  text-align: center;
  font-family: 'Ma Shan Zheng', cursive;
  color: var(--ink-light);
}
.loading { font-size: 1.1rem; letter-spacing: 0.15em; }
.error-screen .emoji { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.error-screen .title { font-size: 1.2rem; color: var(--red); margin-bottom: 0.5rem; }
.error-screen .hint { font-size: 0.85rem; color: var(--ink-light); line-height: 1.7; font-family: 'Noto Serif SC', serif; }

/* ── PRINT BUTTON ── */
.print-btn-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
}

.print-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--parchment);
  border: none;
  border-radius: 30px;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s;
}

.print-btn:hover {
  background: var(--ink-light);
  transform: scale(1.05);
}

.print-btn-icon {
  font-size: 1.2rem;
}

/* ── PRINT MODE STYLES ── */
.print-mode .day-tabs {
  display: none;
}

.print-mode .print-btn-container {
  display: none;
}

.print-mode .complete-btn {
  display: none;
}

.print-mode .feedback-section {
  display: none;
}

.print-mode .toast {
  display: none !important;
}

.print-mode .spot-card.completed::after {
  display: none;
}

.print-mode .mission-item {
  cursor: default;
}

.print-mode .mission-item:hover {
  background: transparent;
}

/* 任务复选框 - 打印优化 */
.print-mode .mission-check {
  border: 2px solid var(--red);
  background: white;
}

.print-mode .mission-item.done .mission-check {
  background: white;
  border-color: var(--red);
}

/* ── @MEDIA PRINT ── */
@media print {
  @page {
    size: A4;
    margin: 1.2cm;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: white !important;
    background-image: none !important;
    padding-bottom: 0;
  }

  .print-btn-container {
    display: none !important;
  }

  .day-tabs {
    display: none !important;
  }

  .complete-btn {
    display: none !important;
  }

  .feedback-section {
    display: none !important;
  }

  .toast {
    display: none !important;
  }

  .modal-bg {
    display: none !important;
  }

  .spot-card.completed::after {
    display: none !important;
  }

  .header {
    background: white !important;
    border-bottom: 2px solid var(--parchment-shadow);
    page-break-after: avoid;
  }

  .progress-wrap {
    background: white !important;
    page-break-after: avoid;
  }

  .stamp-section {
    background: white !important;
    page-break-inside: avoid;
  }

  .spot-card {
    background: white !important;
    box-shadow: none;
  }

  .spot-card .card-header {
    page-break-after: avoid;
  }

  .spot-card .story-box {
    page-break-inside: avoid;
  }

  .spot-card .mission-box {
    page-break-inside: avoid;
  }

  .spot-card .question-box {
    page-break-inside: avoid;
  }

  .night-card {
    background: white !important;
  }

  .food-card {
    background: white !important;
    box-shadow: none;
  }

  .mission-item {
    cursor: default !important;
  }

  .mission-item:hover {
    background: transparent !important;
  }

  .mission-check {
    border: 2px solid var(--red) !important;
    background: white !important;
  }

  .mission-item.done .mission-check {
    background: white !important;
    border-color: var(--red) !important;
  }

  /* 确保所有内容都显示 */
  .print-mode .day-content-print {
    display: block !important;
  }

  .day-title-print {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 22pt;
    color: var(--red);
    margin: 0.6rem 0 0.4rem;
    padding: 0.3rem 0;
    page-break-after: avoid;
    border-top: 2px solid var(--parchment-shadow);
  }

  .day-section-print:first-child .day-title-print {
    border-top: none;
  }

  .day-section-print + .day-section-print .day-title-print {
    page-break-before: auto;
  }
  
  /* 打印模式下去掉多余的装饰线 */
  .print-mode .header::before,
  .print-mode .header::after {
    display: none;
  }
  
  .print-mode .header {
    border-bottom: none;
    background: none;
    padding-bottom: 0;
  }
  
  .print-mode .stamp-section {
    border-top: none;
    border-bottom: none;
    background: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  /* 打印模式下优化字体大小 - 参考课件标准 */
  .print-mode .title-main {
    font-size: 28pt;
  }
  
  .print-mode .title-sub {
    font-size: 14pt;
  }
  
  .print-mode .brand-line {
    font-size: 12pt;
  }
  
  .print-mode .family-ribbon {
    font-size: 16pt;
  }
  
  .print-mode .stamp-title {
    font-size: 20pt;
  }
  
  .print-mode .card-name {
    font-size: 18pt;
  }
  
  .print-mode .story-title {
    font-size: 12pt;
  }
  
  .print-mode .story-text {
    font-size: 14pt;
    line-height: 1.6;
  }
  
  .print-mode .mission-title {
    font-size: 14pt;
  }
  
  .print-mode .mission-item {
    font-size: 14pt;
    line-height: 1.6;
  }
  
  .print-mode .mission-check {
    width: 20px;
    height: 20px;
  }
  
  .print-mode .question-title {
    font-size: 12pt;
  }
  
  .print-mode .question-text {
    font-size: 14pt;
    line-height: 1.6;
  }
  
  .print-mode .question-hint {
    font-size: 12pt;
  }
  
  .print-mode .info-row {
    font-size: 12pt;
  }
  
  .print-mode .night-title {
    font-size: 16pt;
  }
  
  .print-mode .night-desc {
    font-size: 14pt;
    line-height: 1.6;
  }
  
  .print-mode .section-title {
    font-size: 18pt;
  }
  
  .print-mode .food-name {
    font-size: 14pt;
  }
  
  .print-mode .food-desc {
    font-size: 12pt;
    line-height: 1.6;
  }
  
  .print-mode .tag {
    font-size: 11pt;
    padding: 0.15rem 0.5rem;
  }
  
  .print-mode .stamp {
    font-size: 11pt;
  }
  
  .print-mode .stamp-inner {
    font-size: 2.2rem;
  }

  .print-mode .spot-card {
    margin-bottom: 0.4rem;
  }

  .print-mode .card-header {
    padding: 0.4rem 0.7rem 0.35rem;
  }

  .print-mode .card-body {
    padding: 0.35rem 0.7rem;
  }

  .print-mode .story-box {
    padding: 0.35rem 0.6rem;
    margin-bottom: 0.5rem;
  }

  .print-mode .mission-box {
    padding: 0.35rem 0.6rem;
    margin-bottom: 0.5rem;
  }

  .print-mode .mission-item {
    padding: 0.12rem 0;
  }

  .print-mode .question-box {
    padding: 0.35rem 0.6rem;
    margin-bottom: 0.5rem;
  }

  .print-mode .night-card {
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.4rem;
  }

  .print-mode .food-section {
    margin-top: 0.4rem;
  }

  .print-mode .food-grid {
    gap: 0.4rem;
  }

  .print-mode .food-card {
    padding: 0.45rem;
  }

  .print-mode .content {
    padding: 0.35rem 0.7rem;
  }
}
