:root {
  --ink: #1c2a22;
  --ink-soft: #3d5246;
  --paper: #f6f0e4;
  --paper-2: #fffaf0;
  --forest: #2f6b4f;
  --forest-deep: #1d4633;
  --sand: #e8c36a;
  --sky: #7eb8d4;
  --coral: #e07a5f;
  --leaf: #4caf7a;
  --line: rgba(28, 42, 34, 0.12);
  --shadow: 0 16px 40px rgba(29, 70, 51, 0.16);
  --radius: 18px;
  --header-h: 4.25rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(126, 184, 212, 0.35), transparent 50%),
    radial-gradient(800px 380px at 100% 0%, rgba(232, 195, 106, 0.28), transparent 46%),
    linear-gradient(180deg, #e7f3ea 0%, var(--paper) 38%, #efe4cc 100%);
  line-height: 1.65;
}

#main {
  flex: 1 0 auto;
}

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

button,
a {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.5rem 0.85rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  top: calc(var(--safe-top) + 0.6rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: calc(0.55rem + var(--safe-top)) 11.5rem 0.55rem 1rem;
  background: rgba(246, 240, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand-text {
  line-height: 1.25;
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.star-summary {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #9a6b12;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn,
.choice,
.biome-tile,
.mission-chip,
.drop-zone,
.drag-card,
.plant-card,
.map-pin {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 0 var(--forest-deep);
  transform: translateY(0);
  transition: transform 0.12s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--forest-deep);
}

.btn-passport {
  background: #9a6b12;
  box-shadow: 0 8px 0 #6c4a0c;
}

.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  box-shadow: none;
  border: 2px solid var(--forest);
}

.btn-sand {
  background: var(--sand);
  color: var(--ink);
  box-shadow: 0 8px 0 #c49a3a;
}

.view {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 1.1rem 0 calc(2rem + var(--safe-bottom));
}

.hero,
.panel,
.passport,
.biome-detail {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  padding: 1.2rem 1.2rem 1.3rem;
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero h1,
.panel h1,
.panel h2 {
  margin: 0 0 0.4rem;
  font-size: 1.85rem;
  line-height: 1.25;
}

.panel h2 {
  font-size: 1.4rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.18rem;
}

.muted {
  margin: 0;
  color: var(--ink-soft);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.biome-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  border: 3px solid color-mix(in srgb, var(--biome, var(--forest)) 65%, #fff);
  text-align: left;
  min-height: 148px;
}

.biome-tile img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.biome-tile .biome-name {
  padding: 0.55rem 0.7rem 0.7rem;
  font-weight: 800;
}

.biome-tile .tagline {
  display: block;
  padding: 0 0.7rem 0.7rem;
  margin-top: -0.45rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.stamp-dot {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.mission-path {
  display: grid;
  gap: 0.55rem;
}

.mission-chip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  width: 100%;
  padding: 0.8rem 1rem;
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--line);
  text-decoration: none;
  color: inherit;
  text-align: left;
  font-size: 1.05rem;
}

.mission-chip .num {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
}

.mission-chip.is-locked {
  opacity: 0.55;
  cursor: not-allowed;
}

.mission-chip .stars {
  color: #c49a3a;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.panel {
  padding: 1.1rem;
}

.panel-head {
  margin-bottom: 1rem;
}

.progress-note {
  margin: 0.35rem 0 0;
  font-weight: 700;
  color: var(--forest-deep);
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.meter {
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem;
  border: 1px solid var(--line);
}

.meter span {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.meter strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.18rem;
}

.bars {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.45rem;
  height: 10px;
}

.bars i {
  flex: 1;
  border-radius: 99px;
  background: #e4ddd0;
}

.bars i.is-on {
  background: var(--forest);
}

.meter[data-kind="temp"] .bars i.is-on {
  background: var(--coral);
}

.meter[data-kind="snow"] .bars i.is-on {
  background: var(--sky);
}

.meter[data-kind="rain"] .bars i.is-on {
  background: #3d8ebd;
}

.meter[data-kind="humidity"] .bars i.is-on {
  background: #5aa8c9;
}

.meter[data-kind="species"] .bars i.is-on {
  background: #4caf7a;
}

.meter[data-kind="food"] .bars i.is-on {
  background: #c4892a;
}

.badge {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--sand);
  font-weight: 800;
  font-size: 0.95rem;
}

.fact {
  margin: 0.8rem 0 0;
  font-size: 1.08rem;
}

.who {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.who li {
  background: #eef6ef;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.98rem;
}

.choice-grid {
  display: grid;
  gap: 0.55rem;
}

.choice {
  min-height: 56px;
  padding: 0.85rem 1.05rem;
  border-radius: 14px;
  background: #fff;
  border: 2px solid var(--line);
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
}

.choice:hover,
.choice:focus-visible,
.drag-card.is-selected,
.biome-tile:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 2px;
}

.choice.is-correct {
  border-color: var(--forest);
  background: #e5f6ea;
}

.choice.is-wrong {
  border-color: var(--coral);
  background: #fdece7;
}

.feedback {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #eef6ef;
  border: 1px solid #cfe3d4;
}

.feedback.is-wrong {
  background: #fff4e8;
  border-color: #f0d2a8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: end center;
  padding: 1rem;
  background: rgba(28, 42, 34, 0.45);
}

.overlay-card {
  width: min(720px, 100%);
  max-height: min(88dvh, 760px);
  overflow: auto;
  background: var(--paper-2);
  border-radius: 22px 22px 18px 18px;
  padding: 1rem 1rem 1.2rem;
  box-shadow: var(--shadow);
}

.overlay-card h2 {
  font-size: 1.55rem;
  margin: 0 0 0.75rem;
}

.overlay-card h3 {
  font-size: 1.2rem;
}

.place-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.drop-zone {
  min-height: 118px;
  padding: 0.55rem;
  border-radius: 14px;
  border: 2px dashed color-mix(in srgb, var(--biome, var(--forest)) 70%, #fff);
  background: color-mix(in srgb, var(--biome, var(--forest)) 14%, #fff);
  text-align: left;
}

.drop-zone strong {
  display: block;
}

.drop-zone.is-shake {
  animation: shake 0.4s var(--ease);
}

.placed-chip {
  display: inline-flex;
  margin: 0.2rem 0.2rem 0 0;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.tray {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.drag-card,
.plant-card {
  min-height: 52px;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  background: #fff;
  border: 2px solid var(--line);
  font-size: 1.05rem;
  font-weight: 800;
  touch-action: none;
}

.drag-card.is-placed,
.plant-card.is-placed {
  display: none;
}

.drag-card.is-dragging,
.plant-card.is-dragging {
  opacity: 0.35;
}

.drag-ghost {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  margin: 0;
  opacity: 0.95;
  transform: scale(1.04);
}

.find-scene {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0.6rem 0;
}

.find-scene button {
  position: absolute;
  border: 0;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.scene-leaves {
  background: linear-gradient(#1f7a4d, #145c38);
}

.scene-snow {
  background: linear-gradient(#d7eef7, #f7fbff);
}

.leaf-blob {
  background: #2ea043;
  border-radius: 40% 60% 50% 50%;
  color: transparent;
}

.chameleon {
  width: 58px;
  height: 34px;
  background: #3fb950;
  border-radius: 20px 28px 16px 30px;
  box-shadow: 12px 8px 0 #2ea043;
}

.chameleon::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #143d2a;
}

.snow-mound {
  background: #f7fbff;
  border-radius: 50% 50% 40% 40%;
  box-shadow: inset 0 -8px 0 #c5dde8;
  color: transparent;
}

.fox {
  width: 70px;
  height: 28px;
  background: #eef6fb;
  border-radius: 20px 8px 20px 16px;
  box-shadow: 0 0 0 1px #d3e4ee;
}

.fox::before,
.fox::after {
  content: "";
  position: absolute;
  background: #eef6fb;
}

.fox::before {
  width: 14px;
  height: 16px;
  left: 8px;
  top: -10px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.fox::after {
  width: 10px;
  height: 10px;
  right: 10px;
  top: 8px;
  border-radius: 50%;
  background: #9bb7c9;
}

.plant-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.plant-column {
  min-height: 140px;
  padding: 0.7rem;
  border-radius: 14px;
  background: #fff;
  border: 2px dashed var(--line);
  cursor: pointer;
}

.plant-column h3 {
  margin: 0 0 0.2rem;
}

.plant-column .tip {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.passport {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(#16382c, #16382c) top / 100% 5.4rem no-repeat,
    var(--paper-2);
}

.passport-band {
  padding: 0.85rem 1.1rem 0.7rem;
  color: #f4e4b2;
  text-align: center;
  letter-spacing: 0.18em;
}

.passport-band p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.passport-band h1 {
  margin: 0.15rem 0 0;
  color: #fff8e4;
  letter-spacing: 0.12em;
}

.passport-spread {
  display: grid;
  gap: 0;
}

.passport-page {
  padding: 1rem 1.1rem 1.15rem;
}

.passport-id {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  border-bottom: 1px dashed var(--line);
}

.passport-photo {
  width: 88px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 2px solid #c9b48a;
  background:
    repeating-linear-gradient(
      -45deg,
      #f3ead6,
      #f3ead6 8px,
      #efe4cc 8px,
      #efe4cc 16px
    );
  color: var(--forest-deep);
  font-size: 2.2rem;
  font-weight: 900;
}

.passport-id dl {
  margin: 0;
}

.passport-id dt {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.passport-id dt:first-child {
  margin-top: 0;
}

.passport-id dd {
  margin: 0.1rem 0 0;
  font-weight: 700;
}

.passport-name-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.passport-name-form input {
  min-height: 44px;
  flex: 1 1 8rem;
  padding: 0.4rem 0.65rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}

.passport-visas h2 {
  margin-top: 0;
}

.passport-name-print + .passport-name-form {
  margin-top: 0.45rem;
}

.passport-lower {
  display: grid;
  gap: 0.85rem;
  padding: 0.2rem 1.1rem 1.2rem;
}

.passport-stars h2 {
  margin: 0 0 0.35rem;
}

.passport-stars ul {
  margin: 0;
  padding-left: 1.2rem;
}

.passport-actions {
  justify-content: center;
  margin-top: 1.1rem;
  margin-bottom: 0.2rem;
}

.world-map {
  background: #0b1c28;
  border-radius: 16px;
  overflow: visible;
}

.world-map-canvas {
  position: relative;
  aspect-ratio: 2 / 1;
}

.world-map-canvas img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  transform: translate(-50%, -86%);
  font: inherit;
  color: var(--ink);
}

.map-pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(28, 42, 34, 0.25);
}

.map-pin.is-visited .map-pin-dot {
  background: var(--forest);
}

.map-pin-label {
  max-width: 11rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(28, 42, 34, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.map-credit {
  margin: 0.35rem 0.15rem 0;
  color: #d5e4ea;
  font-size: 0.85rem;
  text-align: right;
}

.map-pin-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem;
  max-width: 8rem;
}

.map-pin.is-shake {
  animation: shake 0.4s var(--ease);
}

.map-lab {
  display: grid;
  gap: 0.8rem;
}

.map-lab--stack {
  grid-template-columns: 1fr;
}

.needs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-size: 1.05rem;
}

.needs-card[hidden] {
  display: none;
}

.needs-card h3 {
  margin: 0.15rem 0 0.35rem;
}

.map-lab-side .tray {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-footer {
  flex-shrink: 0;
  text-align: center;
  padding: 0.85rem 1rem calc(0.85rem + var(--safe-bottom));
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: rgba(246, 240, 228, 0.92);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--forest-deep);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--forest);
}

.stamp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0.8rem 0 1.1rem;
}

.stamp {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.4rem;
  border-radius: 16px;
  border: 3px dashed #cfc4ab;
  background: #f3ead6;
  font-weight: 800;
  font-size: 0.95rem;
}

.stamp.is-on {
  border-style: solid;
  border-color: var(--coral);
  background: #fff;
  color: var(--forest-deep);
}

.discoveries {
  background: #eef6ef;
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.discoveries ol {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(4rem + var(--safe-bottom));
  transform: translateX(-50%);
  z-index: 90;
  max-width: min(92vw, 420px);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.stars-lg {
  color: #c49a3a;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
}

@keyframes shake {
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

.btn-passport .label-short {
  display: none;
}

@media (max-width: 640px) {
  .site-header {
    padding-right: 4.75rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .btn-passport .label-full {
    display: none;
  }

  .btn-passport .label-short {
    display: inline;
  }

  .btn-passport {
    min-height: 44px;
    padding: 0.45rem 0.85rem;
    white-space: nowrap;
  }

  .star-summary {
    font-size: 0.95rem;
    white-space: nowrap;
  }
}

@media (min-width: 720px) {
  .map-grid,
  .explore-grid,
  .place-board {
    grid-template-columns: repeat(3, 1fr);
  }

  .weather-grid,
  .plant-board {
    grid-template-columns: repeat(3, 1fr);
  }

  .passport-spread {
    grid-template-columns: 1.05fr 1fr;
  }

  .passport-id {
    border-bottom: 0;
    border-right: 1px dashed var(--line);
  }

  .passport-lower {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    border-top: 1px dashed var(--line);
    padding-top: 0.9rem;
  }

  .overlay {
    place-items: center;
  }

  .overlay-card {
    border-radius: 22px;
  }

  .find-scene {
    height: 300px;
  }
}

@media (max-width: 899px) {
  .map-lab-side .tray {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .map-lab-side .drag-card {
    flex: 0 0 auto;
    min-width: 7.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 8mm;
  }

  html,
  body {
    background: #fff !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;
  }

  body {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .site-header,
  .site-footer,
  .actions,
  .toast,
  .skip-link,
  .passport-name-form,
  .edu-account {
    display: none !important;
  }

  #main,
  .view {
    width: 100% !important;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .passport {
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 12px;
    break-inside: avoid;
    page-break-inside: avoid;
    max-height: 190mm;
    overflow: hidden;
  }

  .passport-spread {
    grid-template-columns: 1.05fr 1fr;
  }

  .passport-id {
    border-bottom: 0;
    border-right: 1px dashed #ccc;
  }

  .passport-lower {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    border-top: 1px dashed #ccc;
    padding: 0.55rem 1rem 0.7rem;
  }

  .passport-page {
    padding: 0.7rem 1rem 0.75rem;
  }

  .passport-band {
    padding: 0.55rem 1rem 0.45rem;
  }

  .stamp-row {
    margin: 0.4rem 0 0;
    gap: 0.4rem;
  }

  .stamp {
    font-size: 0.78rem;
  }

  .discoveries {
    margin: 0;
    padding: 0.55rem 0.7rem;
  }
}
