:root {
  color-scheme: light;
  --ink: #1f3f2e;
  --muted: #6f6f55;
  --green: #1f7548;
  --green-soft: #edf5dc;
  --mint: #f6f2df;
  --leaf: #6f9d59;
  --lemon: #f2c739;
  --gold-green: #d9c45a;
  --white: #fffdf2;
  --cream: #f6efd9;
  --paper: #f3ead2;
  --tape: #f0c83e;
  --brown: #6a4a2f;
  --coral: #cf7c51;
  --line: rgba(31, 117, 72, 0.18);
  --shadow: 0 24px 70px rgba(88, 69, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 18%, rgba(216, 105, 136, 0.12), transparent 18%),
    radial-gradient(circle at 92% 64%, rgba(47, 138, 90, 0.13), transparent 20%),
    linear-gradient(90deg, rgba(106, 74, 47, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(106, 74, 47, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(244, 199, 57, 0.18), transparent 26%),
    radial-gradient(circle at 86% 22%, rgba(95, 137, 72, 0.13), transparent 28%),
    linear-gradient(180deg, #f8f1dc 0%, #fff8e8 44%, #f5edd8 100%);
  background-size:
    auto,
    auto,
    42px 42px,
    42px 42px,
    auto,
    auto,
    auto;
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(79, 91, 55, 0.1) 0 0.8px, transparent 1.4px),
    radial-gradient(circle, rgba(181, 135, 52, 0.16) 0 0.8px, transparent 1.4px),
    repeating-linear-gradient(115deg, transparent 0 92px, rgba(31, 117, 72, 0.04) 92px 94px, transparent 94px 170px),
    repeating-linear-gradient(25deg, transparent 0 128px, rgba(242, 199, 57, 0.06) 128px 131px, transparent 131px 220px),
    linear-gradient(90deg, rgba(106, 74, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(106, 74, 47, 0.028) 1px, transparent 1px);
  background-position:
    8% 18%,
    78% 30%,
    0 0,
    0 0,
    0 0,
    0 0;
  background-size:
    92px 92px,
    118px 118px,
    360px 360px,
    420px 420px,
    34px 34px,
    34px 34px;
  opacity: 0.8;
  animation: paperTextureDrift 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg width='420' height='420' viewBox='0 0 420 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M36 88c30-34 68 28 100-2 24-22 34-44 70-22' stroke='%231f7548' stroke-width='5' stroke-dasharray='13 16' opacity='.34'/%3E%3Cpath d='M244 42c32 14 36 42 15 63-19 19-54 11-60-18-5-24 19-54 45-45z' stroke='%23f2c739' stroke-width='5' opacity='.38'/%3E%3Cpath d='M324 88l18 22 27-8-15 25 17 22-29-7-19 22 1-29-26-12 28-9z' stroke='%23d86988' stroke-width='5' opacity='.32'/%3E%3Cpath d='M74 292c18-22 50-14 58 11 9 28-15 54-42 48-28-6-34-38-16-59z' stroke='%231f7548' stroke-width='5' opacity='.27'/%3E%3Cpath d='M270 300c28-10 62 2 76 30' stroke='%236a4a2f' stroke-width='5' stroke-dasharray='2 15' opacity='.26'/%3E%3Cpath d='M310 250c10-18 30-16 36 1 7 19-13 37-29 25-9-7-11-17-7-26z' stroke='%23f2c739' stroke-width='5' opacity='.36'/%3E%3Cg fill='%231f7548' opacity='.18'%3E%3Cellipse cx='142' cy='206' rx='15' ry='12' transform='rotate(-18 142 206)'/%3E%3Cellipse cx='120' cy='184' rx='7' ry='8'/%3E%3Cellipse cx='138' cy='174' rx='7' ry='8'/%3E%3Cellipse cx='158' cy='180' rx='7' ry='8'/%3E%3Cellipse cx='171' cy='197' rx='7' ry='8'/%3E%3C/g%3E%3Cg fill='%23d86988' opacity='.14'%3E%3Cellipse cx='338' cy='218' rx='12' ry='10' transform='rotate(18 338 218)'/%3E%3Cellipse cx='320' cy='204' rx='6' ry='7'/%3E%3Cellipse cx='335' cy='194' rx='6' ry='7'/%3E%3Cellipse cx='352' cy='200' rx='6' ry='7'/%3E%3Cellipse cx='362' cy='214' rx='6' ry='7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 420px 420px;
  background-position: 0 0;
  mix-blend-mode: multiply;
  animation: doodleFloat 22s linear infinite;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.utility-bar {
  position: relative;
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(22px, 5vw, 78px);
  color: #fff8df;
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.08) 0 7px, transparent 7px 16px),
    #1f7548;
  border-bottom: 2px dashed rgba(255, 236, 143, 0.36);
  box-shadow: 0 12px 28px rgba(31, 64, 46, 0.12);
}

.utility-bar p {
  margin: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.utility-bar div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.utility-bar a,
.utility-bar button {
  color: #fff8df;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.utility-bar button {
  min-height: 30px;
  padding: 0 14px;
  border: 2px solid rgba(255, 248, 226, 0.6);
  border-radius: 999px;
  background: rgba(255, 248, 226, 0.12);
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(22px, 5vw, 78px);
  background: rgba(255, 249, 229, 0.88);
  border-bottom: 1px solid rgba(106, 74, 47, 0.12);
  backdrop-filter: blur(22px);
}

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

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

.brand-lockup strong {
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand-lockup small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.96) 0 9%, transparent 10%),
    linear-gradient(145deg, #f8ffe3, #dff3d9);
  border: 1px solid rgba(47, 138, 90, 0.36);
  box-shadow: 0 12px 32px rgba(47, 138, 90, 0.12);
  font-weight: 800;
}

.product-mark {
  overflow: hidden;
  background: #f4ffe9;
}

.product-mark img {
  width: 22px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(47, 138, 90, 0.22));
}

.cat-mark {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff8d8;
  border-color: rgba(231, 151, 39, 0.24);
  box-shadow: 0 14px 34px rgba(196, 127, 33, 0.12);
}

.cat-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.main-nav a {
  padding: 8px 0;
  color: #536246;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.main-nav a:hover {
  color: #1d6f42;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.claim-chip,
.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 16px 20px 14px 18px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.claim-chip {
  color: #1f7548;
  background:
    repeating-linear-gradient(-12deg, rgba(242, 199, 57, 0.14) 0 6px, transparent 6px 12px),
    rgba(255, 250, 231, 0.76);
  border: 2px dashed rgba(31, 117, 72, 0.28);
}

.login-button {
  color: #fffaf0;
  border: 2px solid rgba(22, 67, 47, 0.2);
  background: #1f7548;
  box-shadow: 0 12px 24px rgba(31, 117, 72, 0.18);
  cursor: pointer;
}

main {
  position: relative;
  overflow: hidden;
}

main > section {
  position: relative;
  isolation: isolate;
}

main > section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='360' viewBox='0 0 360 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 70c22-25 50 20 75-4 18-17 26-34 54-16' stroke='%231f7548' stroke-width='5' stroke-dasharray='10 14' opacity='.38'/%3E%3Cpath d='M210 38c28 12 31 35 13 54-17 17-47 10-52-15-5-22 17-47 39-39z' stroke='%23f2c739' stroke-width='5' opacity='.38'/%3E%3Cpath d='M286 80l14 19 23-7-13 21 15 19-25-6-16 19 1-25-23-10 24-8z' stroke='%23d86988' stroke-width='5' opacity='.34'/%3E%3Cpath d='M66 252c15-19 42-12 49 9 8 24-13 47-36 42-24-5-29-33-13-51z' stroke='%231f7548' stroke-width='5' opacity='.28'/%3E%3Cpath d='M230 260c24-8 54 2 66 26' stroke='%236a4a2f' stroke-width='5' stroke-dasharray='2 14' opacity='.28'/%3E%3Cg fill='%231f7548' opacity='.16'%3E%3Cellipse cx='138' cy='188' rx='14' ry='11' transform='rotate(-18 138 188)'/%3E%3Cellipse cx='118' cy='168' rx='6' ry='8'/%3E%3Cellipse cx='135' cy='158' rx='6' ry='8'/%3E%3Cellipse cx='153' cy='164' rx='6' ry='8'/%3E%3Cellipse cx='166' cy='180' rx='6' ry='8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 360px 360px;
  background-position: 0 0;
  mix-blend-mode: multiply;
  animation: doodleSectionDrift 28s linear infinite;
}

main > section > * {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 112px);
  padding: clamp(52px, 8vw, 104px) clamp(22px, 5vw, 78px) 70px;
  background:
    radial-gradient(circle at 18% 72%, rgba(242, 199, 57, 0.17), transparent 21%),
    radial-gradient(circle at 42% 42%, rgba(111, 157, 89, 0.13), transparent 25%);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.official-product-visual {
  min-height: 650px;
}

.official-product-card {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(78vw, 420px);
  height: 610px;
}

.hero-cat-logo {
  position: absolute;
  left: 3%;
  top: 38px;
  z-index: 4;
  width: clamp(112px, 18vw, 184px);
  aspect-ratio: 1;
  border-radius: 28px;
  object-fit: cover;
  border: 8px solid rgba(255, 250, 231, 0.9);
  box-shadow:
    0 22px 52px rgba(106, 74, 47, 0.2),
    0 0 0 1px rgba(231, 151, 39, 0.2);
  transform: rotate(-7deg);
  animation: logoFloat 6.4s ease-in-out infinite;
}

.official-product {
  position: relative;
  z-index: 2;
  max-width: 280px;
  height: min(72vh, 590px);
  object-fit: contain;
  filter:
    drop-shadow(0 38px 34px rgba(24, 71, 43, 0.22))
    drop-shadow(0 0 28px rgba(167, 229, 111, 0.42));
  animation: bottleBreath 5.8s ease-in-out infinite;
}

.official-product-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 64px;
  z-index: 1;
  width: 360px;
  height: 72px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(73, 138, 91, 0.18), transparent 68%);
}

.official-logo-chip {
  position: absolute;
  right: 8px;
  bottom: 132px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 142px;
  min-height: 62px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 229, 0.9);
  border: 1px solid rgba(106, 74, 47, 0.12);
  box-shadow: 0 18px 40px rgba(106, 74, 47, 0.12);
  backdrop-filter: blur(14px);
}

.official-logo-chip img {
  width: 112px;
  height: auto;
}

.glass-aura {
  position: absolute;
  width: min(76vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 253, 239, 0.98) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 52%, rgba(231, 235, 194, 0.86), rgba(255, 248, 229, 0.66) 58%, transparent 70%);
  filter: blur(0.2px);
}

.bubbles {
  position: absolute;
  inset: 8% 0 0;
  pointer-events: none;
}

.bubbles i {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(47, 138, 90, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  animation: bubbleFloat 4.8s ease-in-out infinite;
}

.bubbles i:nth-child(1) { left: 19%; top: 22%; width: 18px; height: 18px; }
.bubbles i:nth-child(2) { left: 72%; top: 18%; animation-delay: 0.7s; }
.bubbles i:nth-child(3) { left: 78%; top: 55%; width: 24px; height: 24px; animation-delay: 1.1s; }
.bubbles i:nth-child(4) { left: 26%; top: 68%; width: 10px; height: 10px; animation-delay: 1.8s; }
.bubbles i:nth-child(5) { left: 61%; top: 78%; width: 14px; height: 14px; animation-delay: 2.3s; }

.lemon-blur {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    radial-gradient(circle, rgba(242, 199, 57, 0.78), rgba(217, 196, 90, 0.5) 62%, transparent 63%);
  filter: blur(1px);
  opacity: 0.74;
  animation: lemonSway 7.5s ease-in-out infinite;
}

.lemon-one {
  left: 4%;
  bottom: 110px;
  width: 138px;
  animation-delay: 0.6s;
}

.lemon-two {
  right: 4%;
  top: 92px;
  width: 104px;
}

.bottle {
  position: relative;
  z-index: 2;
  width: 218px;
  height: 500px;
  border-radius: 76px 76px 34px 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 23% 72%, rgba(47, 138, 90, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(226, 246, 226, 0.88) 42%, rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(47, 138, 90, 0.28);
  box-shadow:
    0 42px 80px rgba(47, 138, 90, 0.16),
    inset 12px 0 26px rgba(255, 255, 255, 0.9),
    inset -16px 0 28px rgba(47, 138, 90, 0.08);
}

.bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -108px;
  width: 88px;
  height: 152px;
  transform: translateX(-50%);
  border-radius: 34px 34px 20px 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), transparent 58%, rgba(47, 138, 90, 0.08)),
    linear-gradient(180deg, #ffffff, #edf8ec);
  border: 1px solid rgba(47, 138, 90, 0.24);
  box-shadow: inset 10px 0 18px rgba(255, 255, 255, 0.92);
}

.bottle-neck {
  position: absolute;
  left: 50%;
  top: -126px;
  width: 98px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #f8fff7;
  border: 1px solid rgba(47, 138, 90, 0.26);
}

.bottle-shoulder {
  position: absolute;
  inset: 28px 20px auto;
  height: 76px;
  border-radius: 50%;
  border-top: 1px solid rgba(47, 138, 90, 0.16);
  opacity: 0.8;
}

.bottle-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 92px;
  min-height: 168px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.92) 0 10%, transparent 11%),
    linear-gradient(145deg, rgba(246, 255, 224, 0.92), rgba(211, 239, 210, 0.92));
  border: 1px solid rgba(47, 138, 90, 0.22);
  text-align: center;
}

.bottle-label small {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bottle-label strong {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.bottle-label span {
  color: #618076;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.water-drop {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(198, 232, 214, 0.42));
  box-shadow: 0 5px 12px rgba(55, 114, 80, 0.12);
}

.drop-one { right: 42px; top: 90px; }
.drop-two { left: 50px; top: 164px; height: 12px; }
.drop-three { right: 72px; top: 250px; height: 14px; }

.ice-plate {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 1;
  width: 340px;
  height: 54px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 249, 229, 0.72);
  color: rgba(31, 117, 72, 0.74);
  border: 1px solid rgba(106, 74, 47, 0.1);
  box-shadow: 0 20px 50px rgba(106, 74, 47, 0.1);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7.2vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 250, 231, 0.7);
}

h2 {
  position: relative;
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 62px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.section-heading h2::after,
.poster-copy h2::after,
.theme-copy h2::after {
  content: "";
  display: block;
  width: min(220px, 46%);
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 199, 57, 0.82), rgba(242, 199, 57, 0.18));
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.35;
}

p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-subtitle {
  max-width: 560px;
  color: #5c6750;
  font-size: clamp(18px, 1.8vw, 23px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #23794d, #155e38);
  box-shadow: 0 18px 34px rgba(31, 117, 72, 0.22);
}

.button.ghost {
  color: var(--green);
  background: rgba(255, 249, 229, 0.72);
  border: 1px solid rgba(31, 117, 72, 0.24);
}

.button.login-cta {
  color: #16432f;
  background:
    repeating-linear-gradient(-12deg, rgba(255, 255, 255, 0.16) 0 6px, transparent 6px 12px),
    #f2c739;
  border: 2px solid rgba(106, 74, 47, 0.14);
  box-shadow: 0 16px 28px rgba(179, 125, 28, 0.18);
}

.insight-band,
.service-section,
.product-zine-section,
.route-section,
.play-section,
.spread-section {
  padding: clamp(64px, 9vw, 116px) clamp(22px, 5vw, 78px);
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 199, 57, 0.22), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(31, 117, 72, 0.14), transparent 26%),
    linear-gradient(135deg, #fff8e7, #f3ead2 48%, #eef1d6);
  border-top: 1px solid rgba(106, 74, 47, 0.12);
  border-bottom: 1px solid rgba(106, 74, 47, 0.12);
}

.service-copy {
  max-width: 680px;
}

.service-copy p {
  max-width: 620px;
  font-size: 17px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.service-board {
  position: relative;
  padding: 26px;
  border: 2px solid rgba(93, 75, 48, 0.16);
  border-radius: 28px 18px 30px 20px;
  background:
    repeating-linear-gradient(0deg, rgba(106, 74, 47, 0.028) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, rgba(255, 250, 231, 0.94), rgba(243, 234, 207, 0.86));
  box-shadow: 0 26px 70px rgba(88, 69, 43, 0.13);
  animation: paperLift 8s ease-in-out infinite;
}

.service-board::before,
.service-board::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 24px;
  border-radius: 4px;
  background: rgba(244, 223, 120, 0.72);
  box-shadow: 0 8px 16px rgba(150, 113, 38, 0.08);
}

.service-board::before {
  left: 28px;
  top: -12px;
  transform: rotate(-7deg);
}

.service-board::after {
  right: 30px;
  bottom: -10px;
  transform: rotate(6deg);
}

.member-ticket {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 20px 14px 22px 16px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 90% 24%, rgba(242, 199, 57, 0.34), transparent 24%),
    repeating-linear-gradient(-10deg, rgba(255, 255, 255, 0.08) 0 6px, transparent 6px 14px),
    #1f7548;
  box-shadow: inset 0 0 0 2px rgba(255, 248, 226, 0.16);
  overflow: hidden;
}

.member-ticket::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 34%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 248, 226, 0.24), transparent);
  animation: ticketShine 5.8s ease-in-out infinite;
}

.member-ticket > * {
  position: relative;
  z-index: 1;
}

.member-ticket span,
.service-grid span {
  display: block;
  margin-bottom: 8px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-ticket strong {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.member-ticket p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 250, 231, 0.86);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.paw-passport {
  margin-bottom: 18px;
  padding: 18px;
  border: 2px dashed rgba(31, 117, 72, 0.24);
  border-radius: 22px 16px 24px 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 199, 57, 0.12), transparent 24%),
    repeating-linear-gradient(-8deg, rgba(106, 74, 47, 0.026) 0 1px, transparent 1px 9px),
    rgba(255, 250, 231, 0.78);
}

.paw-passport-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.paw-passport-head span {
  display: block;
  margin-bottom: 6px;
  color: #1f7548;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paw-passport-head strong {
  display: block;
  color: #254b36;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: 24px;
  font-weight: 900;
}

.paw-passport-head em {
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  color: #16432f;
  background: #f2c739;
  box-shadow: 0 8px 18px rgba(179, 125, 28, 0.14);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

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

.paw-stamp {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 12px 8px;
  border: 2px solid rgba(106, 74, 47, 0.12);
  border-radius: 18px 12px 20px 14px;
  color: rgba(31, 117, 72, 0.2);
  background:
    repeating-linear-gradient(0deg, rgba(106, 74, 47, 0.025) 0 1px, transparent 1px 8px),
    rgba(255, 253, 242, 0.72);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.paw-stamp:hover {
  transform: translateY(-2px) rotate(-0.5deg);
  border-color: rgba(31, 117, 72, 0.32);
  color: rgba(31, 117, 72, 0.38);
}

.paw-stamp small {
  margin-top: 8px;
  color: #7c735a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.paw-stamp.is-collected {
  color: #1f7548;
  border-color: rgba(31, 117, 72, 0.34);
  background:
    repeating-linear-gradient(-10deg, rgba(242, 199, 57, 0.16) 0 6px, transparent 6px 12px),
    rgba(243, 250, 221, 0.94);
  box-shadow: inset 0 0 0 2px rgba(255, 250, 231, 0.78);
}

.paw-stamp.is-collected .paw-mark {
  animation: stampPop 420ms ease-out;
}

.paw-mark {
  position: relative;
  display: block;
  width: 52px;
  height: 44px;
  color: inherit;
  transform: rotate(-12deg);
  filter: drop-shadow(0 5px 8px rgba(31, 117, 72, 0.12));
}

.paw-mark::before {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 2px;
  width: 24px;
  height: 20px;
  border-radius: 56% 56% 48% 48%;
  background: currentColor;
}

.paw-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 11px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    10px -10px 0 -1px currentColor,
    25px -11px 0 -1px currentColor,
    36px -2px 0 -1px currentColor;
}

.paw-passport > p {
  margin: 14px 0 0;
  color: #6b674f;
  font-size: 13px;
  line-height: 1.65;
}

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

.service-grid article {
  padding: 20px;
  border: 2px dashed rgba(31, 117, 72, 0.2);
  border-radius: 18px 14px 20px 16px;
  background:
    radial-gradient(circle at 15% 12%, rgba(242, 199, 57, 0.12), transparent 28%),
    rgba(255, 250, 231, 0.82);
}

.service-grid article:nth-child(even) {
  transform: rotate(0.3deg);
}

.service-grid article:nth-child(3) {
  transform: rotate(-0.3deg);
}

.service-grid span {
  color: #1f7548;
}

.service-grid strong {
  display: block;
  color: #254b36;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: 24px;
  font-weight: 900;
}

.service-grid p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.product-zine-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(216, 105, 136, 0.12), transparent 24%),
    radial-gradient(circle at 92% 72%, rgba(31, 117, 72, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 231, 0.96), rgba(239, 226, 194, 0.96));
}

.product-zine-paper {
  position: relative;
  min-height: 880px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 86px) clamp(26px, 7vw, 110px) clamp(42px, 6vw, 70px);
  overflow: hidden;
  border: 2px solid rgba(106, 74, 47, 0.18);
  border-radius: 10px;
  color: #244a3b;
  background:
    linear-gradient(90deg, rgba(106, 74, 47, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(106, 74, 47, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.42), transparent 18%),
    repeating-linear-gradient(0deg, rgba(87, 70, 45, 0.035) 0 1px, transparent 1px 12px),
    #f1e4c7;
  background-size:
    46px 46px,
    46px 46px,
    auto,
    auto,
    auto;
  box-shadow:
    0 34px 88px rgba(88, 69, 43, 0.16),
    inset 0 0 0 10px rgba(255, 250, 231, 0.36);
}

.zine-kicker,
.product-zine-paper h2,
.zine-subtitle,
.zine-copy,
.zine-banner,
.zine-badges,
.zine-footer-copy {
  position: relative;
  z-index: 3;
}

.product-zine-paper::before,
.product-zine-paper::after {
  content: "";
  position: absolute;
  top: 54px;
  width: 26%;
  height: 12px;
  border-top: 4px solid rgba(106, 74, 47, 0.22);
  border-bottom: 4px solid rgba(106, 74, 47, 0.16);
}

.product-zine-paper::before {
  left: 34px;
}

.product-zine-paper::after {
  right: 34px;
}

.zine-topline {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 88px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 2px dashed rgba(31, 117, 72, 0.24);
  background: rgba(255, 250, 231, 0.54);
}

.zine-kicker {
  margin: 0 0 12px;
  color: #315e70;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.product-zine-paper h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #25506a;
  font-size: clamp(42px, 6vw, 76px);
  text-align: center;
  text-shadow:
    1.4px 0 rgba(37, 80, 106, 0.14),
    0 2px rgba(242, 199, 57, 0.16);
}

.product-zine-paper h2::first-letter {
  color: #b94f55;
}

.zine-subtitle {
  display: flex;
  width: fit-content;
  margin: 0 auto 52px;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  color: #fff8df;
  background:
    repeating-linear-gradient(-10deg, rgba(255, 255, 255, 0.08) 0 7px, transparent 7px 14px),
    #9c8a60;
  box-shadow: 0 12px 24px rgba(88, 69, 43, 0.12);
  font-weight: 900;
}

.zine-subtitle span {
  font-size: 20px;
}

.zine-subtitle em {
  color: rgba(255, 250, 231, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.zine-copy {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.zine-copy p {
  margin: 0 0 20px;
  color: #2e5062;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.55;
}

.zine-copy strong {
  display: block;
  margin-top: 8px;
  color: #b94f55;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900;
}

.zine-banner {
  width: fit-content;
  max-width: 100%;
  margin: 58px auto 40px;
  padding: 14px 34px;
  border: 4px solid rgba(37, 80, 106, 0.86);
  color: #fff8df;
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.1) 0 9px, transparent 9px 18px),
    #25506a;
  box-shadow:
    8px 8px 0 rgba(31, 117, 72, 0.12),
    inset 0 0 0 2px rgba(255, 248, 226, 0.55);
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: clamp(25px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-0.6deg);
}

.zine-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.zine-badges div {
  position: relative;
  min-height: 128px;
  padding: 24px 18px 18px;
  border: 2px dashed rgba(185, 79, 85, 0.28);
  border-radius: 18px 10px 20px 12px;
  background:
    radial-gradient(circle at 20% 12%, rgba(242, 199, 57, 0.16), transparent 28%),
    rgba(255, 250, 231, 0.9);
  box-shadow:
    0 12px 28px rgba(88, 69, 43, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  text-align: center;
}

.zine-badges div::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -13px;
  width: 62px;
  height: 22px;
  transform: translateX(-50%) rotate(-5deg);
  border-radius: 4px;
  background: rgba(242, 199, 57, 0.68);
}

.zine-badges strong {
  display: block;
  margin-bottom: 12px;
  color: #b94f55;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
}

.zine-badges span {
  display: block;
  color: #315e70;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
}

.zine-footer-copy {
  max-width: 760px;
  margin: 0 auto;
  color: #b94f55;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.75;
  text-align: center;
}

.zine-doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
  opacity: 0.48;
}

.zine-doodle path,
.zine-doodle circle,
.zine-doodle ellipse {
  fill: rgba(255, 250, 231, 0.2);
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zine-doodle text {
  fill: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
}

.product-sticker {
  left: clamp(18px, 4vw, 52px);
  bottom: 42px;
  display: grid;
  width: clamp(94px, 12vw, 140px);
  justify-items: center;
  padding: 12px 14px 10px;
  border: 2px solid rgba(31, 117, 72, 0.24);
  border-radius: 18px 12px 22px 14px;
  background: rgba(255, 250, 231, 0.7);
  box-shadow: 8px 10px 0 rgba(31, 117, 72, 0.09);
  transform: rotate(-6deg);
  opacity: 0.58;
}

.product-sticker img {
  width: 56px;
  height: 132px;
  object-fit: contain;
  filter:
    saturate(0.9)
    contrast(1.05)
    drop-shadow(0 8px 10px rgba(31, 63, 46, 0.18));
}

.product-sticker figcaption {
  margin-top: 6px;
  color: #1f7548;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: 18px;
  font-weight: 900;
}

.doodle-lemon {
  right: 46px;
  top: 118px;
  width: 132px;
  color: #d49d1f;
  transform: rotate(10deg);
  opacity: 0.38;
}

.doodle-glass {
  left: 34px;
  top: 250px;
  width: 112px;
  color: #315e70;
  transform: rotate(-8deg);
  opacity: 0.34;
}

.doodle-cap {
  right: 34px;
  top: 360px;
  width: 132px;
  color: #b94f55;
  transform: rotate(8deg);
  opacity: 0.36;
}

.doodle-bottlecap {
  left: 8%;
  top: 118px;
  width: 82px;
  color: #1f7548;
  transform: rotate(-13deg);
  opacity: 0.32;
}

.doodle-paw {
  right: 9%;
  bottom: 42px;
  width: 118px;
  color: #6f9d59;
  transform: rotate(12deg);
  opacity: 0.34;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 40px;
}

.section-heading p {
  max-width: 820px;
  font-size: 17px;
}

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

.insight-grid article,
.play-grid article,
.spread-flow div,
.route-stops li {
  border: 1px solid rgba(106, 74, 47, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 231, 0.9), rgba(248, 239, 211, 0.78));
  box-shadow: 0 22px 62px rgba(106, 74, 47, 0.08);
  backdrop-filter: blur(18px);
}

.insight-grid article,
.play-grid article {
  position: relative;
  padding: 30px;
}

.insight-grid article::before,
.play-grid article::before,
.spread-flow div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -11px;
  width: 54px;
  height: 18px;
  border-radius: 3px;
  background: rgba(242, 199, 57, 0.58);
  transform: rotate(-4deg);
}

.insight-grid article:nth-child(even)::before,
.play-grid article:nth-child(even)::before,
.spread-flow div:nth-child(even)::before {
  left: auto;
  right: 24px;
  transform: rotate(5deg);
}

.insight-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(22px, 5vw, 78px);
  background:
    radial-gradient(circle at 86% 8%, rgba(242, 199, 57, 0.24), transparent 24%),
    linear-gradient(135deg, #f5edd5, #fff8e6 48%, #edf2d8);
  border-top: 1px solid rgba(106, 74, 47, 0.12);
  border-bottom: 1px solid rgba(106, 74, 47, 0.12);
}

.poster-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) clamp(22px, 5vw, 78px);
  background:
    radial-gradient(circle at 15% 12%, rgba(242, 199, 57, 0.28), transparent 26%),
    radial-gradient(circle at 92% 80%, rgba(31, 117, 72, 0.13), transparent 28%),
    linear-gradient(135deg, #f4ecd3, #fff8e7 42%, #eef1d6);
  border-bottom: 1px solid rgba(106, 74, 47, 0.12);
}

.poster-copy {
  max-width: 760px;
}

.poster-copy h2 {
  max-width: 720px;
}

.poster-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.poster-points span {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 44px;
  padding: 0 18px 0 44px;
  border-radius: 999px;
  color: #1f7548;
  background: rgba(255, 250, 231, 0.84);
  border: 1px dashed rgba(31, 117, 72, 0.34);
  box-shadow: 0 14px 34px rgba(106, 74, 47, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.poster-points span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff 0 18%, transparent 20%),
    #f0d851;
  box-shadow: 0 0 0 4px rgba(244, 223, 120, 0.18);
}

.poster-frame {
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 250, 231, 0.96), rgba(241, 229, 195, 0.82));
  border: 1px solid rgba(106, 74, 47, 0.14);
  box-shadow: 0 34px 84px rgba(88, 69, 43, 0.18);
}

.poster-frame::before,
.poster-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 24px;
  border-radius: 4px;
  background: rgba(244, 223, 120, 0.72);
  box-shadow: 0 8px 16px rgba(150, 113, 38, 0.08);
}

.poster-frame::before {
  left: 34px;
  top: 8px;
  transform: rotate(-8deg);
}

.poster-frame::after {
  right: 32px;
  bottom: 42px;
  transform: rotate(-6deg);
}

.poster-frame img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  border-radius: 18px;
  background: #fffaf0;
}

.poster-frame figcaption {
  margin-top: 12px;
  color: #6f806e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.theme-copy p {
  max-width: 620px;
}

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

.theme-metrics div {
  position: relative;
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(106, 74, 47, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 250, 231, 0.92), rgba(239, 234, 203, 0.82));
  box-shadow: 0 18px 52px rgba(106, 74, 47, 0.08);
}

.theme-metrics div::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border: 2px dashed rgba(31, 117, 72, 0.24);
  border-radius: 50%;
}

.theme-metrics span,
.theme-metrics em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.theme-metrics span {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.theme-metrics strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 320;
  line-height: 1;
}

.route-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(242, 199, 57, 0.22), transparent 26%),
    radial-gradient(circle at 86% 76%, rgba(216, 105, 136, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 248, 231, 0.9), rgba(245, 237, 216, 0.96));
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 0.58fr);
  gap: clamp(18px, 3vw, 34px);
}

.map-panel {
  min-width: 0;
}

#map {
  position: relative;
  height: min(92vh, 900px);
  min-height: 720px;
  border-radius: 18px;
  border: 1px solid rgba(106, 74, 47, 0.16);
  overflow: hidden;
  box-shadow:
    0 28px 72px rgba(88, 69, 43, 0.15),
    inset 0 1px 0 rgba(255, 250, 231, 0.8);
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 199, 57, 0.22), transparent 24%),
    linear-gradient(135deg, #fff8e7, #ece8c9 56%, #d8e0b5);
}

.map-3d {
  isolation: isolate;
}

.map-sky {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 8;
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 250, 231, 0.76);
  border: 1px solid rgba(106, 74, 47, 0.12);
  box-shadow: 0 16px 38px rgba(88, 69, 43, 0.1);
  backdrop-filter: blur(12px);
}

.map-sky span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.map-sky strong {
  color: var(--green);
  font-size: 22px;
  font-weight: 520;
}

.map-board {
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(94%, 900px);
  height: 78%;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-14deg);
  transform-style: preserve-3d;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 40%),
    linear-gradient(140deg, #dff2d9, #eef9e8 54%, #cce8c4);
  border: 1px solid rgba(47, 138, 90, 0.18);
  box-shadow:
    24px 38px 70px rgba(35, 93, 60, 0.22),
    inset 0 2px 0 rgba(255, 255, 255, 0.72);
}

.map-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 2px dashed rgba(47, 138, 90, 0.18);
}

.road {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 242, 231, 0.96));
  border: 1px solid rgba(87, 112, 100, 0.2);
  box-shadow:
    inset 0 -5px 12px rgba(93, 126, 101, 0.12),
    0 10px 18px rgba(61, 111, 76, 0.08);
}

.road span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(14deg) rotateX(-58deg);
  color: #6b7e75;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.road-main {
  left: 9%;
  right: 9%;
  top: 47%;
  height: 58px;
}

.road-cross {
  top: 12%;
  width: 44px;
  height: 76%;
}

.road-wukang { left: 12%; }
.road-wulumuqi { left: 48%; }
.road-changshu { right: 12%; }

.road-cross span {
  transform: translate(-50%, -50%) rotateZ(104deg) rotateX(-58deg);
}

.park,
.water {
  position: absolute;
  z-index: 1;
  border-radius: 28px;
}

.park {
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.5) 0 8%, transparent 9%),
    linear-gradient(135deg, #aee0a0, #72bd78);
  box-shadow: inset 0 -8px 16px rgba(52, 116, 63, 0.15);
}

.park-one {
  left: 6%;
  top: 12%;
  width: 26%;
  height: 26%;
}

.park-two {
  right: 7%;
  bottom: 10%;
  width: 24%;
  height: 24%;
}

.water {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 35%),
    linear-gradient(140deg, #bdebf0, #89d7dc);
  box-shadow: inset 0 -8px 16px rgba(35, 128, 137, 0.14);
}

.water-one {
  left: 18%;
  bottom: 10%;
  width: 32%;
  height: 18%;
}

.water-two {
  right: 20%;
  top: 14%;
  width: 18%;
  height: 17%;
}

.building {
  position: absolute;
  z-index: 5;
  transform-style: preserve-3d;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #e6f4e5);
  border: 1px solid rgba(47, 138, 90, 0.15);
  box-shadow:
    12px 18px 28px rgba(51, 94, 63, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.building::after {
  content: "";
  position: absolute;
  inset: auto 0 -18px 12px;
  height: 18px;
  transform: skewX(-42deg);
  transform-origin: top left;
  border-radius: 0 0 8px 8px;
  background: rgba(58, 125, 82, 0.16);
}

.building span {
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%) rotateZ(14deg) rotateX(-58deg);
  padding: 7px 10px;
  border-radius: 999px;
  color: #2f8a5a;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 138, 90, 0.16);
  box-shadow: 0 8px 20px rgba(47, 138, 90, 0.12);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.theatre {
  left: 43%;
  top: 28%;
  width: 150px;
  height: 108px;
  background:
    repeating-linear-gradient(90deg, rgba(47, 138, 90, 0.1) 0 8px, transparent 8px 18px),
    linear-gradient(145deg, #ffffff, #e5f6e1);
}

.theatre i {
  position: absolute;
  inset: 20px 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f8fff4, #d9efce);
  border: 1px solid rgba(47, 138, 90, 0.15);
}

.cafe {
  width: 116px;
  height: 82px;
}

.cafe-one {
  right: 10%;
  top: 29%;
}

.cafe-two {
  left: 19%;
  top: 57%;
}

.shop {
  width: 90px;
  height: 70px;
  background: linear-gradient(145deg, #fffdfa, #edf8e7);
}

.shop-one { left: 30%; top: 23%; }
.shop-two { left: 61%; bottom: 17%; }
.shop-three { right: 26%; top: 58%; }

.trees {
  position: absolute;
  z-index: 6;
  display: flex;
  gap: 8px;
}

.trees i {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #a9de8e, #5fab62);
  box-shadow: 0 8px 12px rgba(41, 102, 55, 0.22);
}

.trees-one {
  left: 8%;
  top: 38%;
}

.trees-two {
  right: 10%;
  bottom: 34%;
}

.map-route {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50.5%;
  z-index: 7;
  height: 9px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #2f8a5a 0 24px, #f4df78 24px 42px);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.72),
    0 10px 18px rgba(47, 138, 90, 0.22);
}

.pin {
  position: absolute;
  z-index: 12;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translate(-50%, -115%) rotateZ(14deg) rotateX(-58deg);
  transform-style: preserve-3d;
}

.pin b {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50% 50% 50% 10px;
  transform: rotate(-45deg);
  color: #fff;
  background: linear-gradient(145deg, #64bd7b, #2f8a5a);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 28px rgba(35, 93, 60, 0.22);
  font-size: 20px;
}

.pin b::before {
  content: attr(data-letter);
}

.pin b {
  line-height: 1;
}

.pin b {
  text-indent: 0;
}

.pin b::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.pin b {
  color: transparent;
}

.pin b + span::before {
  content: "";
}

.pin-a b::before { content: "A"; color: #fff; transform: rotate(45deg); position: relative; z-index: 2; }
.pin-b b::before { content: "B"; color: #fff; transform: rotate(45deg); position: relative; z-index: 2; }
.pin-c b::before { content: "C"; color: #fff; transform: rotate(45deg); position: relative; z-index: 2; }
.pin-d b::before { content: "D"; color: #fff; transform: rotate(45deg); position: relative; z-index: 2; }

.pin span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #2f7551;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 138, 90, 0.14);
  box-shadow: 0 8px 18px rgba(47, 138, 90, 0.12);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pin-a { left: 86%; top: 49%; }
.pin-b { left: 63%; top: 49%; }
.pin-c { left: 48%; top: 49%; }
.pin-d { left: 15%; top: 49%; }

.tiny {
  position: absolute;
  z-index: 11;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: rotateZ(14deg) rotateX(-58deg);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(47, 138, 90, 0.16);
  color: #2f8a5a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tiny-one { left: 36%; top: 49%; }
.tiny-two { right: 22%; top: 38%; }
.tiny-three { left: 25%; bottom: 22%; }

.anfu-true-3d-map {
  height: min(98vh, 940px) !important;
  min-height: 760px !important;
  padding: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 244, 201, 0.48), transparent 28%),
    linear-gradient(145deg, #fbf8eb, #eef4df 52%, #d8e8ce);
  perspective: 1500px;
}

.anfu-true-3d-map .map-sky {
  left: 24px;
  top: 22px;
}

.map-stage {
  position: absolute;
  inset: 68px 22px 22px;
  display: grid;
  place-items: center;
}

.map-ground {
  position: relative;
  width: min(96%, 860px);
  height: 88%;
  min-height: 520px;
  transform: rotateX(58deg) rotateZ(-9deg) translateY(12px);
  transform-style: preserve-3d;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.62), transparent 18%),
    linear-gradient(140deg, #e2f0d5, #f7f4df 48%, #cfe7c0);
  border: 1px solid rgba(66, 106, 60, 0.18);
  box-shadow:
    28px 42px 80px rgba(53, 92, 56, 0.26),
    inset 0 2px 0 rgba(255, 255, 255, 0.75);
}

.map-ground::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px dashed rgba(85, 119, 75, 0.18);
  border-radius: 30px;
}

.map-road {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(231, 222, 199, 0.98));
  border: 1px solid rgba(93, 74, 53, 0.14);
  box-shadow: inset 0 -8px 14px rgba(95, 81, 54, 0.1);
}

.map-road span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(9deg) rotateX(-58deg);
  color: #624739;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.anfu-road {
  left: 14%;
  right: 11%;
  top: 49%;
  height: 58px;
  transform: rotate(-19deg);
}

.changshu-road {
  right: 8%;
  top: 8%;
  width: 46px;
  height: 78%;
  transform: rotate(-28deg);
}

.wulumuqi-road {
  left: 38%;
  top: 6%;
  width: 44px;
  height: 58%;
  transform: rotate(-25deg);
}

.wukang-road {
  left: 9%;
  bottom: 0;
  width: 48px;
  height: 42%;
  transform: rotate(45deg);
}

.changshu-road span,
.wulumuqi-road span,
.wukang-road span {
  transform: translate(-50%, -50%) rotateZ(94deg) rotateX(-58deg);
}

.map-park {
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.44) 0 10%, transparent 11%),
    linear-gradient(145deg, #a7ca7b, #6e9659);
  box-shadow: inset 0 -10px 16px rgba(61, 95, 45, 0.18);
}

.park-left {
  left: 5%;
  top: 12%;
  width: 28%;
  height: 28%;
}

.park-right {
  right: 6%;
  bottom: 14%;
  width: 25%;
  height: 26%;
}

.map-route-line {
  position: absolute;
  z-index: 8;
  height: 8px;
  border-radius: 999px;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.65),
    0 10px 18px rgba(75, 78, 68, 0.2);
}

.route-literary {
  left: 20%;
  top: 58%;
  width: 52%;
  transform: rotate(-42deg);
  background: repeating-linear-gradient(90deg, #246b93 0 20px, transparent 20px 34px);
}

.route-trend {
  left: 38%;
  top: 55%;
  width: 46%;
  transform: rotate(-36deg);
  background: #f06aa1;
}

.mini-building,
.trend-bubble,
.metro-marker,
.popup-store {
  position: absolute;
  z-index: 10;
  transform: rotateZ(9deg) rotateX(-58deg);
  transform-style: preserve-3d;
}

.mini-building {
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fffaf0, #e8dac7);
  border: 1px solid rgba(98, 71, 48, 0.16);
  box-shadow: 12px 18px 24px rgba(83, 68, 48, 0.18);
  color: #5b3e30;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  line-height: 1.35;
}

.mini-building::after {
  content: "";
  position: absolute;
  left: 10px;
  right: -10px;
  bottom: -16px;
  height: 16px;
  transform: skewX(-38deg);
  border-radius: 0 0 8px 8px;
  background: rgba(86, 68, 48, 0.16);
}

.film-store { right: 25%; top: 20%; width: 112px; height: 74px; }
.drama-center { left: 35%; top: 33%; width: 156px; height: 98px; background: linear-gradient(145deg, #fff5ea, #d9b7a2); }
.anfu-201 { left: 18%; top: 50%; width: 104px; height: 82px; }
.anfu-284 { left: 33%; top: 52%; width: 100px; height: 72px; }
.villa-189 { left: 13%; top: 67%; width: 134px; height: 78px; }
.anfu-market { left: 31%; bottom: 12%; width: 118px; height: 76px; }
.wukang-building { left: 9%; bottom: 3%; width: 112px; height: 102px; background: linear-gradient(145deg, #e6b291, #b96c58); }

.trend-bubble {
  display: grid;
  min-width: 78px;
  height: 46px;
  place-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #ff987f, #f06b65);
  border: 4px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 26px rgba(93, 63, 55, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.harmay { right: 14%; top: 43%; }
.duozhuayu { right: 24%; top: 56%; }
.adidas { right: 33%; top: 66%; }
.wiggle { left: 42%; top: 72%; }

.metro-marker {
  right: 7%;
  top: 18%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #b94a4a;
  background: #fff2ce;
  border: 5px solid #b94a4a;
  box-shadow: 0 14px 24px rgba(93, 63, 55, 0.16);
  font-weight: 950;
}

.metro-marker span {
  position: absolute;
  top: 58px;
  white-space: nowrap;
  color: #5c4437;
  font-size: 12px;
  font-weight: 900;
}

.tree-row {
  position: absolute;
  z-index: 9;
  display: flex;
  gap: 8px;
  transform: rotateZ(9deg) rotateX(-58deg);
}

.tree-row i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #9bb77a, #5f7f4d);
  box-shadow: 0 10px 14px rgba(65, 82, 43, 0.18);
}

.trees-a { left: 9%; top: 40%; }
.trees-b { right: 14%; top: 32%; }
.trees-c { right: 20%; bottom: 26%; }

.popup-store {
  z-index: 20;
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  padding: 8px 10px 8px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 138, 90, 0.18);
  box-shadow: 0 16px 28px rgba(43, 92, 55, 0.2);
}

.popup-store img {
  grid-row: 1 / 3;
  width: 26px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(47, 138, 90, 0.24));
}

.popup-store strong {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 14px;
}

.popup-store span {
  color: #2f7551;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.main-pop {
  transform: rotateZ(9deg) rotateX(-58deg) scale(1.12);
}

.pop-a { right: 11%; top: 30%; }
.pop-b { right: 24%; top: 43%; }
.pop-c { left: 48%; top: 41%; }
.pop-d { left: 25%; bottom: 17%; }

.map-legend-3d {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  gap: 9px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 138, 90, 0.14);
  box-shadow: 0 14px 32px rgba(47, 138, 90, 0.12);
  backdrop-filter: blur(14px);
}

.map-legend-3d span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5b7167;
  font-size: 12px;
  font-weight: 800;
}

.map-legend-3d i {
  width: 30px;
  height: 5px;
  border-radius: 999px;
}

.legend-blue { background: repeating-linear-gradient(90deg, #246b93 0 10px, transparent 10px 16px); }
.legend-pink { background: #f06aa1; }
.legend-green { background: var(--green); }

.mapping-stage {
  inset: 72px 18px 18px;
}

.mapping-model {
  width: min(100%, 980px);
  height: min(100%, 650px);
  overflow: visible;
  filter: drop-shadow(0 24px 44px rgba(47, 93, 60, 0.18));
}

.model-board path {
  fill: url(#mapPaper);
  stroke: rgba(70, 109, 70, 0.2);
  stroke-width: 2;
}

.base-roads .road {
  fill: none;
  stroke: url(#roadCream);
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 7px 7px rgba(88, 79, 63, 0.1));
}

.base-roads .secondary {
  stroke-width: 46;
}

.base-roads .main-road-model {
  stroke-width: 58;
}

.map-road-name {
  fill: rgba(91, 68, 55, 0.78);
  font-size: 24px;
  font-weight: 850;
}

.map-road-name.small {
  font-size: 16px;
}

.block {
  fill: #8fb978;
  opacity: 0.78;
}

.block.pale {
  fill: #cfe4c9;
}

.city-footprint .roof {
  fill: #e7efe4;
  stroke: rgba(73, 91, 75, 0.2);
  stroke-width: 1.8;
}

.city-footprint .roof.low {
  fill: #d8e7d5;
}

.city-footprint .roof.mint {
  fill: #d3e5da;
}

.city-footprint .facade {
  fill: rgba(94, 121, 102, 0.18);
}

.city-footprint.tower .roof {
  fill: #e9d6bd;
}

.city-footprint .window-grid,
.city-footprint .ridge {
  fill: none;
  stroke: rgba(94, 109, 91, 0.34);
  stroke-width: 2;
  stroke-linecap: round;
}

.road-edge {
  fill: none;
  stroke: rgba(126, 111, 84, 0.32);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 18 14;
}

.sidewalk-shadow {
  fill: none;
  stroke: rgba(180, 167, 137, 0.24);
  stroke-width: 76;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lane-mark {
  fill: none;
  stroke: rgba(129, 115, 91, 0.34);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 12 16;
}

.road-edge.thin {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2;
  stroke-dasharray: 10 12;
}

.crosswalk path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 5;
  stroke-linecap: round;
}

.tree-model path {
  fill: none;
  stroke: #7c5d38;
  stroke-width: 5;
  stroke-linecap: round;
}

.tree-model circle {
  fill: #7fa260;
  stroke: rgba(80, 96, 61, 0.22);
  stroke-width: 2;
  animation: treePulse 4s ease-in-out infinite;
}

.tree-model circle:nth-of-type(2) {
  fill: #8dae6d;
}

.tree-model circle:nth-of-type(3) {
  fill: #6f9259;
}

.tree-model.small-tree {
  opacity: 0.9;
}

.tree-model.small-tree path {
  stroke-width: 3.5;
}

.bldg .top {
  fill: url(#buildingTop);
  stroke: rgba(93, 78, 61, 0.16);
  stroke-width: 2;
}

.bldg.culture .top {
  fill: url(#cultureTop);
}

.bldg.history .top {
  fill: #e5c49d;
}

.bldg.trend .top {
  fill: #ffe5bd;
}

.bldg.red .top {
  fill: #ce765d;
}

.bldg .side {
  fill: rgba(108, 93, 72, 0.18);
}

.bldg .stage {
  fill: #b35f4a;
}

.theatre-real .theatre-roof {
  fill: #f4e4d5;
  stroke: rgba(93, 78, 61, 0.16);
  stroke-width: 2;
}

.theatre-real .curtain {
  fill: #b85f52;
  opacity: 0.92;
}

.film-real .shop-window {
  fill: rgba(124, 154, 141, 0.32);
  stroke: rgba(62, 89, 74, 0.18);
  stroke-width: 1.5;
}

.film-real .film-strip {
  fill: none;
  stroke: #5b4436;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 7 5;
}

.lane-house .roof,
.villa-real .roof {
  fill: #c6916c;
  stroke: rgba(92, 61, 44, 0.16);
  stroke-width: 2;
}

.lane-house .window,
.villa-real .window {
  fill: rgba(255, 250, 229, 0.82);
  stroke: rgba(92, 61, 44, 0.2);
  stroke-width: 1.5;
}

.market-real .awning {
  fill: none;
  stroke: #f08065;
  stroke-width: 8;
  stroke-linecap: round;
}

.market-real .awning.stripe {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 3;
}

.wukang-real .wedge-side {
  fill: #a85f4c;
}

.wukang-real .wedge-top {
  fill: #cf8066;
  stroke: rgba(92, 61, 44, 0.2);
  stroke-width: 2;
}

.wukang-real .wukang-windows {
  fill: none;
  stroke: rgba(255, 237, 201, 0.9);
  stroke-width: 4;
  stroke-linecap: round;
}

.bldg text,
.shop-models text,
.metro-model text,
.product-pin text {
  font-family:
    "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  text-anchor: middle;
  font-weight: 850;
}

.bldg text {
  fill: #5a4133;
  font-size: 15px;
}

.bldg .tiny-label {
  fill: #816450;
  font-size: 12px;
}

.shop-building .shop-top {
  fill: #ff806b;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4;
}

.shop-building .shop-side {
  fill: rgba(154, 95, 77, 0.24);
}

.harmay-shop .shop-top {
  fill: #ff7f6d;
}

.fish-shop .shop-top {
  fill: #ff9b73;
}

.adidas-shop .shop-top {
  fill: #f27960;
}

.wiggle-shop .shop-top {
  fill: #ff8d65;
}

.shop-glass {
  fill: rgba(255, 255, 255, 0.58);
  stroke: rgba(132, 80, 66, 0.2);
  stroke-width: 1.5;
}

.book-icon {
  fill: rgba(255, 255, 255, 0.68);
  stroke: rgba(131, 77, 63, 0.26);
  stroke-width: 1.5;
}

.leaf-icon {
  fill: rgba(255, 255, 255, 0.76);
}

.wiggle-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 5;
  stroke-linecap: round;
}

.shop-models text {
  fill: #5d4437;
  font-size: 12px;
  font-weight: 900;
}

.animated-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 5px rgba(86, 78, 66, 0.16));
  animation: routeGlow 2.4s ease-in-out infinite;
}

.route-a-model {
  stroke: #246b93;
  stroke-width: 7;
  stroke-dasharray: 18 14;
  animation:
    routeGlow 2.4s ease-in-out infinite,
    svgDash 2s linear infinite;
}

.route-b-model {
  stroke: #f06aa1;
  stroke-width: 8;
}

.metro-model circle {
  fill: #fff1c9;
  stroke: #bd4f55;
  stroke-width: 7;
}

.metro-model text:first-of-type {
  fill: #bd4f55;
  font-size: 28px;
}

.metro-model text:last-of-type {
  fill: #5d4437;
  font-size: 14px;
}

.product-pin {
  animation: pinFloatSvg 3s ease-in-out infinite;
}

.product-pin rect {
  fill: rgba(255, 255, 255, 0.9);
  stroke: rgba(47, 138, 90, 0.18);
  stroke-width: 2;
}

.product-pin .variant-band {
  stroke: none;
  opacity: 0.92;
}

.lemon-limited rect:first-of-type {
  fill: rgba(248, 255, 218, 0.92);
}

.film-limited rect:first-of-type {
  fill: rgba(236, 248, 244, 0.94);
}

.theatre-limited rect:first-of-type {
  fill: rgba(255, 239, 232, 0.95);
}

.brick-limited rect:first-of-type {
  fill: rgba(255, 238, 224, 0.95);
}

.lemon-limited .variant-band { fill: #d8e764; }
.film-limited .variant-band { fill: #3c6478; }
.theatre-limited .variant-band { fill: #c65d56; }
.brick-limited .variant-band { fill: #b97355; }

.lemon-limited circle { fill: #3ca463; }
.film-limited circle { fill: #466f82; }
.theatre-limited circle { fill: #b94f55; }
.brick-limited circle { fill: #aa684f; }

.product-pin circle {
  fill: #2f8a5a;
}

.product-pin text {
  fill: #fff;
  font-size: 20px;
}

.product-pin text:last-of-type {
  fill: #2f7551;
  font-size: 10px;
}

.product-pin image {
  filter: drop-shadow(0 4px 5px rgba(47, 93, 60, 0.25));
}

.product-pin.main {
  animation-delay: 0.3s;
}

.map-compass {
  bottom: 18px;
}

@keyframes svgDash {
  to { stroke-dashoffset: -64; }
}

@keyframes pinFloatSvg {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes treePulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

/* Clearer, map-like 3D version: higher top-down angle, smaller labels, animated route. */
.anfu-true-3d-map {
  height: min(86vh, 760px) !important;
  min-height: 620px !important;
  overflow: hidden;
}

.map-stage {
  inset: 78px 18px 18px;
}

.map-ground {
  width: min(98%, 940px);
  height: 78%;
  min-height: 500px;
  transform: rotateX(40deg) rotateZ(-7deg) translateY(-8px);
  border-radius: 34px;
  animation: mapDrift 9s ease-in-out infinite;
}

.map-ground::before {
  inset: 18px;
  border-radius: 24px;
}

.map-road {
  box-shadow:
    inset 0 -6px 12px rgba(95, 81, 54, 0.08),
    0 8px 12px rgba(92, 78, 55, 0.08);
}

.map-road span,
.mini-building,
.trend-bubble,
.metro-marker,
.tree-row,
.popup-store {
  transform: rotateZ(7deg) rotateX(-40deg);
}

.map-road span {
  font-size: 11px;
  color: rgba(98, 71, 57, 0.82);
}

.anfu-road {
  left: 12%;
  right: 9%;
  top: 48%;
  height: 46px;
  transform: rotate(-19deg);
}

.changshu-road {
  right: 7%;
  top: 6%;
  width: 36px;
  height: 78%;
}

.wulumuqi-road {
  left: 38%;
  top: 7%;
  width: 34px;
  height: 57%;
}

.wukang-road {
  left: 8%;
  bottom: 2%;
  width: 38px;
  height: 40%;
}

.changshu-road span,
.wulumuqi-road span,
.wukang-road span {
  transform: translate(-50%, -50%) rotateZ(95deg) rotateX(-40deg);
}

.map-park {
  border-radius: 22px;
}

.park-left {
  left: 5%;
  top: 13%;
  width: 24%;
  height: 22%;
}

.park-right {
  right: 7%;
  bottom: 16%;
  width: 22%;
  height: 22%;
}

.map-route-line {
  height: 7px;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.66),
    0 8px 14px rgba(75, 78, 68, 0.16);
  animation: routeGlow 2.6s ease-in-out infinite;
}

.route-literary {
  left: 18%;
  top: 57%;
  width: 55%;
  transform: rotate(-41deg);
  background: repeating-linear-gradient(90deg, #246b93 0 14px, transparent 14px 24px);
  background-size: 48px 7px;
  animation:
    routeGlow 2.6s ease-in-out infinite,
    routeDash 1.8s linear infinite;
}

.route-trend {
  left: 40%;
  top: 55%;
  width: 43%;
  transform: rotate(-36deg);
}

.mini-building {
  padding: 7px;
  border-radius: 10px;
  font-size: 9px;
  line-height: 1.25;
  box-shadow:
    8px 12px 18px rgba(83, 68, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mini-building::before {
  content: "";
  position: absolute;
  left: 8px;
  right: -6px;
  top: -12px;
  height: 12px;
  transform: skewX(-36deg);
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(98, 71, 48, 0.08);
}

.mini-building::after {
  left: 8px;
  right: -8px;
  bottom: -12px;
  height: 12px;
}

.film-store { right: 24%; top: 17%; width: 96px; height: 58px; }
.drama-center { left: 36%; top: 30%; width: 130px; height: 74px; }
.anfu-201 { left: 18%; top: 49%; width: 82px; height: 58px; }
.anfu-284 { left: 31%; top: 50%; width: 80px; height: 54px; }
.villa-189 { left: 13%; top: 65%; width: 108px; height: 58px; }
.anfu-market { left: 31%; bottom: 15%; width: 94px; height: 58px; }
.wukang-building { left: 8%; bottom: 4%; width: 90px; height: 82px; }

.trend-bubble {
  min-width: 54px;
  height: 32px;
  padding: 0 9px;
  border-width: 3px;
  font-size: 9px;
  box-shadow: 0 10px 18px rgba(93, 63, 55, 0.16);
}

.harmay { right: 14%; top: 39%; }
.duozhuayu { right: 24%; top: 52%; }
.adidas { right: 33%; top: 62%; }
.wiggle { left: 42%; top: 69%; }

.metro-marker {
  right: 7%;
  top: 15%;
  width: 42px;
  height: 42px;
  border-width: 4px;
  font-size: 14px;
}

.metro-marker span {
  top: 46px;
  font-size: 9px;
}

.tree-row {
  gap: 6px;
}

.tree-row i {
  width: 22px;
  height: 22px;
  animation: treeBob 4.6s ease-in-out infinite;
}

.popup-store {
  grid-template-columns: 24px auto;
  column-gap: 6px;
  padding: 6px 8px 6px 6px;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(43, 92, 55, 0.2);
  animation: pinFloat 3.2s ease-in-out infinite;
}

.popup-store img {
  width: 18px;
  height: 38px;
}

.popup-store strong {
  width: 22px;
  height: 22px;
  font-size: 12px;
}

.popup-store span {
  font-size: 9px;
}

.main-pop {
  transform: rotateZ(7deg) rotateX(-40deg) scale(1.04);
}

.pop-a { right: 10%; top: 26%; }
.pop-b { right: 25%; top: 39%; animation-delay: 0.2s; }
.pop-c { left: 48%; top: 38%; animation-delay: 0.4s; }
.pop-d { left: 25%; bottom: 20%; animation-delay: 0.6s; }

.map-compass {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  z-index: 31;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #6a8176;
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}

.map-compass b {
  padding: 7px 12px;
  border-radius: 999px;
  color: #2f8a5a;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(47, 138, 90, 0.1);
}

.map-legend-3d {
  right: 18px;
  bottom: 58px;
  gap: 7px;
  padding: 11px 13px;
}

.map-legend-3d span {
  font-size: 10px;
}

.map-legend-3d i {
  width: 24px;
  height: 4px;
}

@keyframes routeDash {
  from { background-position: 0 0; }
  to { background-position: 48px 0; }
}

@keyframes routeGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.16); }
}

@keyframes pinFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes treeBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes mapDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

@keyframes paperTextureDrift {
  0% { background-position: 8% 18%, 78% 30%, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 10% 20%, 76% 28%, 26px 18px, -22px 16px, 8px 6px, -6px 8px; }
}

@keyframes doodleFloat {
  from { background-position: 0 0; }
  to { background-position: 420px 420px; }
}

@keyframes doodleSectionDrift {
  from { background-position: 0 0; }
  to { background-position: -360px 360px; }
}

@keyframes bubbleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(8px, -18px, 0) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes lemonSway {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(10px, -8px, 0) rotate(4deg); }
}

@keyframes bottleBreath {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

@keyframes logoFloat {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-8px); }
}

@keyframes paperLift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(0.18deg); }
}

@keyframes ticketShine {
  0%, 45% { transform: translateX(0) rotate(16deg); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translateX(420%) rotate(16deg); opacity: 0; }
}

@keyframes stampPop {
  0% { transform: rotate(-12deg) scale(1.45); opacity: 0.15; }
  65% { transform: rotate(-12deg) scale(0.92); opacity: 1; }
  100% { transform: rotate(-12deg) scale(1); opacity: 1; }
}

.real-anfu-map {
  height: min(92vh, 820px) !important;
  min-height: 680px !important;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 244, 202, 0.92), transparent 30%),
    linear-gradient(180deg, #fffdf6, #f4f8eb);
}

.anfu-real-image {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(81, 61, 42, 0.18);
}

.brand-map-note {
  position: absolute;
  left: 28px;
  top: 24px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(47, 138, 90, 0.16);
  box-shadow: 0 14px 32px rgba(47, 138, 90, 0.12);
  backdrop-filter: blur(14px);
}

.brand-map-note span {
  color: #668077;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-map-note strong {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.anfu-map-svg {
  width: min(100%, 620px);
  height: 100%;
  max-height: 100%;
  filter: drop-shadow(0 22px 42px rgba(67, 87, 52, 0.16));
}

.anfu-map-svg text {
  font-family:
    "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  fill: #4a3427;
}

.map-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.map-subtitle {
  font-size: 23px;
  font-weight: 700;
}

.main-road,
.side-road {
  fill: none;
  stroke: url(#roadFill);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-road {
  stroke-width: 88px;
}

.side-road {
  stroke-width: 58px;
}

.road-label {
  fill: #5d4437;
  font-weight: 800;
}

.road-label.main {
  font-size: 34px;
}

.road-label.small {
  font-size: 20px;
}

.route-a,
.route-b {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-a {
  stroke: #246b93;
  stroke-width: 7px;
  stroke-dasharray: 16 14;
}

.route-b {
  stroke: #f06aa1;
  stroke-width: 8px;
}

.tree-cluster circle {
  fill: url(#greenTree);
  stroke: rgba(84, 95, 55, 0.3);
  stroke-width: 2px;
}

.landmark rect,
.landmark circle {
  stroke: rgba(97, 64, 42, 0.18);
  stroke-width: 2px;
}

.landmark text {
  font-size: 20px;
  font-weight: 800;
}

.landmark .en {
  font-size: 15px;
  fill: #765f4e;
}

.theatre-card rect {
  fill: #f7e8dc;
}

.theatre-card .stage {
  fill: #b96b55;
}

.shop-card rect {
  fill: #f5ead9;
}

.old-card rect {
  fill: #e4c6a3;
}

.trend-card circle {
  fill: #f77e67;
}

.trend-card text {
  font-size: 19px;
}

.metro-pin circle {
  fill: #fff4cf;
  stroke: #c05655;
  stroke-width: 6px;
}

.metro-pin text:first-of-type {
  fill: #c05655;
  font-size: 34px;
  font-weight: 900;
}

.metro-pin text:last-of-type {
  fill: #4a3427;
  font-size: 20px;
  font-weight: 800;
}

.js-pin {
  filter: drop-shadow(0 14px 16px rgba(78, 57, 46, 0.22));
}

.js-pin path {
  fill: #2f8a5a;
  stroke: #fff7e6;
  stroke-width: 7px;
}

.js-pin circle {
  fill: rgba(255, 255, 255, 0.22);
}

.js-pin text {
  fill: #fff;
  font-size: 30px;
  font-weight: 900;
}

.js-a { transform: translate(780px, 220px); }
.js-b { transform: translate(620px, 424px); }
.js-c { transform: translate(468px, 508px); }
.js-d { transform: translate(248px, 924px); }

.map-legend rect {
  fill: rgba(255, 253, 246, 0.9);
  stroke: #92745b;
  stroke-width: 3px;
}

.map-legend text {
  font-size: 17px;
  font-weight: 800;
}

.legend-culture { fill: #9e4a4a; }
.legend-history { fill: #b99c4c; }
.legend-trend { fill: #f26f92; }

.legend-route-a {
  stroke: #246b93;
  stroke-width: 5px;
  stroke-dasharray: 12 9;
}

.legend-route-b {
  stroke: #f06aa1;
  stroke-width: 6px;
}

.map-fallback {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.map-fallback a {
  color: var(--green);
  font-weight: 650;
}

.route-side-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}

.virtual-activity-card {
  position: relative;
  padding: 16px;
  border: 2px solid rgba(93, 75, 48, 0.14);
  border-radius: 22px 16px 24px 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(242, 199, 57, 0.15), transparent 26%),
    repeating-linear-gradient(0deg, rgba(106, 74, 47, 0.026) 0 1px, transparent 1px 9px),
    rgba(255, 250, 231, 0.9);
  box-shadow: 0 24px 62px rgba(88, 69, 43, 0.1);
}

.virtual-activity-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -11px;
  width: 68px;
  height: 22px;
  border-radius: 4px;
  background: rgba(242, 199, 57, 0.7);
  transform: rotate(-5deg);
}

.virtual-scene {
  position: relative;
  height: clamp(250px, 28vw, 360px);
  overflow: hidden;
  border: 2px dashed rgba(31, 117, 72, 0.2);
  border-radius: 20px 14px 22px 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at 86% 16%, rgba(242, 199, 57, 0.2), transparent 24%),
    linear-gradient(145deg, #edf5dd, #fff5d8 55%, #dbeac8);
  perspective: 980px;
}

.scene-generated-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    saturate(1.03)
    contrast(1.02)
    brightness(1.02);
}

.virtual-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 231, 0.08), transparent 42%),
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.2), transparent 22%);
}

.scene-generated-image ~ .scene-ground,
.scene-generated-image ~ .scene-road,
.scene-generated-image ~ .scene-crosswalk,
.scene-generated-image ~ .scene-building,
.scene-generated-image ~ .scene-shop,
.scene-generated-image ~ .scene-cat-house,
.scene-generated-image ~ .scene-crate,
.scene-generated-image ~ .scene-person,
.scene-generated-image ~ .scene-tree,
.scene-generated-image ~ .scene-route-line {
  display: none;
}

.scene-ground {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 92%;
  height: 66%;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-10deg);
  border: 2px solid rgba(31, 117, 72, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(31, 117, 72, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 117, 72, 0.08) 1px, transparent 1px),
    #eef3d2;
  background-size: 28px 28px;
  box-shadow:
    0 34px 52px rgba(75, 84, 52, 0.2),
    inset 0 0 0 8px rgba(255, 250, 231, 0.22);
}

.scene-road {
  position: absolute;
  left: 14%;
  top: 58%;
  z-index: 1;
  width: 74%;
  height: 42px;
  transform: rotate(-20deg);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 250, 231, 0.64), transparent 42%),
    #b9c8a8;
  box-shadow:
    0 7px 0 rgba(255, 250, 231, 0.72),
    0 16px 18px rgba(75, 84, 52, 0.16);
}

.scene-road::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 250, 231, 0.92) 0 18px, transparent 18px 30px);
}

.scene-crosswalk {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 34px;
  transform: rotate(-20deg);
  background: repeating-linear-gradient(90deg, rgba(255, 250, 231, 0.92) 0 6px, transparent 6px 12px);
  opacity: 0.92;
}

.crosswalk-one {
  left: 23%;
  top: 64%;
}

.crosswalk-two {
  right: 16%;
  top: 43%;
}

.scene-building {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 84px;
  min-height: 58px;
  padding: 8px;
  transform: rotateZ(-7deg);
  border: 2px solid rgba(106, 74, 47, 0.18);
  border-radius: 12px 10px 14px 10px;
  color: #254b36;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 8px, transparent 8px 16px),
    #e6d4b6;
  box-shadow:
    9px 12px 0 rgba(106, 74, 47, 0.12),
    inset 0 8px 0 rgba(255, 250, 231, 0.42);
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.scene-building::before {
  content: "";
  position: absolute;
  left: 8px;
  right: -9px;
  top: -16px;
  height: 16px;
  transform: skewX(-36deg);
  border: 2px solid rgba(106, 74, 47, 0.12);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 250, 231, 0.72);
}

.building-library {
  left: 31%;
  top: 25%;
  width: 94px;
  background-color: #e7c7b2;
}

.building-dorm {
  right: 10%;
  top: 20%;
  width: 96px;
  background-color: #d4d9c4;
}

.building-park {
  left: 10%;
  bottom: 23%;
  width: 94px;
  background-color: #cfe3b5;
}

.scene-route-line {
  position: absolute;
  left: 18%;
  top: 58%;
  z-index: 3;
  width: 64%;
  height: 7px;
  transform: rotate(-23deg);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #1f7548 0 18px, transparent 18px 28px);
  filter: drop-shadow(0 4px 0 rgba(255, 250, 231, 0.9));
  animation: routeDash 2s linear infinite;
}

.scene-shop {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 58px;
  padding: 8px;
  transform: rotateX(0deg) rotateZ(-4deg);
  border: 2px solid rgba(106, 74, 47, 0.14);
  border-radius: 16px 12px 18px 14px;
  color: #254b36;
  background:
    linear-gradient(180deg, rgba(255, 250, 231, 0.96), rgba(244, 223, 120, 0.72));
  box-shadow: 8px 12px 0 rgba(106, 74, 47, 0.08);
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-weight: 900;
  text-align: center;
}

.scene-shop::before {
  content: "";
  position: absolute;
  left: 8px;
  right: -8px;
  top: -16px;
  height: 16px;
  transform: skewX(-34deg);
  border-radius: 8px 8px 0 0;
  background: rgba(242, 199, 57, 0.64);
  border: 2px solid rgba(106, 74, 47, 0.12);
  border-bottom: 0;
}

.scene-awning {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 12px;
  height: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #1f7548 0 12px, #fff8df 12px 22px);
  opacity: 0.76;
}

.shop-main {
  right: 12%;
  top: 41%;
}

.shop-club {
  left: 13%;
  top: 31%;
  background:
    linear-gradient(180deg, rgba(255, 250, 231, 0.96), rgba(190, 226, 170, 0.78));
}

.scene-cat-house {
  position: absolute;
  right: 24%;
  bottom: 24%;
  z-index: 5;
  display: grid;
  width: 78px;
  height: 54px;
  place-items: end center;
  padding-bottom: 7px;
  transform: rotate(-7deg);
  border: 2px solid rgba(106, 74, 47, 0.16);
  border-radius: 12px 12px 14px 14px;
  color: #6a4a2f;
  background: #f7d88d;
  box-shadow: 7px 10px 0 rgba(106, 74, 47, 0.1);
  font-size: 11px;
  font-weight: 900;
}

.scene-cat-house::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: -22px;
  height: 34px;
  transform: rotate(45deg);
  border-left: 2px solid rgba(106, 74, 47, 0.16);
  border-top: 2px solid rgba(106, 74, 47, 0.16);
  background: #e9b965;
}

.scene-cat-house::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 22px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 14px 14px 4px 4px;
  background: rgba(106, 74, 47, 0.28);
}

.scene-crate {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 54px;
  height: 34px;
  place-items: center;
  transform: rotate(-10deg);
  border: 2px solid rgba(106, 74, 47, 0.18);
  border-radius: 8px;
  color: #1f7548;
  background:
    repeating-linear-gradient(90deg, rgba(31, 117, 72, 0.14) 0 5px, transparent 5px 10px),
    #f4d66e;
  box-shadow: 5px 7px 0 rgba(106, 74, 47, 0.12);
  font-size: 11px;
  font-weight: 950;
}

.crate-one {
  right: 9%;
  bottom: 28%;
}

.crate-two {
  right: 29%;
  bottom: 17%;
  transform: rotate(6deg);
}

.scene-person {
  position: absolute;
  z-index: 6;
  width: 16px;
  height: 34px;
  border-radius: 999px 999px 8px 8px;
  background: #315e70;
  box-shadow:
    0 -10px 0 -2px #f7c46b,
    0 8px 0 rgba(106, 74, 47, 0.12);
}

.scene-person::before,
.scene-person::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: #315e70;
}

.scene-person::before {
  left: -8px;
  transform: rotate(-28deg);
}

.scene-person::after {
  right: -8px;
  transform: rotate(28deg);
}

.person-one {
  left: 32%;
  top: 52%;
  transform: rotate(-8deg);
}

.person-two {
  right: 32%;
  top: 45%;
  transform: rotate(8deg);
  background: #d86988;
}

.person-two::before,
.person-two::after {
  background: #d86988;
}

.person-three {
  right: 18%;
  bottom: 32%;
  transform: rotate(-5deg);
  background: #1f7548;
}

.person-three::before,
.person-three::after {
  background: #1f7548;
}

.scene-tree {
  position: absolute;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 52% 48% 58% 42%;
  background: #6f9d59;
  box-shadow:
    12px 4px 0 #86a965,
    6px -11px 0 #5f944f,
    0 18px 0 -15px #6a4a2f;
  animation: treeBob 4.6s ease-in-out infinite;
}

.tree-one { left: 12%; bottom: 22%; }
.tree-two { right: 13%; bottom: 20%; animation-delay: 0.4s; }
.tree-three { left: 46%; top: 18%; animation-delay: 0.8s; }

.scene-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 3px solid #fff8df;
  border-radius: 50% 50% 50% 8px;
  color: #fff8df;
  background: #1f7548;
  box-shadow:
    0 10px 20px rgba(31, 63, 46, 0.3),
    0 0 0 4px rgba(255, 250, 231, 0.34);
  cursor: pointer;
  font-weight: 950;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.scene-point:hover,
.scene-point.is-active {
  transform: translate(-50%, -50%) translateY(-5px) rotate(-8deg);
  background: #d86988;
}

.scene-detail {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  min-height: 156px;
  padding: 16px 14px;
  overflow: hidden;
  border: 2px solid rgba(31, 117, 72, 0.1);
  border-radius: 22px 14px 24px 16px;
  background:
    radial-gradient(circle at 9% 12%, rgba(242, 199, 57, 0.24), transparent 28%),
    radial-gradient(circle at 94% 22%, rgba(31, 117, 72, 0.1), transparent 22%),
    repeating-linear-gradient(0deg, rgba(106, 74, 47, 0.024) 0 1px, transparent 1px 8px),
    rgba(255, 253, 242, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 14px 32px rgba(88, 69, 43, 0.08);
}

.scene-detail::before,
.scene-detail::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.scene-detail::before {
  left: 18px;
  top: 12px;
  width: 56px;
  height: 16px;
  border-radius: 4px;
  background: rgba(242, 199, 57, 0.55);
  transform: rotate(-5deg);
}

.scene-detail::after {
  right: 78px;
  bottom: 14px;
  width: 58px;
  height: 46px;
  border: 4px solid rgba(31, 117, 72, 0.1);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 22px 0 0;
  transform: rotate(-12deg);
}

.scene-cat {
  position: relative;
  z-index: 1;
  display: grid;
  width: 92px;
  min-height: 112px;
  place-items: center;
  transform: rotate(-5deg);
  transition:
    transform 200ms ease,
    filter 200ms ease;
}

.scene-cat::before {
  content: "";
  position: absolute;
  inset: 9px 6px 21px;
  border: 3px solid rgba(255, 250, 231, 0.95);
  border-radius: 20px 16px 22px 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), transparent 46%),
    var(--cat-tone, #f7c46b);
  box-shadow:
    0 12px 0 rgba(185, 116, 40, 0.18),
    0 20px 28px rgba(88, 69, 43, 0.16);
}

.scene-cat::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  filter: blur(1px);
}

.scene-cat img {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 3px solid rgba(255, 250, 231, 0.96);
  border-radius: 18px 14px 20px 14px;
  box-shadow:
    inset 0 -10px 0 rgba(255, 250, 231, 0.28),
    0 10px 16px rgba(88, 69, 43, 0.12);
}

.scene-cat-sticker {
  position: relative;
  z-index: 3;
  display: inline-grid;
  min-width: 72px;
  height: 24px;
  margin-top: -15px;
  place-items: center;
  transform: rotate(3deg);
  border: 2px solid rgba(106, 74, 47, 0.18);
  border-radius: 999px;
  color: #1f7548;
  background: #fff8df;
  box-shadow: 0 5px 0 rgba(106, 74, 47, 0.1);
  font-family: "Trebuchet MS", "PingFang SC", sans-serif;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.scene-cat.cat-green {
  --cat-tone: #bfe0a2;
  transform: rotate(4deg);
}

.scene-cat.cat-pink {
  --cat-tone: #f2b5b2;
  transform: rotate(-2deg);
}

.scene-cat.cat-blue {
  --cat-tone: #b8d8df;
  transform: rotate(5deg);
}

.scene-cat.is-changing {
  animation: catStickerPop 260ms ease both;
}

.scene-copy .eyebrow {
  margin-bottom: 6px;
  font-size: 10px;
}

.scene-copy h3,
.scene-copy p {
  margin-bottom: 6px;
}

.scene-copy h3 {
  color: #1f4f34;
  font-size: 17px;
  line-height: 1.25;
}

.scene-copy p {
  color: rgba(67, 60, 45, 0.82);
  font-size: 13px;
  line-height: 1.6;
}

.scene-copy strong {
  display: block;
  max-width: 148px;
  color: #1f7548;
  font-size: 12px;
  line-height: 1.45;
}

.scene-detail [data-scene-product] {
  position: absolute;
  right: 9px;
  bottom: 11px;
  z-index: 0;
  width: 40px;
  height: 90px;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 10px 14px rgba(31, 63, 46, 0.18));
}

.scene-copy {
  position: relative;
  z-index: 1;
  padding-right: 26px;
}

@keyframes catStickerPop {
  0% {
    opacity: 0.72;
    transform: rotate(-8deg) scale(0.9);
  }
  72% {
    opacity: 1;
    transform: rotate(5deg) scale(1.06);
  }
  100% {
    opacity: 1;
  }
}

.route-stops {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-stops li {
  display: grid;
  position: relative;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  min-height: 190px;
  padding: 18px 16px 16px;
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(88, 69, 43, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.route-stops li::before,
.route-stops li::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.route-stops li::before {
  left: 20px;
  top: -2px;
  width: 54px;
  height: 16px;
  border-radius: 4px;
  background: rgba(242, 199, 57, 0.62);
  transform: rotate(-4deg);
}

.route-stops li::after {
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 60%, rgba(31, 117, 72, 0.12) 0 10px, transparent 11px),
    radial-gradient(circle at 24% 18%, rgba(31, 117, 72, 0.1) 0 5px, transparent 6px),
    radial-gradient(circle at 48% 8%, rgba(31, 117, 72, 0.1) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 18%, rgba(31, 117, 72, 0.1) 0 5px, transparent 6px);
}

.route-stop-badge {
  position: relative;
  display: grid;
  width: 68px;
  height: 82px;
  place-items: center;
  transform: rotate(-5deg);
}

.route-stop-badge::before {
  content: "";
  position: absolute;
  inset: 6px 3px 18px;
  border: 3px solid rgba(255, 250, 231, 0.95);
  border-radius: 15px 12px 17px 12px;
  background: #f4d66e;
  box-shadow:
    0 9px 0 rgba(185, 116, 40, 0.16),
    0 14px 20px rgba(88, 69, 43, 0.14);
}

.route-stop-badge img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid rgba(255, 250, 231, 0.96);
  border-radius: 13px 10px 14px 10px;
  box-shadow: 0 8px 12px rgba(88, 69, 43, 0.12);
}

.route-stop-badge b {
  position: absolute;
  right: -2px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid rgba(255, 250, 231, 0.98);
  border-radius: 50%;
  color: #fff8df;
  background: #1f7548;
  box-shadow: 0 6px 10px rgba(31, 63, 46, 0.18);
  font-size: 15px;
  font-weight: 950;
}

.route-stops p,
.route-stops h3 {
  margin-bottom: 0;
}

.route-stops h3 {
  font-size: 18px;
  line-height: 1.35;
}

.route-stops em {
  display: inline-block;
  margin: 8px 0 10px;
  padding: 4px 8px;
  border: 1px dashed rgba(31, 117, 72, 0.28);
  border-radius: 999px;
  color: #1f7548;
  background: rgba(255, 250, 231, 0.76);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.route-stops p {
  font-size: 14px;
  line-height: 1.72;
}

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

.play-grid article {
  min-height: 220px;
}

.play-grid h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--green), var(--lemon));
}

.spread-section {
  background:
    linear-gradient(180deg, rgba(248, 240, 216, 0.92), rgba(255, 248, 231, 0.98)),
    #fff8e7;
}

.spread-copy {
  max-width: 760px;
}

.spread-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.spread-flow div {
  position: relative;
  padding: 28px;
}

.spread-flow span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.spread-flow strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 460;
}

.site-footer {
  padding: 30px clamp(22px, 5vw, 78px) 38px;
  background: #efe5ca;
  border-top: 1px solid rgba(106, 74, 47, 0.14);
}

.site-footer p {
  max-width: 1180px;
  margin: 0;
  color: #706651;
  font-size: 13px;
}

.login-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(242, 199, 57, 0.18), transparent 28%),
    rgba(22, 35, 27, 0.46);
  backdrop-filter: blur(10px);
}

.login-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: clamp(26px, 5vw, 42px);
  border: 2px solid rgba(93, 75, 48, 0.18);
  border-radius: 30px 22px 34px 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(242, 199, 57, 0.2), transparent 24%),
    repeating-linear-gradient(0deg, rgba(106, 74, 47, 0.03) 0 1px, transparent 1px 10px),
    #fff8e7;
  box-shadow: 0 38px 110px rgba(20, 34, 26, 0.34);
}

.login-dialog::before {
  content: "";
  position: absolute;
  left: 34px;
  top: -12px;
  width: 84px;
  height: 26px;
  border-radius: 4px;
  background: rgba(244, 223, 120, 0.72);
  transform: rotate(-6deg);
}

.login-dialog h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
}

.login-dialog p {
  margin-bottom: 26px;
  color: #646047;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px dashed rgba(31, 117, 72, 0.3);
  border-radius: 50%;
  color: #1f7548;
  background: rgba(255, 250, 231, 0.76);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.login-form {
  display: grid;
  gap: 16px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: #254b36;
  font-size: 14px;
  font-weight: 900;
}

.login-form input[type="tel"],
.login-form input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 2px solid rgba(93, 75, 48, 0.14);
  border-radius: 16px 12px 18px 14px;
  color: #254b36;
  background: rgba(255, 253, 242, 0.86);
  outline: none;
}

.login-form input:focus {
  border-color: rgba(31, 117, 72, 0.5);
  box-shadow: 0 0 0 4px rgba(31, 117, 72, 0.08);
}

.code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.code-row button {
  min-height: 48px;
  padding: 0 14px;
  border: 2px dashed rgba(31, 117, 72, 0.28);
  border-radius: 16px 12px 18px 14px;
  color: #1f7548;
  background: rgba(255, 250, 231, 0.82);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.code-row button:disabled {
  cursor: wait;
  opacity: 0.76;
}

.code-hint {
  display: block;
  margin-top: 2px;
  color: #7c735a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.code-hint.is-active {
  color: #1f7548;
}

.code-hint.is-error {
  color: #b94f55;
}

.age-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: #6b674f !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.6;
}

.age-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #1f7548;
}

.modal-submit {
  width: 100%;
  margin-top: 4px;
}

.login-form small {
  color: #7c735a;
  font-size: 12px;
  line-height: 1.6;
}

.login-toast {
  position: fixed;
  right: clamp(18px, 4vw, 44px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 95;
  max-width: 320px;
  padding: 16px 18px;
  border: 2px solid rgba(31, 117, 72, 0.24);
  border-radius: 20px 14px 22px 16px;
  color: #16432f;
  background:
    repeating-linear-gradient(-10deg, rgba(242, 199, 57, 0.12) 0 6px, transparent 6px 12px),
    #fff8df;
  box-shadow: 0 20px 54px rgba(88, 69, 43, 0.18);
  font-weight: 900;
}

/* Poster-aligned crayon drawing system */
.brand-lockup strong,
h1,
h2,
h3,
.button,
.claim-chip,
.login-button,
.route-stop-badge b,
.theme-metrics strong,
.member-ticket strong,
.service-grid strong,
.spread-flow strong {
  font-family:
    "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
}

.brand-lockup strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow:
    0.7px 0 rgba(31, 117, 72, 0.18),
    -0.6px 0 rgba(31, 117, 72, 0.12),
    0 1.1px rgba(242, 199, 57, 0.18);
}

.brand-lockup small,
.main-nav a,
.utility-bar,
.eyebrow,
.poster-frame figcaption,
.member-ticket span,
.service-grid span,
.theme-metrics span,
.insight-grid span,
.spread-flow span {
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}

h1,
h2 {
  color: #16432f;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow:
    1px 0 rgba(22, 67, 47, 0.14),
    -1px 0 rgba(22, 67, 47, 0.1),
    0 1px rgba(22, 67, 47, 0.1),
    1.6px 1.8px rgba(242, 199, 57, 0.16);
}

h1 {
  line-height: 0.98;
  transform: rotate(-0.4deg);
}

h2 {
  transform: rotate(-0.25deg);
}

h3 {
  color: #254b36;
  font-weight: 800;
  text-shadow:
    0.6px 0 rgba(37, 75, 54, 0.13),
    0 1px rgba(242, 199, 57, 0.12);
}

p {
  color: #6b674f;
}

.hero-subtitle,
.section-heading p,
.theme-copy p,
.poster-copy p {
  color: #646047;
}

.eyebrow {
  color: #1f7548;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow:
    0.5px 0 rgba(31, 117, 72, 0.18),
    0 1px rgba(242, 199, 57, 0.18);
}

.section-heading h2::after,
.poster-copy h2::after,
.theme-copy h2::after {
  height: 12px;
  border-radius: 6px 14px 8px 16px;
  background:
    repeating-linear-gradient(
      -8deg,
      rgba(242, 199, 57, 0.92) 0 8px,
      rgba(242, 199, 57, 0.66) 8px 13px,
      rgba(255, 236, 143, 0.72) 13px 18px
    );
  filter: saturate(1.08);
}

.button {
  border-radius: 18px 24px 18px 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.button.primary {
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.1) 0 6px, transparent 6px 12px),
    #1f7548;
  border: 2px solid rgba(22, 67, 47, 0.26);
}

.button.ghost {
  border: 2px dashed rgba(31, 117, 72, 0.34);
  background:
    repeating-linear-gradient(-10deg, rgba(242, 199, 57, 0.1) 0 7px, transparent 7px 14px),
    rgba(255, 249, 229, 0.76);
}

.insight-grid article,
.play-grid article,
.spread-flow div,
.route-stops li,
.theme-metrics div {
  border: 2px solid rgba(93, 75, 48, 0.13);
  border-radius: 18px 12px 20px 14px;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 199, 57, 0.08), transparent 22%),
    repeating-linear-gradient(0deg, rgba(106, 74, 47, 0.025) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, rgba(255, 250, 231, 0.92), rgba(245, 234, 201, 0.82));
}

.insight-grid article:nth-child(2),
.play-grid article:nth-child(2),
.spread-flow div:nth-child(2),
.route-stops li:nth-child(2) {
  transform: rotate(0.35deg);
}

.insight-grid article:nth-child(3),
.play-grid article:nth-child(3),
.spread-flow div:nth-child(3),
.route-stops li:nth-child(3) {
  transform: rotate(-0.28deg);
}

.poster-points span {
  border: 2px dashed rgba(31, 117, 72, 0.34);
  border-radius: 20px 16px 22px 14px;
  background:
    repeating-linear-gradient(-12deg, rgba(242, 199, 57, 0.09) 0 6px, transparent 6px 13px),
    rgba(255, 250, 231, 0.84);
}

.poster-frame {
  border: 2px solid rgba(93, 75, 48, 0.14);
  border-radius: 22px 30px 24px 18px;
}

.map-sky,
.map-legend-3d,
.map-compass b {
  border: 2px dashed rgba(31, 117, 72, 0.2);
  background:
    repeating-linear-gradient(-10deg, rgba(242, 199, 57, 0.08) 0 5px, transparent 5px 13px),
    rgba(255, 250, 231, 0.78);
}

.map-road-name,
.bldg text,
.shop-models text,
.metro-model text,
.product-pin text,
.map-sky strong {
  font-family:
    "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-weight: 900;
  paint-order: stroke fill;
  stroke: rgba(255, 248, 226, 0.38);
  stroke-width: 1.2px;
}

.animated-route,
.route-a-model,
.route-b-model {
  stroke-linecap: round;
  filter:
    drop-shadow(0 2px 0 rgba(255, 250, 231, 0.68))
    drop-shadow(0 4px 4px rgba(106, 74, 47, 0.14));
}

.site-header,
.poster-section,
.theme-section,
.route-section,
.spread-section,
.site-footer {
  background-blend-mode: multiply, normal;
}

.old-map-hidden {
  display: none !important;
}

.anfu-true-3d-map {
  background:
    radial-gradient(circle at 20% 12%, rgba(242, 199, 57, 0.18), transparent 28%),
    linear-gradient(145deg, #f5edd5, #fff8e7 48%, #e9edd0) !important;
}

.campus-crayon-map {
  width: min(100%, 720px);
  height: min(100%, 100%);
  max-height: 690px;
  overflow: visible;
  filter:
    drop-shadow(0 22px 34px rgba(88, 69, 43, 0.18))
    drop-shadow(0 2px 0 rgba(255, 250, 231, 0.85));
}

.campus-crayon-map text {
  font-family:
    "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-weight: 900;
  paint-order: stroke fill;
  stroke: rgba(255, 250, 231, 0.58);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.campus-paper {
  fill: #fff8df;
  stroke: rgba(106, 74, 47, 0.22);
  stroke-width: 4;
  stroke-dasharray: 12 10;
}

.campus-paper-texture {
  fill: url(#paperDots);
  opacity: 0.8;
}

.campus-green-areas .park,
.campus-green-areas .grass {
  fill: #b7d99d;
  stroke: rgba(31, 117, 72, 0.26);
  stroke-width: 5;
}

.campus-green-areas .east-park {
  fill: #bde6b1;
}

.campus-green-areas .south-corner {
  fill: #a9d88d;
  opacity: 0.85;
}

.campus-roads .road {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.campus-roads .big-road {
  stroke: #efc56b;
  stroke-width: 46;
}

.campus-roads .bottom-road {
  stroke: #e9bd63;
}

.campus-roads .vertical-road {
  stroke: #fff5d7;
  stroke-width: 28;
}

.campus-roads .lane {
  stroke: #d9dbe4;
  stroke-width: 22;
}

.campus-roads .alley {
  stroke: #d9dbe4;
  stroke-width: 18;
}

.campus-roads .water {
  fill: none;
  stroke: #8ec9dd;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 20 10;
}

.campus-roads .trail {
  fill: none;
  stroke: #dc8c83;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 4 16;
}

.campus-buildings .pink-block {
  fill: #f7c4bd;
  stroke: rgba(199, 112, 91, 0.22);
  stroke-width: 5;
}

.campus-buildings .building {
  fill: #cfc6b9;
  stroke: rgba(93, 75, 48, 0.24);
  stroke-width: 4;
}

.campus-buildings .large {
  fill: #bfb8ac;
}

.campus-buildings .side-building {
  fill: #c7beb1;
}

.campus-buildings .north {
  fill: #bfb6a8;
}

.campus-buildings .east {
  fill: #cfc5b6;
}

.campus-labels .road-label {
  fill: #594530;
  font-size: 32px;
}

.campus-labels .place-label {
  fill: #c65d56;
  font-size: 38px;
}

.campus-labels .place-label.main {
  font-size: 46px;
}

.campus-labels .place-label.side {
  fill: #645746;
  font-size: 34px;
}

.campus-labels .park-label {
  fill: #2e8b4d;
  font-size: 34px;
}

.tree-crayon path {
  fill: none;
  stroke: #7a5634;
  stroke-width: 7;
  stroke-linecap: round;
}

.tree-crayon circle {
  fill: #5f944f;
  stroke: rgba(31, 117, 72, 0.28);
  stroke-width: 3;
}

.tree-crayon circle:nth-of-type(2) {
  fill: #86a965;
}

.tree-crayon circle:nth-of-type(3) {
  fill: #6d9a57;
}

.map-icon {
  font-size: 30px;
  stroke-width: 0;
}

.campus-routes .cat-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 0 rgba(255, 250, 231, 0.8));
}

.campus-routes .route-main {
  stroke: #1f7548;
  stroke-width: 10;
  stroke-dasharray: 22 14;
  animation: svgDash 2.3s linear infinite;
}

.campus-routes .route-side {
  stroke: #d86988;
  stroke-width: 9;
  stroke-dasharray: 6 18;
}

.campus-pin {
  animation: pinFloatSvg 3.2s ease-in-out infinite;
}

.campus-pin:nth-child(2) {
  animation-delay: 0.25s;
}

.campus-pin:nth-child(3) {
  animation-delay: 0.45s;
}

.campus-pin:nth-child(4) {
  animation-delay: 0.65s;
}

.campus-pin rect {
  fill: rgba(255, 250, 231, 0.93);
  stroke: rgba(31, 117, 72, 0.24);
  stroke-width: 4;
  stroke-dasharray: 9 6;
}

.campus-pin image {
  clip-path: inset(0 round 10px);
  filter: drop-shadow(0 4px 5px rgba(88, 69, 43, 0.18));
}

.campus-pin circle {
  fill: #1f7548;
  stroke: #f2c739;
  stroke-width: 5;
}

.campus-pin text {
  fill: #fff;
  stroke: rgba(22, 67, 47, 0.24);
  stroke-width: 1.2px;
  font-size: 28px;
}

.campus-pin text:last-of-type {
  fill: #1f7548;
  stroke: rgba(255, 250, 231, 0.76);
  stroke-width: 4px;
  font-size: 21px;
}

.pin-b circle {
  fill: #d86988;
}

.pin-c circle {
  fill: #c65d56;
}

.pin-d circle {
  fill: #6f9d59;
}

.map-compass span,
.map-compass b,
.map-legend-3d span {
  font-family:
    "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-weight: 900;
}

.real-campus-map3d {
  position: absolute;
  inset: -6px 6px 46px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.real-map-board {
  position: relative;
  width: min(99%, 1120px);
  aspect-ratio: 1;
  transform: rotateX(32deg) rotateZ(-1.5deg) translateY(6px);
  transform-style: preserve-3d;
  border-radius: 24px;
  box-shadow:
    0 46px 86px rgba(50, 67, 45, 0.28),
    0 0 0 6px rgba(255, 250, 231, 0.76);
  animation: mapDrift 10s ease-in-out infinite;
}

.real-map-board::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -3;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 231, 0.84), rgba(206, 222, 190, 0.72));
  transform: translateZ(-28px) translateY(24px);
  box-shadow: 0 18px 28px rgba(43, 67, 45, 0.16);
}

.real-map-board img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(91, 69, 48, 0.14);
  filter:
    saturate(1.08)
    contrast(1.07)
    brightness(1.02);
}

.real-map-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.12), transparent 22%);
  mix-blend-mode: screen;
}

.map-depth {
  position: absolute;
  inset: 10px;
  z-index: -2;
  border-radius: 24px;
  background: rgba(106, 74, 47, 0.16);
}

.depth-one {
  transform: translateZ(-18px) translateY(20px);
}

.depth-two {
  transform: translateZ(-36px) translateY(38px);
  background: rgba(106, 74, 47, 0.1);
}

.real-route-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 4;
}

.real-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: stroke fill;
  stroke-width: 9;
  stroke-dasharray: 20 14;
  filter:
    drop-shadow(0 2px 0 rgba(255, 250, 231, 0.82))
    drop-shadow(0 5px 7px rgba(74, 55, 34, 0.16));
  animation: svgDash 2.4s linear infinite;
}

.route-find {
  stroke: #1f7548;
}

.real-map-pin path {
  fill: #fff8df;
  stroke: #1f7548;
  stroke-width: 5;
  transform: scale(0.72);
}

.real-map-pin circle {
  fill: #1f7548;
  stroke: #f2c739;
  stroke-width: 5;
  transform: scale(0.78);
}

.real-map-pin text {
  font-family:
    "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  fill: #fff;
  font-size: 26px;
  font-weight: 900;
  text-anchor: middle;
  paint-order: stroke fill;
  stroke: rgba(22, 67, 47, 0.3);
  stroke-width: 2;
}

.real-map-pin .pin-note {
  fill: #16432f;
  font-size: 18px;
  stroke: rgba(255, 250, 231, 0.86);
  stroke-width: 5;
}

.pin-b path,
.pin-b circle {
  stroke: #d86988;
}

.pin-b circle {
  fill: #d86988;
}

.pin-c path,
.pin-c circle {
  stroke: #c65d56;
}

.pin-c circle {
  fill: #c65d56;
}

.pin-d path,
.pin-d circle {
  stroke: #6f9d59;
}

.pin-d circle {
  fill: #6f9d59;
}

.real-map-pin image {
  filter: drop-shadow(0 6px 8px rgba(74, 55, 34, 0.22));
  transform: scale(0.78);
  transform-origin: center;
}

.treasure-props text {
  font-size: 28px;
  filter: drop-shadow(0 5px 6px rgba(74, 55, 34, 0.18));
}

@media (max-width: 980px) {
  .hero,
  .theme-section,
  .poster-section,
  .service-section,
  .route-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: -1;
  }

  .hero-visual {
    min-height: 540px;
  }

  .poster-frame {
    max-width: 620px;
    margin-inline: auto;
  }

  .insight-grid,
  .play-grid,
  .spread-flow,
  .route-stops,
  .zine-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .virtual-scene {
    height: 320px;
  }

  .product-zine-paper {
    min-height: 780px;
    padding-top: 72px;
  }

  .doodle-glass,
  .doodle-cap {
    opacity: 0.38;
  }

  .doodle-lemon {
    right: 24px;
  }

  .product-sticker {
    left: 24px;
    opacity: 0.9;
  }
}

@media (max-width: 680px) {
  .utility-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .utility-bar div {
    width: 100%;
    justify-content: space-between;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-right {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .header-actions {
    width: 100%;
  }

  .claim-chip,
  .login-button {
    flex: 1;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-cat-logo {
    left: 0;
    top: 20px;
    width: 112px;
    border-width: 6px;
    border-radius: 20px;
  }

  .cat-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .bottle {
    width: 172px;
    height: 396px;
  }

  .bottle::before {
    top: -88px;
    width: 72px;
    height: 124px;
  }

  .bottle-neck {
    top: -102px;
    width: 78px;
  }

  .bottle-label {
    left: 16px;
    right: 16px;
    bottom: 70px;
    min-height: 138px;
  }

  .bottle-label strong {
    font-size: 23px;
  }

  .ice-plate {
    width: 260px;
  }

  .insight-grid,
  .play-grid,
  .spread-flow,
  .route-stops,
  .zine-badges,
  .service-grid,
  .theme-metrics {
    grid-template-columns: 1fr;
  }

  .product-zine-paper {
    min-height: auto;
    padding: 58px 20px 34px;
  }

  .product-zine-paper::before,
  .product-zine-paper::after {
    width: 18%;
    top: 34px;
  }

  .zine-subtitle {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 34px;
    padding-inline: 18px;
  }

  .zine-banner {
    margin-top: 38px;
    padding-inline: 18px;
  }

  .zine-doodle {
    opacity: 0.22;
  }

  .product-sticker {
    position: relative;
    left: auto;
    bottom: auto;
    width: 142px;
    margin: 28px auto 0;
    opacity: 1;
  }

  .product-sticker img {
    height: 138px;
  }

  .service-board {
    padding: 20px;
  }

  .member-ticket {
    flex-direction: column;
  }

  .member-ticket p {
    max-width: none;
    text-align: left;
  }

  .paw-passport-head {
    flex-direction: column;
  }

  .paw-stamps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .code-row {
    grid-template-columns: 1fr;
  }

  .poster-section {
    padding-top: 58px;
  }

  .poster-points span {
    width: 100%;
    align-items: flex-start;
    padding-block: 12px;
    border-radius: 18px;
  }

  .scene-detail {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .scene-detail img {
    grid-column: 1 / -1;
    justify-self: center;
    height: 112px;
  }

  #map {
    min-height: 360px;
  }

  .line-one,
  .line-two,
  .line-three {
    opacity: 0.72;
  }
}
