:root {
  --bg: #f4efe4;
  --panel: rgba(255, 250, 239, 0.9);
  --panel-strong: #fff8ea;
  --ink: #1f2a2e;
  --muted: #617276;
  --line: rgba(39, 52, 56, 0.12);
  --accent: #f37341;
  --accent-strong: #d74d1f;
  --accent-soft: rgba(243, 115, 65, 0.14);
  --green: #2f8c60;
  --green-soft: rgba(47, 140, 96, 0.12);
  --shadow: 0 24px 70px rgba(47, 34, 12, 0.12);
  --mouth-open: 0.08;
  --mouth-height: calc(16px + (var(--mouth-open) * 34px));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 115, 65, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(56, 142, 98, 0.12), transparent 28%),
    linear-gradient(180deg, #f9f3e6 0%, #f0e7d6 100%);
  min-height: 100vh;
}

.page-shell {
  max-width: 1380px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(340px, 540px) minmax(420px, 1fr);
  gap: 24px;
}

.hero-panel,
.console-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  border-radius: 28px;
  backdrop-filter: blur(14px);
}

.hero-panel {
  padding: 20px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-top,
.console-head,
.row-actions,
.composer-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

h1,
h2 {
  margin: 0;
  line-height: 1;
}

h1 {
  font-size: clamp(36px, 5vw, 58px);
}

h2 {
  font-size: 28px;
}

.hero-subtitle,
.console-desc,
.voice-desc,
.tip-value,
.mini-state,
.input-label,
.speech-label {
  color: var(--muted);
}

.status-stack {
  display: grid;
  gap: 10px;
}

.presentation-hidden {
  display: none !important;
}

.status-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 42, 46, 0.08);
  font-weight: 700;
  font-size: 14px;
}

.status-pill.status-online {
  background: var(--green-soft);
  color: var(--green);
}

.status-pill.status-speaking {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.status-pill.status-soft {
  font-weight: 600;
}

.stage-card,
.console-card {
  padding: 26px;
}

.stage-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.9)),
    linear-gradient(180deg, #fffdf8 0%, #f9f1df 100%);
  border-radius: 24px;
  border: 1px solid rgba(242, 228, 201, 0.8);
  display: grid;
  gap: 0;
}

.hero-top .eyebrow,
.hero-top .hero-subtitle,
.console-head > div:first-child,
.stage-tips,
.env-banner,
.diagnostics-card,
.debug-box {
  display: none !important;
}

.hero-top {
  align-items: center;
}

.hero-panel .stage-card {
  padding: 12px;
}

.console-card {
  gap: 16px;
}

.mobile-reply-card,
.mobile-user-card {
  display: none;
}

.mobile-dock-shell {
  display: contents;
}

.console-head {
  justify-content: flex-end;
}

.console-head .row-actions {
  width: 100%;
  justify-content: flex-end;
}

.console-card .chat-feed {
  min-height: 220px;
  max-height: 360px;
}

.console-card .starter-box,
.console-card .composer-card,
.console-card .voice-card {
  background: rgba(255, 255, 255, 0.76);
}

.speech-card {
  background: var(--panel-strong);
  border: 1px solid rgba(215, 77, 31, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.speech-label {
  font-size: 13px;
  margin-bottom: 8px;
}

.speech-text {
  font-size: 17px;
  line-height: 1.6;
}

.avatar-stage {
  min-height: 430px;
  position: relative;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.15) 45%, transparent 58%),
    linear-gradient(180deg, #fff6e7 0%, #f7ecd7 72%, #e7dcc4 100%);
  overflow: hidden;
}

.avatar-stage.is-listening .avatar-spine-host {
  transform: translateY(-4px) scale(1.02);
}

.avatar-stage.is-speaking .avatar-spine-host {
  filter: drop-shadow(0 12px 24px rgba(215, 77, 31, 0.18));
}

.halo-ring {
  position: absolute;
  inset: 32px 24px auto;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(243, 115, 65, 0.2), transparent 62%);
  filter: blur(20px);
}

.avatar-spine-host {
  position: absolute;
  inset: 12px 14px 12px;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.avatar-stage.spine-ready .avatar-spine-host {
  opacity: 1 !important;
}

.avatar-character {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.avatar-stage.spine-ready .avatar-character {
  opacity: 0 !important;
  pointer-events: none !important;
}

.avatar-stage.fallback-ready:not(.spine-ready) .avatar-character {
  opacity: 1;
  pointer-events: auto;
}

.avatar-stage.fallback-ready:not(.spine-ready) .avatar-spine-host {
  opacity: 0;
}

.avatar-stage .spine-player,
.avatar-stage .spine-player-canvas,
.avatar-stage canvas {
  width: 100% !important;
  height: 100% !important;
}

.avatar-stage .spine-player {
  background: transparent !important;
}

.avatar-stage .spine-player-controls {
  display: none !important;
}

.avatar-character {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 280px;
  height: 350px;
  z-index: 2;
  transform: translateX(-50%);
  animation: idle-float 3.8s ease-in-out infinite;
}

.avatar-character.is-speaking {
  animation-duration: 2.3s;
}

.avatar-character.is-listening {
  transform: translateX(-50%) scale(1.02);
}

.dino-body,
.dino-head,
.dino-tail,
.dino-arm,
.dino-leg,
.dino-crest {
  position: absolute;
  background: linear-gradient(180deg, #a8b3b6 0%, #7b878c 100%);
  border: 4px solid #4c5d61;
}

.dino-body {
  left: 64px;
  bottom: 18px;
  width: 148px;
  height: 190px;
  border-radius: 48% 44% 32% 36%;
}

.dino-tail {
  left: 28px;
  bottom: 78px;
  width: 106px;
  height: 44px;
  border-radius: 60px 24px 24px 60px;
  transform: rotate(16deg);
}

.dino-head {
  left: 82px;
  top: 18px;
  width: 164px;
  height: 140px;
  border-radius: 52% 52% 44% 40%;
}

.dino-crest {
  top: -18px;
  left: 24px;
  width: 80px;
  height: 46px;
  border-radius: 60px 70px 18px 26px;
  background: linear-gradient(180deg, #d88d5e 0%, #c76230 100%);
}

.dino-arm {
  width: 46px;
  height: 88px;
  border-radius: 40px;
  bottom: 84px;
  background: linear-gradient(180deg, #9ca7aa 0%, #7d868a 100%);
}

.dino-arm-left {
  left: 36px;
  transform: rotate(24deg);
  animation: arm-wave-left 3.2s ease-in-out infinite;
}

.dino-arm-right {
  right: 24px;
  transform: rotate(-34deg);
  animation: arm-wave-right 3.6s ease-in-out infinite;
}

.avatar-character.is-speaking .dino-arm-right {
  animation-duration: 1.8s;
}

.dino-leg {
  width: 48px;
  height: 92px;
  border-radius: 28px;
  bottom: 0;
}

.dino-leg-left {
  left: 90px;
}

.dino-leg-right {
  right: 70px;
}

.dino-eye {
  position: absolute;
  top: 42px;
  width: 28px;
  height: 34px;
  background: #fff7ea;
  border: 4px solid #3e4b50;
  border-radius: 50%;
}

.dino-eye-left {
  left: 44px;
}

.dino-eye-right {
  right: 34px;
}

.pupil {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 10px;
  height: 12px;
  background: #111;
  border-radius: 50%;
}

.dino-mouth-shell {
  position: absolute;
  left: 36px;
  right: 18px;
  bottom: 18px;
  height: 72px;
}

.dino-mouth {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--mouth-height);
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(180deg, #6f2c20 0%, #3f1712 100%);
  border: 4px solid #3d211b;
  overflow: hidden;
  transition: height 90ms linear, transform 90ms linear;
}

.dino-tongue {
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 56px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 24px 24px 12px 12px;
  background: linear-gradient(180deg, #f08578 0%, #df6657 100%);
}

.dino-teeth {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 10px;
  background:
    linear-gradient(-45deg, transparent 44%, #fff8ec 45%) 0 0 / 16px 10px repeat-x,
    linear-gradient(45deg, transparent 44%, #fff8ec 45%) 8px 0 / 16px 10px repeat-x;
  z-index: 2;
}

.teeth-top {
  top: 0;
}

.teeth-bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.stage-tips {
  display: grid;
  gap: 10px;
}

.tip {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 46, 0.08);
}

.tip-key {
  font-weight: 700;
}

.console-panel {
  display: grid;
}

.console-card {
  display: grid;
  gap: 22px;
}

.starter-box,
.composer-card,
.voice-card,
.debug-box {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(31, 42, 46, 0.08);
  padding: 18px;
}

.env-banner {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  border: 1px solid rgba(31, 42, 46, 0.08);
}

.env-banner.ok {
  background: rgba(47, 140, 96, 0.1);
  color: #245a41;
}

.env-banner.warn {
  background: rgba(243, 115, 65, 0.14);
  color: #8a3f1e;
}

.starter-title,
.voice-title {
  font-weight: 700;
}

.starter-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.starter-chip {
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(243, 115, 65, 0.12);
  color: var(--accent-strong);
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease;
}

.starter-chip:hover {
  transform: translateY(-1px);
  background: rgba(243, 115, 65, 0.18);
}

.chat-feed {
  min-height: 280px;
  max-height: 520px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
  padding-right: 4px;
}

.chat-feed:empty {
  display: none;
}

.chat-msg {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 20px;
  line-height: 1.6;
  position: relative;
  border: 1px solid transparent;
  white-space: pre-wrap;
}

.chat-msg.user {
  margin-left: auto;
  background: rgba(31, 42, 46, 0.92);
  color: #fbf7ed;
}

.chat-msg.assistant {
  margin-right: auto;
  background: #fff8ea;
  border-color: rgba(215, 77, 31, 0.1);
}

.chat-msg.draft::after {
  content: "思考中";
  position: absolute;
  right: 12px;
  bottom: -18px;
  font-size: 12px;
  color: var(--muted);
}

.chat-msg.system {
  max-width: 100%;
  background: rgba(47, 140, 96, 0.08);
  color: #2d6f51;
  font-size: 14px;
}

textarea {
  width: 100%;
  min-height: 108px;
  resize: vertical;
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 46, 0.14);
  padding: 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

textarea:focus {
  outline: 2px solid rgba(243, 115, 65, 0.2);
  border-color: rgba(243, 115, 65, 0.34);
}

.input-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
}

.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 12px;
  align-items: end;
}

.voice-card {
  display: grid;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.voice-title,
.voice-desc,
.voice-card .mini-state {
  display: none;
}

.voice-card--hold {
  width: 100%;
}

.voice-card--call {
  width: 100%;
}

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

.hold-btn,
.call-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  height: 48px;
  border-radius: 18px;
}

@media (max-width: 720px) {
  .voice-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 8px;
  }

  .call-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hold-btn,
  .call-actions .btn {
    min-height: 42px;
    height: 42px;
    padding: 8px 6px;
    font-size: 14px;
  }
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.btn-primary {
  background: linear-gradient(180deg, #f58e54 0%, #de5c29 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(222, 92, 41, 0.22);
}

.btn-accent {
  background: linear-gradient(180deg, #2f8c60 0%, #216645 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 140, 96, 0.22);
}

.btn-ghost {
  background: rgba(31, 42, 46, 0.08);
  color: var(--ink);
}

.hold-btn.is-recording {
  animation: pulse 0.95s ease-in-out infinite;
}

.hold-btn {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  justify-content: center;
}

.debug-box summary {
  cursor: pointer;
  font-weight: 700;
}

.debug-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
}

.debug-grid div {
  display: grid;
  gap: 4px;
}

.debug-grid span {
  color: var(--muted);
  font-size: 12px;
}

#debugLog {
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 14px;
  background: #f4ead8;
  min-height: 140px;
  max-height: 260px;
  overflow-y: auto;
  white-space: pre-wrap;
  font-size: 13px;
  line-height: 1.5;
}

.diagnostics-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(31, 42, 46, 0.08);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.diag-title {
  font-weight: 700;
}

.meter-shell {
  display: grid;
  gap: 8px;
}

.meter-head,
.slider-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.meter-text,
.slider-value {
  color: var(--muted);
  font-size: 13px;
}

.meter-bar {
  position: relative;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(47, 140, 96, 0.14), rgba(243, 115, 65, 0.16), rgba(215, 77, 31, 0.16));
  border: 1px solid rgba(31, 42, 46, 0.12);
}

.meter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #2f8c60 0%, #f0a43a 56%, #d74d1f 100%);
  transition: width 80ms linear;
}

.range-input {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

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

.asr-stat {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 42, 46, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
}

.asr-stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.asr-stat strong {
  line-height: 1.55;
}

.asr-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.asr-pill.idle {
  background: rgba(31, 42, 46, 0.08);
  color: var(--ink);
  border-color: rgba(31, 42, 46, 0.08);
}

.asr-pill.hot {
  background: rgba(215, 77, 31, 0.14);
  color: var(--accent-strong);
  border-color: rgba(215, 77, 31, 0.22);
}

.asr-pill.cool {
  background: rgba(47, 140, 96, 0.14);
  color: var(--green);
  border-color: rgba(47, 140, 96, 0.22);
}

.asr-pill.warn {
  background: rgba(240, 164, 58, 0.18);
  color: #8a4d00;
  border-color: rgba(240, 164, 58, 0.28);
}

#asrLog {
  min-height: 180px;
  max-height: 240px;
  overflow-y: auto;
  background: #f4ead8;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 46, 0.08);
  padding: 14px;
  white-space: pre-wrap;
  font-size: 13px;
  line-height: 1.55;
}

.asr-log-line {
  padding: 2px 0;
  border-bottom: 1px solid rgba(97, 114, 118, 0.12);
}

.asr-log-time {
  color: var(--muted);
}

.asr-log-hot {
  color: var(--accent-strong);
}

.asr-log-cool {
  color: var(--green);
}

.asr-log-warn {
  color: #8a4d00;
}

.asr-log-muted {
  color: var(--muted);
}

@keyframes idle-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes arm-wave-left {
  0%, 100% { transform: rotate(22deg); }
  50% { transform: rotate(32deg); }
}

@keyframes arm-wave-right {
  0%, 100% { transform: rotate(-34deg); }
  50% { transform: rotate(-18deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(47, 140, 96, 0.22); }
  50% { box-shadow: 0 14px 34px rgba(47, 140, 96, 0.34); }
}

@media (max-width: 1120px) {
  .page-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html,
  body {
    height: 100svh;
    overflow: hidden;
    overflow-x: hidden;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(243, 115, 65, 0.14), transparent 34%),
      radial-gradient(circle at bottom right, rgba(56, 142, 98, 0.08), transparent 28%),
      linear-gradient(180deg, #fbf5e8 0%, #f1e7d5 100%);
  }

  .page-shell {
    max-width: 100%;
    height: 100svh;
    min-height: 100svh;
    padding: 10px 10px 12px;
    gap: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, auto) minmax(0, 1fr) auto auto;
    grid-template-areas:
      "stage"
      "reply"
      "user"
      "dock";
    overflow: hidden;
    overflow-x: hidden;
  }

  .hero-panel,
  .console-panel,
  .console-card {
    display: contents;
  }

  .stage-card,
  .mobile-reply-card,
  .mobile-user-card,
  .mobile-dock-shell {
    width: 100%;
    border-radius: 22px;
    background: rgba(255, 250, 239, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 28px rgba(47, 34, 12, 0.08);
    backdrop-filter: blur(12px);
  }

  .hero-top,
  .console-head,
  .starter-box,
  .chat-feed,
  .speech-card {
    display: none !important;
  }

  .console-head .btn,
  .voice-grid .btn,
  .composer-row .btn {
    width: 100%;
    justify-content: center;
  }

  #envNotice {
    display: none !important;
  }

  .stage-card {
    grid-area: stage;
    padding: 10px 10px 0;
    min-height: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .avatar-stage {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 0.98;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    position: relative;
    min-width: 0;
  }

  .avatar-spine-host {
    inset: 8px 4px 0 4px;
    transform: scale(0.96);
    transform-origin: center bottom;
  }

  .mobile-reply-card,
  .mobile-user-card {
    display: block;
    padding: 12px 14px;
    min-width: 0;
  }

  .mobile-reply-card {
    grid-area: reply;
    min-height: 104px;
  }

  .mobile-user-card {
    grid-area: user;
    min-height: 76px;
  }

  .mobile-message-text {
    min-height: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
    white-space: pre-wrap;
    word-break: break-word;
  }

  .mobile-dock-shell {
    grid-area: dock;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px 108px;
    gap: 8px;
    padding: 10px;
    align-items: center;
  }

  .mobile-dock-shell .composer-card,
  .mobile-dock-shell .composer-row,
  .mobile-dock-shell .voice-grid,
  .mobile-dock-shell .voice-card,
  .mobile-dock-shell .call-actions {
    display: contents;
  }

  .mobile-dock-shell .voice-card--call {
    display: none;
  }

  .composer-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .input-label,
  .textSendState,
  .voice-title,
  .voice-desc,
  .voice-card .mini-state {
    display: none !important;
  }

  #textInput {
    grid-column: 1;
    min-height: 44px;
    height: 44px;
    max-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.35;
    resize: none;
    overflow: hidden;
  }

  #btnSendText,
  #btnHoldToTalk,
  #btnStartCall,
  #btnEndCall {
    min-height: 44px;
    height: 44px;
    padding: 8px 4px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1;
  }

  #btnSendText {
    grid-column: 2;
  }

  #btnHoldToTalk {
    grid-column: 3;
    white-space: pre-line;
    line-height: 1.05;
  }

  .avatar-character {
    transform: translateX(-50%) scale(1);
    transform-origin: bottom center;
  }
}
