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

:root {
  --bg: #14121b;
  --card: #1e1b2b;
  --line: #3f3a52;
  --text: #f5f3ff;
  --muted: #d7d1ff;
  --accent: #ffb24f;
  --good: #79d7a3;
  --bad: #ff7e92;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, #2a2440 0%, var(--bg) 48%, #0d0d17 100%);
  color: var(--text);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Segoe UI", sans-serif;
}

body {
  padding: 20px;
}

.app {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.card {
  background: linear-gradient(165deg, rgba(39, 33, 61, 0.98), rgba(27, 23, 45, 0.95));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.opening-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(13, 12, 20, 0.95), rgba(8, 7, 14, 0.97));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.4s ease;
  opacity: 1;
}

.opening-overlay video {
  width: min(100%, 960px);
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border: 1px solid rgba(255, 193, 129, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
  background: #000;
}

.opening-overlay--closing {
  opacity: 0;
  pointer-events: none;
}

.opening-start,
.opening-skip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #ffd26a, #ff9f3f);
  color: #301600;
  font-weight: 800;
  min-width: 140px;
  min-height: 52px;
  padding: 10px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.opening-skip {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: auto;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.95rem;
}

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

form {
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
}

input,
select,
button {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-size: 1rem;
  background: #120f1f;
  color: var(--text);
}

select#scenario-id {
  cursor: pointer;
}

button {
  cursor: pointer;
  background: linear-gradient(180deg, #ff8f57, #f16d39);
  color: #1c0e00;
  font-weight: 700;
  border: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.coach-hint {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
}

.player-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #161226;
  object-fit: contain;
  image-rendering: pixelated;
}

/* 選角畫面 */
.charselect {
  display: grid;
  gap: 6px;
}

.charselect-label {
  font-size: 0.95rem;
  color: var(--muted);
}

.avatar-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.avatar-nav {
  min-width: 54px;
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #262036;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}

.avatar-preview-wrap {
  display: grid;
  gap: 6px;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #120f1f;
  padding: 6px;
}

.avatar-preview {
  width: min(180px, 52vw);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #1c1730;
  object-fit: contain;
  image-rendering: pixelated;
  padding: 6px;
}

.avatar-counter {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #161226;
  flex-shrink: 0;
  white-space: nowrap;
}

.scene {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* 對齊 1280x720 圖層，百分比座標一比一對應 */
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: #27222e;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 老闆：座標反算自 ART/Layers/5.png */
.npc-layer {
  position: absolute;
  left: 46.7%;
  top: 22.3%;
  width: 43.8%;
}

#npc {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center 82%;
  animation: npc-breath 2.6s ease-in-out infinite;
}

@keyframes npc-breath {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-0.45%) scale(1.01);
  }
}

/* 前景桌子：直接用 ART/Layers/4.png（已置中定位的整版前景），鋪滿 16:9 畫布 */
.table-fg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.scene-prop {
  position: absolute;
  pointer-events: auto;
  object-fit: contain;
  image-rendering: pixelated;
  transition: transform 0.18s ease;
  cursor: pointer;
}

.scene-prop:hover {
  transform: translateY(-1px) scale(1.01);
}

#prop-mascot {
  left: 5%;
  top: 7%;
  width: 17%;
  z-index: 4;
}

#prop-maneki {
  right: 4%;
  top: 6%;
  width: 13%;
  z-index: 4;
}

/* 立牌：座標反算自 ART/Layers/2.png */
.desk-layer {
  position: absolute;
  left: 77.3%;
  top: 69.8%;
  width: 26.8%;
}

#desk {
  display: block;
  width: 100%;
}

#desk-text {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 86%;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: 1.15;
  font-weight: 700;
  color: #311b00;
  white-space: pre-line;
  word-break: break-word;
  overflow: hidden;
  max-height: 2.6em;
  pointer-events: none;
  text-shadow: 0 0 4px #fff8e8;
}

.obj {
  position: absolute;
  height: auto;
}

/* 茶杯（mood 指示）：座標反算自 ART/Layers/3.png */
#obj-mood {
  left: 59.3%;
  top: 73.8%;
  width: 11.1%;
}

/* 合約（deal 指示）：座標反算自 ART/Layers/1.png */
#obj-deal {
  left: 3.1%;
  top: 51.9%;
  width: 28.1%;
}

/* P2-D 三關疊圖微調（見 ART/三關疊圖座標對照表.md）
   drink_shop 用 Layers 基準；gear/boba 已於 2026-06-04 用 tools/preview_scene.py
   合成驗收（立牌移入桌面、道具貼桌不浮空），啟用以下覆寫。
   需 .scene 已有 data-scenario（app.js setScenarioScene 已設）。
*/
.scene[data-scenario="gear_chain"] .npc-layer { left: 44%; top: 20%; width: 46%; }
.scene[data-scenario="gear_chain"] .desk-layer { left: 72%; top: 68%; width: 28%; }
.scene[data-scenario="gear_chain"] #obj-mood { left: 62%; top: 72%; width: 10%; }
.scene[data-scenario="gear_chain"] #obj-deal { left: 8%; top: 55%; width: 26%; }

.scene[data-scenario="boba_chain"] .npc-layer { left: 47%; top: 23%; width: 42%; }
.scene[data-scenario="boba_chain"] .desk-layer { left: 68%; top: 71%; width: 30%; }
.scene[data-scenario="boba_chain"] #obj-mood { left: 55%; top: 74%; width: 12%; }
.scene[data-scenario="boba_chain"] #obj-deal { left: 12%; top: 53%; width: 25%; }

#bg.is-missing,
#npc.is-missing,
#table.is-missing,
#desk.is-missing,
#obj-mood.is-missing,
#obj-deal.is-missing {
  background: linear-gradient(120deg, #2e2a42, #17132a);
  object-fit: none;
  border: 1px dashed #5f5a7f;
  min-height: 80px;
}

.history {
  max-height: 140px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  min-height: 48px;
}

.bubble-row {
  max-width: 84%;
  padding: 8px 10px;
  border-radius: 10px;
  line-height: 1.4;
}

/* LINE 模式：對方(NPC)靠左·淺色氣泡；自己(玩家)靠右·LINE 綠氣泡 */
.bubble-row.npc {
  align-self: flex-start;
  background: #ECEAF1;
  color: #241c3a;
  border-top-left-radius: 0;
}

.bubble-row.player {
  align-self: flex-end;
  background: #06C755; /* LINE 綠 */
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); /* 提升白字在綠底可讀性(投影/強光) */
  border-top-right-radius: 0;
}

/* NPC 當前台詞＝靠左的淺色 NPC 氣泡 */
.prompt-card {
  max-width: 85%;
  margin-right: auto; /* 推到左側 */
  border-radius: 12px;
  border-top-left-radius: 0;
  border: 1px solid var(--line);
  padding: 10px;
  background: #ECEAF1;
  color: #241c3a;
  margin-bottom: 10px;
}

#prompt-text {
  margin: 0;
  color: #241c3a;
}

/* 選項＝玩家要說的話 → 靠右排列（玩家側） */
.options {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.option-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  max-width: 85%;
  background: rgba(6, 199, 85, 0.12); /* 玩家綠·待送出（外框感，與已送出實心綠區隔）*/
  border: 1px solid #06C755;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  border-top-right-radius: 0;
  cursor: pointer;
  white-space: normal;
}

.option-btn:hover {
  background: rgba(6, 199, 85, 0.22);
}

.option-text {
  display: block;
}

.option-failed-label {
  display: inline-block;
  font-size: 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2px 7px;
  line-height: 1.2;
  color: #3a1e00;
  background: rgba(255, 176, 64, 0.32);
  border-color: rgba(255, 176, 64, 0.5);
}

/* 回顧卡：各關切換 */
.review-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.review-tab {
  width: auto;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #221c38;
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
}
.review-tab.is-active {
  background: linear-gradient(180deg, #ff8f57, #f16d39);
  color: #1c0e00;
  font-weight: 700;
  border-color: transparent;
}
.review-sponsor {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--accent);
}

.option-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.option-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.option-btn.is-failed {
  opacity: 0.75;
  filter: grayscale(1);
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.result-actions {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.achievement-panel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid rgba(255, 178, 79, 0.35);
  border-radius: 12px;
  background: rgba(255, 178, 79, 0.08);
}

.achievement-avatar {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #161226;
  object-fit: contain;
  image-rendering: pixelated;
}

.achievement-body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.achievement-title {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.achievement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}

.achievement-badge {
  width: 84px;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(18, 15, 31, 0.68);
  animation: achievement-pop 0.26s ease-out both;
}

.achievement-badge img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  image-rendering: pixelated;
}

.achievement-badge-name {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.25;
  text-align: center;
}

.achievement-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

#review-card {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #120f1f;
}

.review-track-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-track-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #161226;
  object-fit: contain;
  image-rendering: pixelated;
}

.review-track-title {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
}

#review-list {
  display: grid;
  gap: 8px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.track-card {
  display: grid;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(30, 27, 43, 0.88);
}

.track-card.is-bad {
  background: rgba(160, 160, 170, 0.16);
  border-color: rgba(255, 126, 146, 0.35);
  filter: grayscale(0.35);
}

.track-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.track-card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.track-card-label,
.track-card-speech {
  margin: 0;
}

.track-card-label {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
}

.track-card-speech {
  color: var(--text);
  line-height: 1.35;
}

.track-npc-face {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1c1730;
  object-fit: contain;
}

.track-card-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.track-hint-chip {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  color: #2a1c00;
  background: rgba(255, 176, 64, 0.85);
  font-size: 0.78rem;
  line-height: 1.25;
}

@keyframes achievement-pop {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hidden {
  display: none;
}

#result-feedback {
  white-space: pre-line;
}

.reflection-label {
  display: block;
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.reflection-input {
  width: 100%;
  min-height: 86px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 8px;
  background: #120f1f;
  color: var(--text);
}

.admin-toolbar {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-ops {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-op-btn {
  width: auto;
  min-width: 160px;
}

.admin-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.admin-link:hover {
  text-decoration: underline;
}

.admin-link-active {
  color: #ffd88d;
}

.admin-sep {
  color: var(--muted);
}

.admin-list {
  margin-top: 10px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.admin-table th {
  background: #17122a;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-table .admin-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.admin-table .admin-muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-table .admin-fail {
  background: rgba(255, 98, 128, 0.08);
}

.admin-table .admin-picked {
  background: rgba(255, 214, 102, 0.18);
}

.admin-table .admin-row {
  cursor: pointer;
}

.admin-result-fail {
  color: #ff93ad;
  font-weight: 700;
}

.admin-result-maybe {
  color: #ffd37c;
  font-weight: 700;
}

.admin-result-deal {
  color: #8effb7;
  font-weight: 700;
}

@media (max-width: 640px) {
  body {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .history {
    max-height: 100px;
    min-height: 36px;
  }

  .scene {
    min-height: 0;
    max-height: 52vw;
  }

  .prompt-card {
    max-height: 70px;
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-overlay {
    transition: opacity 0.1s linear;
  }

  #npc {
    animation: none;
  }

  .maneki-rare-fx {
    animation: none !important;
    transition: none !important;
  }

  .maneki-rare-particles {
    animation: none !important;
    transition: none !important;
    display: none;
  }

  .scene-prop {
    animation: none !important;
    transition: none !important;
  }

  .maneki-rare-glow {
    animation: none !important;
    display: none;
  }

  .achievement-badge {
    animation: none !important;
  }
}

@keyframes maneki-rare-motion {
  0% {
    transform: translateY(0px) rotate(-6deg);
  }
  25% {
    transform: translateY(-4px) rotate(-6deg);
  }
  50% {
    transform: translateY(0px) rotate(6deg);
  }
  75% {
    transform: translateY(-4px) rotate(6deg);
  }
  100% {
    transform: translateY(0px) rotate(-6deg);
  }
}

@keyframes maneki-rare-shimmer {
  0% {
    filter: hue-rotate(0deg) brightness(1) drop-shadow(0 0 6px rgba(255, 194, 94, 0.45));
  }
  50% {
    filter: hue-rotate(180deg) brightness(1.18) drop-shadow(0 0 14px rgba(255, 220, 120, 0.6));
  }
  100% {
    filter: hue-rotate(360deg) brightness(1) drop-shadow(0 0 6px rgba(255, 194, 94, 0.45));
  }
}

@keyframes maneki-rare-glow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes maneki-rare-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.95;
  }
  100% {
    transform: translateY(150px) rotate(360deg);
    opacity: 0;
  }
}

.maneki-rare-particles {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  display: none;
}

.maneki-rare-particle {
  position: absolute;
  will-change: transform, opacity;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.35));
  animation: maneki-rare-fall linear forwards;
}

.maneki-rare-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, rgba(255, 212, 120, 0.68), rgba(255, 196, 80, 0.24) 40%, rgba(255, 196, 80, 0));
  animation: maneki-rare-glow 1.6s ease-in-out infinite;
  opacity: 0.7;
  transform-origin: center center;
  display: none;
}

.maneki-rare-glow.is-active {
  display: block;
}

.maneki-rare-particles.is-active {
  display: block;
}

.maneki-rare-fx {
  transform-origin: bottom center;
  animation:
    maneki-rare-motion 1.8s ease-in-out infinite,
    maneki-rare-shimmer 2.4s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 214, 102, 0.55));
}

/* ── Boss 自由打字 / 填空輸入 ───────────────────────────────── */
.free-type-round {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 85%;
  margin-right: auto; /* 與玩家泡泡同側 */
}

/* 填空：固定文字 + 行內填空格組成一句話 */
.fill-sentence {
  background: rgba(6, 199, 85, 0.10);
  border: 1px solid #06C755;
  border-radius: 12px;
  border-top-left-radius: 0;
  padding: 14px 14px 16px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 2.1; /* 留高度給行內輸入框 */
}

.fill-blank {
  display: inline-block;
  min-width: 64px;
  margin: 0 3px;
  padding: 3px 8px;
  font: inherit;
  color: #2a1c00;
  background: #ffe9c7;
  border: none;
  border-bottom: 2px solid var(--accent);
  border-radius: 6px;
  outline: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  vertical-align: baseline;
}

.fill-blank::placeholder {
  color: #9a7b46;
  font-size: 0.9em;
}

.fill-blank:focus {
  background: #fff4e0;
  box-shadow: 0 0 0 3px rgba(255, 178, 79, 0.35);
}

.fill-blank.is-empty {
  background: rgba(255, 126, 146, 0.22);
  border-bottom-color: var(--bad);
  animation: fill-shake 0.32s ease;
}

@keyframes fill-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.fill-hint {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.fill-reminder {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bad);
}

.fill-reminder.hidden {
  display: none;
}

/* 自由模式 textarea */
.free-type-input {
  width: 100%;
  min-height: 96px;
  padding: 12px;
  font: inherit;
  line-height: 1.6;
  color: var(--text);
  background: rgba(6, 199, 85, 0.08);
  border: 1px solid #06C755;
  border-radius: 12px;
  border-top-left-radius: 0;
  outline: none;
  resize: vertical;
  transition: box-shadow 0.15s ease;
}

.free-type-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.free-type-input:focus {
  box-shadow: 0 0 0 3px rgba(6, 199, 85, 0.25);
}

.free-type-submit {
  align-self: flex-end;
  max-width: none;
  width: auto;
  padding: 10px 28px;
  align-items: center;
  font-weight: 600;
}
