:root {
  --bg: #0b1020;
  --panel: rgba(18, 25, 45, 0.95);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef2ff;
  --text-soft: #b8c1d9;
  --text-dim: #8a94b2;

  --theme-num-main: #7c8cff;
  --theme-num-soft: rgba(124, 140, 255, 0.14);
  --theme-num-line: rgba(124, 140, 255, 0.32);

  --theme-match-main: #ff6fae;
  --theme-match-soft: rgba(255, 111, 174, 0.14);
  --theme-match-line: rgba(255, 111, 174, 0.3);

  --theme-calc-main: #ffd84d;
  --theme-calc-soft: rgba(255, 216, 77, 0.14);
  --theme-calc-line: rgba(255, 216, 77, 0.32);

  --accent: #46d7c6;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-width: 1300px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(124, 140, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(70, 215, 198, 0.06), transparent 24%),
    #0b1020;
  color: var(--text);
  font-family: Pretendard, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  max-width: var(--max-width);
  margin: auto;
  padding: 20px 20px 96px;
}

.main-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card,
.glass {
  backdrop-filter: blur(12px);
}

.hidden {
  display: none !important;
}

.tab-view {
  display: block;
}

.input-panel,
.result-card,
.compat-panel,
.status-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
}

.input-panel,
.compat-panel {
  padding: 20px;
}

.result-card {
  padding: 14px;
}

.status-card {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
}

.only-panel {
  width: 100%;
}

.analysis-form,
.mini-calc-input-wrap {
  display: flex;
  flex-direction: column;
}

.field-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
}

.input-wrap + .field-label {
  margin-top: 14px;
}

.text-input,
.compat-select {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #070b18;
  color: white;
  padding: 0 12px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.text-input:focus,
.compat-select:focus {
  border-color: rgba(124, 140, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 140, 255, 0.12);
}

.form-actions,
.compat-actions,
.section-actions,
.card-footer-actions,
.period-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-actions,
.compat-actions {
  margin-top: 14px;
}

.form-help {
  margin-top: 14px;
}

.primary-btn,
.ghost-btn,
.secondary-btn,
.inline-btn,
.bottom-tab,
.modal-close-btn {
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  text-decoration: none;
  user-select: none;
}

.primary-btn,
.ghost-btn,
.secondary-btn {
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 15px;
}

.primary-btn {
  background: var(--theme-num-main);
  color: white;
  font-weight: 700;
}

.primary-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ghost-btn {
  background: transparent;
  border-color: var(--line);
  color: var(--text-soft);
  font-weight: 600;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.secondary-btn {
  background: rgba(70, 215, 198, 0.12);
  border-color: rgba(70, 215, 198, 0.22);
  color: #dffffb;
  font-weight: 700;
}

.secondary-btn:hover {
  background: rgba(70, 215, 198, 0.18);
  transform: translateY(-1px);
}

.primary-btn:active,
.ghost-btn:active,
.secondary-btn:active,
.inline-btn:active,
.bottom-tab:active,
.modal-close-btn:active {
  transform: translateY(0);
}

.primary-btn:disabled,
.ghost-btn:disabled,
.secondary-btn:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.inline-btn {
  background: var(--theme-num-soft);
  border-color: var(--theme-num-line);
  color: white;
  padding: 6px 11px;
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  min-width: 56px;
}

.inline-btn:hover {
  background: rgba(124, 140, 255, 0.22);
}

.small {
  height: 40px;
  padding: 0 14px;
  font-size: 0.88rem;
  border-radius: 10px;
}

.tiny-btn {
  height: 28px;
  padding: 0 10px;
  font-size: 0.74rem;
  border-radius: 8px;
  line-height: 1;
}

.form-help,
.status-text,
.compat-subtitle,
.compat-result-caption,
.core-number-label,
.period-name,
.fortune-label,
.period-range,
.mini-calc-subtitle,
.mini-calc-result-label,
.mini-calc-history-label {
  color: var(--text-soft);
}

.status-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.error-text {
  color: #ffd2da;
}

.success-text {
  color: #d7fff7;
}

.results-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.section-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.28fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.card-head {
  margin-bottom: 12px;
}

.section-card-title,
.subcycle-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-soft);
  margin: 0;
}

.section-card-title::before,
.section-card-title::after,
.subcycle-text::before,
.subcycle-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.core-grid,
.period-list,
.subcycle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.core-row,
.period-item,
.fortune-box,
.compat-select-card {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.core-row,
.period-item {
  display: grid;
  grid-template-columns: 118px minmax(120px, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
}

.core-label-block,
.period-label-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  gap: 4px;
  min-width: 0;
}

.core-number-label,
.period-name,
.period-range {
  display: block;
  text-align: left;
}

.core-value-block,
.period-value-block {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  text-align: center;
}

.core-number-value,
.period-value,
.fortune-value,
.compat-pair-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.core-number-value-small {
  font-size: 1.2rem;
}

.core-action-block,
.period-action-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  min-width: 96px;
}

.core-grid .core-action-block,
.period-list .period-action-block {
  min-width: 102px;
}

.subcycle-list .period-action-block {
  min-width: 132px;
}

.core-action-block.empty {
  visibility: hidden;
}

.phase-action-block {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.period-item .period-action-block {
  gap: 8px;
  flex-wrap: wrap;
}

.period-list .period-item .period-action-block,
.subcycle-list .period-item .period-action-block {
  min-width: 64px;
}

/* 핵심 수비학 + 대주기 해석 버튼 크게 */
.core-grid .core-action-block .inline-btn,
.period-list .period-action-block .inline-btn {
  min-width: 88px;
  height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 소주기 버튼은 현재 톤 유지 */
.subcycle-list .period-action-block .inline-btn {
  min-width: 58px;
  height: 32px;
  padding: 0 10px;
  border-radius: 9px;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fortune-grid {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.fortune-box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 110px;
}

.fortune-label {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.fortune-value {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.56rem;
  font-weight: 900;
}

.card-footer-actions {
  margin-top: 12px;
  justify-content: flex-end;
  align-items: center;
}

.compact-footer-actions {
  gap: 6px;
  margin-top: 10px;
}

.compact-footer-actions .tiny-btn {
  min-width: 88px;
}

/* 2주 운세만 더 얇게 */
.compact-footer-actions .secondary-btn[data-popup-key="two_week"] {
  height: 24px;
  min-width: 74px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 0.68rem;
  line-height: 1;
}

/* 운명 보기 버튼 배경 효과 */
.compact-footer-actions .ghost-btn[data-popup-key="fortune_destiny"] {
  position: relative;
  overflow: hidden;
  min-width: 88px;
  border-color: rgba(216, 188, 122, 0.28);
  background:
    linear-gradient(rgba(8, 12, 20, 0.56), rgba(8, 12, 20, 0.72)),
    url("destiny.png") center center / 170% auto no-repeat;
  color: #f0ddb0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 220, 150, 0.06),
    inset 0 -8px 14px rgba(0, 0, 0, 0.18);
}

.compact-footer-actions .ghost-btn[data-popup-key="fortune_destiny"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 220, 150, 0.1), transparent 42%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 11px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 11px
    );
  opacity: 0.55;
  pointer-events: none;
}

.compact-footer-actions .ghost-btn[data-popup-key="fortune_destiny"],
.compact-footer-actions .ghost-btn[data-popup-key="fortune_destiny"] span {
  position: relative;
  z-index: 1;
}

.compact-footer-actions .ghost-btn[data-popup-key="fortune_destiny"]:hover {
  border-color: rgba(240, 208, 140, 0.42);
  background:
    linear-gradient(rgba(8, 12, 20, 0.44), rgba(8, 12, 20, 0.64)),
    url("destiny.png") center center / 175% auto no-repeat;
  color: #f7e8bf;
}

.subcycle-divider {
  margin-top: 16px;
  margin-bottom: 12px;
}

.subcycle-text {
  padding: 10px 0;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.compat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.compat-subtitle {
  margin: 0;
  font-size: 0.92rem;
}

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

.compat-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.compat-result-section {
  margin-top: 16px;
}

.compat-result-card {
  padding: 18px;
}

.compat-result-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.compat-result-caption {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.compat-result-text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 0.95rem;
  font-family: Pretendard, sans-serif;
}

.bottom-tabbar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 24, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  z-index: 1000;
}

.bottom-tab {
  height: 48px;
  border-radius: 12px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.bottom-tab.active {
  color: #fff;
}

.bottom-tab.active.tab-num {
  background: var(--theme-num-soft);
  border-color: var(--theme-num-line);
}

.bottom-tab.active.tab-match {
  background: var(--theme-match-soft);
  border-color: var(--theme-match-line);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 10, 22, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-panel {
  width: min(860px, 100%);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  position: relative;
}

.modal-panel.fortune-destiny-theme::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(9, 14, 24, 0.66), rgba(9, 14, 24, 0.78)),
    url("destiny.png") center center / 72% auto no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.modal-panel.fortune-destiny-theme::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 216, 120, 0.08), transparent 34%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 28px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 28px
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 230, 170, 0.08),
    inset 0 16px 38px rgba(0, 0, 0, 0.2),
    inset 0 -16px 38px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  z-index: 0;
}

.modal-head,
.modal-footer,
.modal-body {
  position: relative;
  z-index: 1;
}

.modal-head,
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.modal-head {
  border-bottom: 1px solid var(--line);
}

.modal-footer {
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.modal-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.1rem;
}

.modal-body {
  padding: 16px 18px;
  overflow: auto;
}

.modal-content {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.93rem;
  font-family: Pretendard, sans-serif;
}

.modal-panel.fortune-destiny-theme .modal-title {
  color: #f2d793;
}

.modal-panel.fortune-destiny-theme .modal-content {
  color: #f4ebcf;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.mini-calc-panel {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
}

.mini-calc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-calc-title {
  font-size: 1.02rem;
}

.mini-calc-subtitle {
  margin: 6px 0 0;
  font-size: 0.88rem;
}

.mini-calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  align-items: end;
}

.mini-calc-actions {
  display: flex;
}

.mini-calc-actions .primary-btn {
  width: 100%;
}

.mini-calc-help {
  margin-top: 10px;
}

.mini-calc-status {
  margin-top: 14px;
}

.mini-calc-result {
  margin-top: 14px;
}

.mini-calc-result-card {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.mini-calc-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.mini-calc-final-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
}

.mini-calc-steps {
  margin: 8px 0 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  font-family: Pretendard, sans-serif;
}

.theme-num,
.theme-match,
.theme-calc {
  border-radius: var(--radius-lg);
}

.theme-num {
  border: 1px solid var(--theme-num-line);
  background: linear-gradient(
    180deg,
    rgba(124, 140, 255, 0.08),
    rgba(18, 25, 45, 0.95)
  );
}

.theme-match {
  border: 1px solid var(--theme-match-line);
  background: linear-gradient(
    180deg,
    rgba(255, 111, 174, 0.08),
    rgba(18, 25, 45, 0.95)
  );
}

.theme-calc {
  border: 1px solid var(--theme-calc-line);
  background: linear-gradient(
    180deg,
    rgba(255, 216, 77, 0.08),
    rgba(18, 25, 45, 0.95)
  );
}

.theme-num .text-input,
.theme-match .text-input,
.theme-calc .text-input,
.theme-match .compat-select {
  background: #070b18;
}

.theme-num .text-input {
  border: 1px solid var(--theme-num-line);
}

.theme-match .text-input,
.theme-match .compat-select {
  border: 1px solid var(--theme-match-line);
}

.theme-calc .text-input {
  border: 1px solid var(--theme-calc-line);
}

.theme-num .text-input:focus {
  border-color: rgba(124, 140, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(124, 140, 255, 0.12);
}

.theme-match .text-input:focus,
.theme-match .compat-select:focus {
  border-color: rgba(255, 111, 174, 0.48);
  box-shadow: 0 0 0 4px rgba(255, 111, 174, 0.12);
}

.theme-calc .text-input:focus {
  border-color: rgba(255, 216, 77, 0.48);
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.12);
}

.theme-num .primary-btn {
  background: var(--theme-num-main);
  color: #fff;
}

.theme-match .primary-btn {
  background: var(--theme-match-main);
  color: #fff;
}

.theme-calc .primary-btn {
  background: var(--theme-calc-main);
  color: #111;
  font-weight: 800;
}

.theme-num .field-label,
.theme-num .section-card-title,
.theme-num .section-title {
  color: #cfd5ff;
}

.theme-match .field-label,
.theme-match .section-card-title,
.theme-match .section-title,
.theme-match .compat-label {
  color: #ffc4dc;
}

.theme-calc .field-label,
.theme-calc .section-card-title,
.theme-calc .section-title {
  color: #ffe89a;
}

.theme-calc .mini-calc-final-number {
  color: #ffe07a;
}

.theme-match .compat-select-card {
  border-color: var(--theme-match-line);
  background: rgba(255, 111, 174, 0.07);
}

.theme-match .inline-btn {
  background: rgba(255, 111, 174, 0.12);
  border-color: rgba(255, 111, 174, 0.24);
}

.theme-match .inline-btn:hover {
  background: rgba(255, 111, 174, 0.2);
}

@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .app-shell {
    padding: 16px 16px 96px;
  }

  .section-header,
  .compat-header,
  .compat-result-top,
  .mini-calc-header {
    flex-direction: column;
    align-items: stretch;
  }

  .section-actions,
  .card-footer-actions {
    justify-content: stretch;
  }

  .section-actions .small,
  .card-footer-actions .small,
  .compact-footer-actions .tiny-btn {
    flex: 1 1 140px;
  }

  .fortune-grid {
    flex-direction: column;
  }

  .compat-picker-grid {
    grid-template-columns: 1fr;
  }

  .mini-calc-grid {
    grid-template-columns: 1fr;
  }

  .mini-calc-actions .primary-btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .core-row,
  .period-item {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .core-label-block,
  .period-label-block {
    align-items: flex-start;
    text-align: left;
  }

  .core-value-block,
  .period-value-block {
    justify-content: center;
  }

  .core-action-block,
  .period-action-block,
  .phase-action-block {
    justify-content: center;
  }

  .core-action-block.empty {
    display: none;
  }
}

@media (max-width: 560px) {
  .input-panel,
  .compat-panel,
  .mini-calc-panel {
    padding: 16px;
  }

  .result-card {
    padding: 12px;
  }

  .card-footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .compact-footer-actions .tiny-btn {
    width: 100%;
    min-width: 0;
  }

  .core-grid .core-action-block .inline-btn,
  .period-list .period-action-block .inline-btn {
    width: 100%;
    min-width: 0;
  }

  .compact-footer-actions .secondary-btn[data-popup-key="two_week"] {
    width: 100%;
    min-width: 0;
  }

  .bottom-tabbar {
    width: calc(100% - 20px);
    bottom: 12px;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .modal-panel {
    max-height: 90vh;
  }

  .core-number-value,
  .period-value,
  .fortune-value {
    font-size: 1.32rem;
  }

  .phase-action-block {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-panel.fortune-destiny-theme::before {
    background:
      linear-gradient(rgba(9, 14, 24, 0.72), rgba(9, 14, 24, 0.82)),
      url("destiny.png") center center / 92% auto no-repeat;
  }
}