/* ============================================================
   米兰赛场 · 共享层 /assets/site.css
   档案深黑底 + 米白阅读面 + 暗红强调 + 荧光青绿实时态
   ============================================================ */

/* ---------- 1. 变量 ---------- */
:root {
  --ma-black: #0A0A0C;
  --ma-panel: #16161B;
  --ma-panel-2: #1F1F26;
  --ma-red: #9E1B2F;
  --ma-red-hot: #D62B3F;
  --ma-red-deep: #4A0F1C;
  --ma-paper: #F3EDE3;
  --ma-line: #D9D2C7;
  --ma-mint: #2FE3B0;
  --ma-slate: #8A97AC;
  --ma-stroke: #2B2B33;

  --ma-font-display: "Arial Narrow", "Arial Nova Cond", "Helvetica Neue Condensed", Impact, system-ui, sans-serif;
  --ma-font-head: "Songti SC", "Noto Serif SC", "Source Han Serif SC", Georgia, "Times New Roman", serif;
  --ma-font-body: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  --ma-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Noto Sans Mono", "Courier New", monospace;

  --ma-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ma-black);
  color: var(--ma-slate);
  font-family: var(--ma-font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; }

button { font: inherit; }

::selection {
  background: var(--ma-red);
  color: var(--ma-paper);
}

:focus-visible {
  outline: 2px solid var(--ma-mint);
  outline-offset: 3px;
}

#main-content { scroll-margin-top: 96px; }

/* ---------- 3. 中文排版基底 ---------- */
h1, h2, h3, h4 {
  margin: 0 0 .6em;
  font-family: var(--ma-font-head);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ma-paper);
  letter-spacing: .01em;
}

h1 { font-size: clamp(30px, 4.4vw, 44px); }
h2 { font-size: clamp(22px, 2.6vw, 28px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

.ma-page-title {
  font-size: clamp(30px, 4.4vw, 44px);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ma-red);
  margin-bottom: .8em;
}

.ma-lead {
  max-width: 30em;
  margin: 0 0 1.4em;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.68;
  color: var(--ma-paper);
}

.ma-prose {
  max-width: 38em;
  font-size: 16px;
  line-height: 1.78;
}

.ma-prose p { margin: 0 0 1.15em; }
.ma-prose > p:first-of-type { font-size: 17px; color: var(--ma-paper); }
.ma-prose ul,
.ma-prose ol { margin: 0 0 1.15em; padding-left: 1.3em; }
.ma-prose li { margin-bottom: .5em; }
.ma-prose strong { color: var(--ma-paper); }
.ma-prose a { color: var(--ma-mint); text-decoration: none; border-bottom: 1px solid rgba(47, 227, 176, .4); }

.ma-mono {
  font-family: var(--ma-font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--ma-slate);
}

.ma-display {
  font-family: var(--ma-font-display);
  font-weight: 700;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .9;
  color: var(--ma-paper);
  font-size: clamp(46px, 9vw, 120px);
}

/* ---------- 4. 布局容器 ---------- */
.ma-wrap {
  width: min(1360px, 100% - 40px);
  margin-inline: auto;
}

.ma-section { padding: clamp(44px, 6vw, 88px) 0; }
.ma-section--tight { padding: clamp(26px, 3.4vw, 48px) 0; }

.ma-rule {
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--ma-stroke);
}

/* ---------- 5. 跳转链接 ---------- */
.ma-skip {
  position: absolute;
  top: -70px;
  left: 12px;
  z-index: 200;
  padding: 11px 18px;
  background: var(--ma-mint);
  color: #06231B;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s var(--ma-ease);
}

.ma-skip:focus { top: 12px; }

/* ---------- 6. 页头 ---------- */
.ma-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 12, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ma-stroke);
  transition: border-color .3s var(--ma-ease);
}

.ma-header[data-condensed="true"] { border-bottom-color: transparent; }

.ma-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1360px, 100% - 40px);
  margin-inline: auto;
  padding: 14px 0;
  transition: width .32s var(--ma-ease), padding .32s var(--ma-ease), margin .32s var(--ma-ease), background .32s var(--ma-ease), border-color .32s var(--ma-ease), border-radius .32s var(--ma-ease);
}

.ma-header[data-condensed="true"] .ma-header__inner {
  width: min(1160px, 100% - 28px);
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 8px 14px;
  background: rgba(22, 22, 27, .94);
  border: 1px solid var(--ma-stroke);
  border-radius: 3px;
}

.ma-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  text-decoration: none;
  color: var(--ma-paper);
}

.ma-brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  background: var(--ma-red);
  color: var(--ma-paper);
  font-family: var(--ma-font-display);
  font-stretch: condensed;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
}

.ma-brand__text { display: block; }

.ma-brand__name {
  display: block;
  font-family: var(--ma-font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .03em;
}

.ma-brand__line {
  display: block;
  font-family: var(--ma-font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .1em;
  color: var(--ma-slate);
  transition: opacity .3s var(--ma-ease);
}

.ma-header[data-condensed="true"] .ma-brand__line { opacity: .55; }

/* 移动端菜单按钮 */
.ma-navtoggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: var(--ma-panel);
  border: 1px solid var(--ma-stroke);
  border-radius: 999px;
  color: var(--ma-paper);
  cursor: pointer;
  transition: border-color .2s var(--ma-ease), color .2s var(--ma-ease);
}

.ma-navtoggle:hover { border-color: var(--ma-red); color: var(--ma-paper); }

.ma-navtoggle__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ma-navtoggle__bars i {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  transition: transform .22s var(--ma-ease), opacity .22s var(--ma-ease);
}

.ma-navtoggle[data-open="true"] .ma-navtoggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ma-navtoggle[data-open="true"] .ma-navtoggle__bars i:nth-child(2) { opacity: 0; }
.ma-navtoggle[data-open="true"] .ma-navtoggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 导航胶囊 */
.ma-nav { margin-left: auto; }

.ma-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 5px;
  list-style: none;
  background: var(--ma-panel);
  border: 1px solid var(--ma-stroke);
  border-radius: 999px;
}

.ma-nav__link {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ma-slate);
  transition: color .2s var(--ma-ease), background .2s var(--ma-ease);
}

.ma-nav__link:hover { color: var(--ma-paper); background: var(--ma-panel-2); }

.ma-nav__link[aria-current="page"] {
  background: var(--ma-red);
  color: var(--ma-paper);
}

/* 在线工单 */
.ma-ticket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  padding: 10px 16px;
  border: 1px solid rgba(47, 227, 176, .38);
  border-radius: 999px;
  background: rgba(47, 227, 176, .06);
  color: var(--ma-mint);
  font-family: var(--ma-font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none;
  transition: background .2s var(--ma-ease), border-color .2s var(--ma-ease);
}

.ma-ticket:hover {
  background: rgba(47, 227, 176, .15);
  border-color: var(--ma-mint);
}

.ma-ticket__dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--ma-mint);
  animation: ma-pulse 2.4s ease-in-out infinite;
}

@keyframes ma-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(47, 227, 176, .45); }
  50% { opacity: .5; box-shadow: 0 0 0 6px rgba(47, 227, 176, 0); }
}

/* ---------- 7. 页脚 ---------- */
.ma-footer {
  margin-top: clamp(40px, 6vw, 96px);
  background: var(--ma-black);
  border-top: 1px solid var(--ma-stroke);
}

.ma-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(40px, 5vw, 68px) 0 clamp(28px, 3vw, 44px);
}

.ma-footer__col { min-width: 0; }

.ma-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ma-footer__name {
  font-family: var(--ma-font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--ma-paper);
}

.ma-footer__desc {
  max-width: 32em;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
}

.ma-footer__title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ma-stroke);
  font-family: var(--ma-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ma-paper);
}

.ma-footer__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.ma-footer__list a {
  text-decoration: none;
  color: var(--ma-slate);
  transition: color .2s var(--ma-ease);
}

.ma-footer__list a:hover { color: var(--ma-paper); }

.ma-footer__list--plain {
  font-family: var(--ma-font-mono);
  font-size: 12.5px;
  line-height: 1.75;
  letter-spacing: .02em;
  color: var(--ma-slate);
}

.ma-footer__mono {
  margin: 0;
  font-family: var(--ma-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ma-slate);
}

.ma-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 34px;
  border-top: 1px solid var(--ma-stroke);
}

/* ---------- 8. 通用按钮 ---------- */
.ma-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--ma-stroke);
  border-radius: 0;
  background: transparent;
  color: var(--ma-paper);
  font-family: var(--ma-font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--ma-ease), border-color .2s var(--ma-ease), color .2s var(--ma-ease), transform .2s var(--ma-ease);
}

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

.ma-btn--primary {
  background: var(--ma-red);
  border-color: var(--ma-red);
  color: var(--ma-paper);
}

.ma-btn--primary:hover {
  background: var(--ma-red-hot);
  border-color: var(--ma-red-hot);
}

.ma-btn--ghost { color: var(--ma-slate); }

.ma-btn--ghost:hover {
  color: var(--ma-paper);
  border-color: var(--ma-slate);
}

.ma-btn--mint {
  border-color: rgba(47, 227, 176, .5);
  color: var(--ma-mint);
}

.ma-btn--mint:hover { border-color: var(--ma-mint); background: rgba(47, 227, 176, .08); }

/* ---------- 9. 面包屑 ---------- */
.ma-crumb { padding: 18px 0 0; }

.ma-crumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--ma-font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--ma-slate);
}

.ma-crumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ma-crumb__item + .ma-crumb__item::before {
  content: "/";
  color: var(--ma-stroke);
}

.ma-crumb__item a { text-decoration: none; }
.ma-crumb__item a:hover { color: var(--ma-paper); }
.ma-crumb__item[aria-current="page"] { color: var(--ma-paper); }

/* ---------- 10. 标签与面板 ---------- */
.ma-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-family: var(--ma-font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ma-red-hot);
}

.ma-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--ma-red);
}

.ma-tag {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid var(--ma-stroke);
  font-family: var(--ma-font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ma-slate);
}

.ma-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ma-font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ma-mint);
}

.ma-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ma-mint);
  animation: ma-breathe 2.4s ease-in-out infinite;
}

@keyframes ma-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.ma-panel {
  background: var(--ma-panel);
  border: 1px solid var(--ma-stroke);
  padding: clamp(18px, 2.4vw, 28px);
}

.ma-paper {
  background: var(--ma-paper);
  color: #24242A;
  border: 0;
}

.ma-paper h1,
.ma-paper h2,
.ma-paper h3,
.ma-paper h4 { color: var(--ma-black); }

.ma-paper .ma-mono { color: #6B6257; }

/* ---------- 11. 网格 ---------- */
.ma-grid {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
}

.ma-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 48px);
}

@media (min-width: 640px) {
  .ma-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ma-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ma-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
  .ma-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ma-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ma-split { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
}

/* ---------- 12. 档案卡片 ---------- */
.ma-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ma-panel);
  border: 1px solid var(--ma-stroke);
  border-radius: 0;
  transition: transform .24s var(--ma-ease), border-color .24s var(--ma-ease), background .24s var(--ma-ease);
}

.ma-card--link { text-decoration: none; color: inherit; cursor: pointer; }

.ma-card--link:hover {
  transform: translateY(-4px);
  border-color: var(--ma-red);
  background: var(--ma-panel-2);
}

.ma-card--link:focus-visible { outline-offset: 2px; }

.ma-card__no {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ma-stroke);
  font-family: var(--ma-font-mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  color: var(--ma-slate);
}

.ma-card__no b {
  font-weight: 700;
  color: var(--ma-red-hot);
}

.ma-card__body {
  flex: 1;
  padding: 18px 16px 20px;
  min-width: 0;
}

.ma-card__title {
  margin: 0 0 10px;
  font-family: var(--ma-font-head);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  color: var(--ma-paper);
}

.ma-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-family: var(--ma-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ma-slate);
}

/* ---------- 13. 高密度索引 ---------- */
.ma-index {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ma-stroke);
}

.ma-index__row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--ma-stroke);
  font-family: var(--ma-font-mono);
  font-size: 13px;
  letter-spacing: .06em;
}

.ma-index__no { color: var(--ma-red-hot); }
.ma-index__label { color: var(--ma-slate); overflow: hidden; text-overflow: ellipsis; }
.ma-index__value { color: var(--ma-paper); white-space: nowrap; }

/* ---------- 14. 可展开内容组 ---------- */
.ma-disc {
  background: var(--ma-panel);
  border: 1px solid var(--ma-stroke);
  border-left: 3px solid var(--ma-stroke);
  transition: border-color .2s var(--ma-ease);
}

.ma-disc[open] { border-left-color: var(--ma-mint); }

.ma-disc__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  color: var(--ma-paper);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.ma-disc__summary::-webkit-details-marker { display: none; }

.ma-disc__summary::after {
  content: "+";
  flex: none;
  font-family: var(--ma-font-mono);
  font-size: 17px;
  color: var(--ma-slate);
  transition: color .2s var(--ma-ease);
}

.ma-disc[open] .ma-disc__summary::after {
  content: "–";
  color: var(--ma-mint);
}

.ma-disc__body {
  padding: 0 18px 18px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ma-slate);
}

.ma-disc__body > *:last-child { margin-bottom: 0; }

/* ---------- 15. 图片容器基础规则 ---------- */
.ma-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1B1B22 0%, #0A0A0C 100%);
  border: 1px solid var(--ma-stroke);
}

.ma-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06);
}

.ma-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(74, 15, 28, .18), rgba(10, 10, 12, .58)),
    repeating-linear-gradient(90deg, rgba(217, 210, 199, .05) 0 1px, transparent 1px 72px);
  opacity: .85;
}

.ma-media--wide { aspect-ratio: 16 / 9; }
.ma-media--tall { aspect-ratio: 3 / 4; }
.ma-media--square { aspect-ratio: 1 / 1; }

.ma-media--slant {
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.ma-media__caption {
  margin: 0;
  padding: 10px 0 0;
  font-family: var(--ma-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ma-slate);
}

/* ---------- 16. 滚动进度与显现 ---------- */
.ma-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ma-red), var(--ma-mint));
  pointer-events: none;
}

.js-on [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}

.js-on [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .55s var(--ma-ease), transform .55s var(--ma-ease);
}

/* ---------- 17. 响应式 ---------- */
@media (max-width: 1199px) {
  .ma-nav__link { padding: 8px 10px; font-size: 13px; letter-spacing: 0; }
  .ma-ticket { padding: 8px 12px; font-size: 11.5px; letter-spacing: .08em; }
}

@media (max-width: 999px) {
  .ma-navtoggle { display: inline-flex; }

  .ma-brand__line { display: none; }

  .ma-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    margin-left: 0;
    display: none;
  }

  .ma-nav[data-open="true"] { display: block; }

  .ma-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(22, 22, 27, .98);
    box-shadow: 0 26px 52px rgba(0, 0, 0, .55);
  }

  .ma-nav__link {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .ma-header[data-condensed="true"] .ma-header__inner {
    width: min(1360px, 100% - 28px);
    padding: 8px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .ma-footer__grid { grid-template-columns: 1.35fr 1fr 1fr 1.4fr; }
}

@media (max-width: 620px) {
  .ma-wrap { width: min(1360px, 100% - 28px); }
  .ma-ticket { padding: 8px 10px; letter-spacing: .06em; }
  .ma-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .ma-index__row {
    grid-template-columns: 64px minmax(0, 1fr);
    row-gap: 4px;
  }
  .ma-index__value { grid-column: 2; }
}

/* ---------- 18. 无障碍与动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js-on [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
