:root {
  --mist: #edf0f2;
  --mist-deep: #dce1e5;
  --paper: #f8f9fa;
  --ink: #201c24;
  --muted: #67616b;
  --violet: #321b43;
  --violet-2: #51275f;
  --violet-3: #6a3b72;
  --pink: #e8a8ba;
  --pink-soft: #f6e4ea;
  --red: #a9162c;
  --red-dark: #7d1021;
  --line: rgba(50, 27, 67, .16);
  --shadow: 0 18px 45px rgba(40, 27, 45, .14);
  --content: 1180px;
  --header: 72px;
  --radius-module: 16px;
  --radius-button: 999px;
  --radius-image: 12px;
  --radius-tag: 4px;
  --hover-duration: .3s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; border-radius: var(--radius-image); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 8px 14px;
  background: #fff;
  color: var(--violet);
  border-radius: var(--radius-button);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  color: #fff;
  background: rgba(34, 19, 46, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}
.header-inner, .section-inner, .footer-inner {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; }
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: var(--radius-image); border: 2px solid rgba(232, 168, 186, .85); }
.brand span { white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { position: relative; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-size: 13px; color: rgba(255, 255, 255, .82); transition: color var(--hover-duration) ease; }
.site-nav svg { width: 15px; height: 15px; flex: 0 0 auto; stroke-width: 1.8; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; inset: auto 0 -7px; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: left center; transition: transform var(--hover-duration) ease; }
.site-nav a:hover, .site-nav a.active { color: #fff; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav .nav-cta { padding: 9px 15px; border-radius: var(--radius-button); background: var(--red); color: #fff; font-weight: 700; }
.site-nav .nav-cta:hover { background: #c01d36; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: var(--radius-button); background: transparent; color: #fff; cursor: pointer; }
.nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 680px;
  height: min(82svh, 850px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #1f1229;
}
.hero-media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(22, 13, 30, .95) 0%, rgba(38, 20, 49, .76) 38%, rgba(38, 20, 49, .2) 72%, rgba(16, 10, 20, .12) 100%); }
.hero-inner { width: min(var(--content), calc(100% - 40px)); height: 100%; margin-inline: auto; padding-top: calc(var(--header) + 54px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow, .section-kicker { margin: 0 0 12px; color: var(--pink); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 720px; margin: 0; font-family: "Noto Serif SC", "Songti SC", "SimSun", serif; font-size: clamp(46px, 5.4vw, 78px); line-height: 1.02; letter-spacing: 0; text-shadow: 0 4px 22px rgba(0,0,0,.42); }
.hero h1 small { display: block; margin-top: 16px; color: #f4d7df; font-family: inherit; font-size: .34em; line-height: 1.35; font-weight: 600; }
.hero-lead { max-width: 620px; margin: 26px 0 0; color: rgba(255,255,255,.86); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 11px 22px; border: 1px solid transparent; border-radius: var(--radius-button); text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button svg { width: 18px; height: 18px; flex: 0 0 auto; stroke-width: 2; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 10px 28px rgba(169, 22, 44, .28); }
.button-primary:hover { background: #c21d37; }
.button-ghost { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); color: #fff; }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.hero-meta { display: flex; gap: 0; margin: 36px 0 0; padding: 0; list-style: none; }
.hero-meta li { display: flex; min-width: 138px; flex-direction: column; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.24); }
.hero-meta li:first-child { padding-left: 0; border-left: 0; }
.hero-meta strong { font-size: 14px; }
.hero-meta span { color: rgba(255,255,255,.55); font-size: 12px; }

.band { padding: 112px 0; }
.band-dark { background: var(--violet); color: #fff; }
.band-pink { background: var(--pink-soft); }
.section-kicker { color: var(--red); }
.heading-light .section-kicker, .band-dark .section-kicker { color: var(--pink); }
.section-copy h2, .section-heading h2, .gallery-head h2 {
  margin: 0;
  color: var(--violet);
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}
.band-dark h2 { color: #fff; }
.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--muted); }
.heading-light > p:last-child { color: rgba(255,255,255,.64); }
.intro-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.lede { margin: 28px 0 16px; color: #352d38; font-size: 18px; line-height: 1.9; }
.section-copy > p:not(.section-kicker):not(.lede) { color: var(--muted); }
.facts { margin: 32px 0 0; border-top: 1px solid var(--line); }
.facts div { display: grid; grid-template-columns: 112px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); border-radius: var(--radius-module); }
.facts dt { color: var(--violet-2); font-weight: 800; }
.facts dd { margin: 0; color: var(--muted); }
.feature-figure, .route-figure, .content-visual { margin: 0; }
.feature-figure { position: relative; }
.feature-figure::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; z-index: -1; border: 1px solid var(--pink); border-radius: var(--radius-module); }
.feature-figure img { width: 100%; height: auto; object-fit: contain; box-shadow: var(--shadow); }
.feature-figure figcaption { margin-top: 15px; color: var(--muted); font-size: 13px; }
.feature-figure figcaption span { margin-right: 10px; color: var(--red); font-weight: 800; }

.content-layout { display: grid; grid-template-columns: .95fr 1.15fr; gap: clamp(45px, 7vw, 90px); align-items: center; }
.system-list { margin: 0; padding: 0; list-style: none; }
.system-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-module); }
.system-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.system-list .step { color: var(--pink); font-family: Georgia, serif; font-size: 19px; }
.system-list h3 { margin: 0 0 4px; font-size: 18px; }
.system-list p { margin: 0; color: rgba(255,255,255,.64); font-size: 14px; }
.content-visual img { width: 100%; height: auto; object-fit: contain; box-shadow: 18px 18px 0 rgba(232,168,186,.2); }
.content-visual figcaption { max-width: 520px; margin: 20px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }

.route-overview { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px, 7vw, 90px); align-items: center; }
.route-figure img { width: 100%; height: auto; object-fit: contain; box-shadow: var(--shadow); }
.route-figure figcaption { margin-top: 14px; color: var(--muted); font-size: 13px; }
.timeline article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; position: relative; padding: 0 0 22px; border-radius: var(--radius-module); }
.timeline article:not(:last-child)::after { content: ""; position: absolute; left: 18px; top: 38px; bottom: 4px; width: 1px; background: var(--line); }
.timeline article > span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--pink); border-radius: var(--radius-tag); color: var(--violet); font-family: Georgia, serif; font-weight: 700; }
.timeline h3 { margin: 1px 0 3px; color: var(--violet); font-size: 17px; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }
.route-tabs { display: flex; gap: 8px; margin-top: 58px; border-bottom: 1px solid var(--line); overflow-x: auto; }
.route-tabs button { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; padding: 13px 22px; border: 0; border-bottom: 3px solid transparent; border-radius: var(--radius-button); background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; }
.route-tabs button svg { width: 17px; height: 17px; stroke-width: 1.8; }
.route-tabs button[aria-selected="true"] { border-bottom-color: var(--red); color: var(--violet); }
.route-panel { min-height: 190px; padding: 35px 0 0; border-radius: var(--radius-module); }
.route-panel h3 { margin: 0 0 10px; color: var(--violet); font-size: 22px; }
.route-panel p { max-width: 820px; margin: 0; color: var(--muted); }
.route-panel ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.route-panel li { padding: 6px 12px; border: 1px solid var(--line); border-radius: var(--radius-tag); color: var(--violet-2); font-size: 13px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(50,27,67,.18); border-left: 1px solid rgba(50,27,67,.18); border-radius: var(--radius-module); }
.feature-grid article { min-height: 230px; padding: 34px 30px; border-right: 1px solid rgba(50,27,67,.18); border-bottom: 1px solid rgba(50,27,67,.18); border-radius: var(--radius-module); }
.feature-grid article > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: var(--radius-tag); background: var(--violet); color: #fff; font-size: 20px; }
.feature-grid h3 { margin: 22px 0 8px; color: var(--violet); font-size: 18px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.gallery-head { margin-bottom: 36px; }
.gallery-viewer { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(340px, .65fr); gap: 22px; align-items: start; }
.gallery-main { margin: 0; min-width: 0; }
.gallery-main img { width: 100%; height: auto; object-fit: contain; background: var(--violet); box-shadow: var(--shadow); }
.gallery-main figcaption { padding: 12px 0 0; color: var(--muted); font-size: 13px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.gallery-thumb { position: relative; min-width: 0; padding: 0; border: 2px solid transparent; border-radius: var(--radius-image); background: var(--mist-deep); cursor: pointer; overflow: hidden; transition: border-color .2s ease, transform .2s ease, opacity .2s ease; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--red); box-shadow: 0 0 0 2px rgba(169,22,44,.12); }
.gallery-thumb img { width: 100%; height: auto; object-fit: contain; opacity: .72; transition: opacity .2s ease; }
.gallery-thumb:hover img, .gallery-thumb.active img { opacity: 1; }
.updates-heading { max-width: 820px; }
.update-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.update-list li { display: grid; grid-template-columns: 82px 1fr; gap: 24px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-module); }
.update-list time { color: var(--pink); font-family: Georgia, serif; font-weight: 700; }
.update-list p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.update-list strong { display: block; margin-bottom: 3px; color: #fff; font-size: 15px; }

.faq-heading { max-width: 820px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); border-radius: var(--radius-module); }
.faq-list summary { position: relative; padding: 22px 46px 22px 0; color: var(--violet); cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 17px; color: var(--red); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -5px 46px 22px 0; color: var(--muted); font-size: 14px; }

.friend-links { padding: 58px 0 62px; background: var(--violet); color: #fff; text-align: center; }
.friend-links-inner { display: flex; flex-direction: column; align-items: center; }
.friend-links .section-kicker { margin-bottom: 7px; color: var(--pink); }
.friend-links h2 { margin: 0; color: #fff; font-family: "Noto Serif SC", "Songti SC", "SimSun", serif; font-size: 36px; line-height: 1.2; }
.friend-links-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 27px; }
.friend-links-list a { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 9px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-button); background: rgba(255,255,255,.1); color: #fff; text-decoration: none; font-size: 14px; font-weight: 700; transition: transform var(--hover-duration) ease, filter var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease, box-shadow var(--hover-duration) ease; }
.friend-links-list a:hover { transform: translateY(-2px) scale(1.04); filter: brightness(1.12); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.16); box-shadow: 0 10px 24px rgba(20,8,28,.24); }

.floating-cta { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 90; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border-radius: var(--radius-button); background: var(--red); color: #fff; box-shadow: 0 12px 32px rgba(69,7,21,.35); text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.floating-cta:hover { transform: translateY(-3px); background: #c21d37; }
.floating-cta svg { width: 19px; height: 19px; stroke-width: 2; }

.site-footer { padding: 46px 0 116px; background: #1f1229; color: rgba(255,255,255,.58); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-brand { color: #fff; }
.site-footer p { margin: 0; font-size: 13px; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer nav a { color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; }
.site-footer nav a:hover { color: #fff; }
.copyright { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }

/* Hover interactions */
.facts div,
.system-list li,
.timeline article,
.route-panel,
.feature-grid article,
.update-list li,
.faq-list details {
  transition: transform var(--hover-duration) ease, box-shadow var(--hover-duration) ease;
}
.facts div:hover,
.system-list li:hover,
.timeline article:hover,
.route-panel:hover,
.feature-grid article:hover,
.update-list li:hover,
.faq-list details:hover {
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(50, 27, 67, .18), 0 0 22px rgba(232, 168, 186, .32);
}

.button,
.site-nav .nav-cta,
.floating-cta,
.route-tabs button,
.gallery-thumb,
.nav-toggle,
.skip-link {
  transition: transform var(--hover-duration) ease, filter var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease, box-shadow var(--hover-duration) ease, color var(--hover-duration) ease;
}
.button:hover,
.site-nav .nav-cta:hover,
.route-tabs button:hover,
.gallery-thumb:hover,
.nav-toggle:hover,
.skip-link:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.12);
}
.floating-cta:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.12);
}

.hero-media,
.feature-figure img,
.content-visual img,
.route-figure img,
.gallery-main img,
.gallery-thumb img {
  transform-origin: center;
  transition: transform var(--hover-duration) ease, filter var(--hover-duration) ease, opacity var(--hover-duration) ease;
}
.hero:hover .hero-media,
.feature-figure:hover img,
.content-visual:hover img,
.route-figure:hover img,
.gallery-main:hover img,
.gallery-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(.78);
}

@media (max-width: 1050px) {
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 12px; }
  .intro-grid, .content-layout, .route-overview { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --header: 64px; }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; top: var(--header); right: 0; bottom: 0; left: 0; z-index: 110; display: flex; height: calc(100dvh - var(--header)); max-height: calc(100dvh - var(--header)); flex-direction: column; align-items: stretch; gap: 0; padding: 28px 20px; background: #281735; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; overscroll-behavior: contain; }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16px; }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin-top: 18px; text-align: center; }
  .intro-grid, .content-layout, .route-overview { grid-template-columns: 1fr; }
  .feature-figure { max-width: 640px; }
  .content-visual { order: -1; }
  .gallery-viewer { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner > p:not(.copyright) { display: none; }
}

@media (max-width: 620px) {
  .header-inner, .section-inner, .footer-inner, .hero-inner { width: min(100% - 28px, var(--content)); }
  .brand span { font-size: 15px; }
  .hero { min-height: 650px; height: 82svh; padding-top: 0; }
  .hero-media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
  .hero-shade { display: block; background: linear-gradient(90deg, rgba(25,14,33,.93), rgba(35,18,45,.68) 70%, rgba(35,18,45,.25)); }
  .hero-inner { height: 100%; padding-top: calc(var(--header) + 54px); padding-bottom: 0; }
  .hero h1 { max-width: 360px; font-size: 40px; line-height: 1.08; }
  .hero h1 small { font-size: .38em; }
  .hero-lead { max-width: 92%; font-size: 15px; line-height: 1.7; }
  .hero-meta { width: 100%; margin-top: 28px; }
  .hero-meta li { min-width: 0; flex: 1; padding: 0 11px; }
  .hero-meta strong { font-size: 12px; }
  .band { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-copy h2, .section-heading h2, .gallery-head h2 { font-size: 30px; }
  .lede { font-size: 16px; }
  .facts div { grid-template-columns: 92px 1fr; }
  .feature-figure::before { inset: -8px 8px 8px -8px; }
  .system-list li { grid-template-columns: 39px 1fr; gap: 12px; }
  .content-visual img { box-shadow: 9px 9px 0 rgba(232,168,186,.2); }
  .route-tabs button { padding-inline: 14px; }
  .route-panel { min-height: 270px; }
  .route-panel ul { display: grid; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 0; }
  .gallery-thumbs { gap: 8px; }
  .update-list li { grid-template-columns: 62px 1fr; gap: 15px; }
  .faq-list summary { padding-right: 34px; }
  .faq-list details p { margin-right: 10px; }
  .friend-links { padding: 48px 0 52px; }
  .friend-links h2 { font-size: 30px; }
  .friend-links-list { width: 100%; gap: 10px; margin-top: 22px; }
  .friend-links-list a { max-width: 100%; min-height: 42px; padding: 8px 16px; font-size: 13px; }
  .floating-cta { right: 14px; bottom: 14px; min-height: 48px; padding: 10px 15px; font-size: 14px; }
  .site-footer { padding-bottom: 98px; }
  .site-footer nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .site-header, .hero-actions, .floating-cta, .site-footer { display: none; }
  .hero { min-height: 0; height: auto; padding: 40px 0; color: #000; }
  .hero-media, .hero-shade { display: none; }
  .hero-inner { padding: 0; }
  .band { padding: 35px 0; }
  .band-dark { background: #fff; color: #000; }
  .band-dark h2, .band-dark h3, .band-dark p { color: #000 !important; }
}
