:root {
  --ink: #2d2414;
  --muted: #725f3e;
  --paper: #f6edd7;
  --panel: #fff7e6;
  --line: #d8bd77;
  --yellow: #ffe200;
  --accent: #da3f2f;
  --green: #147a5c;
  --blue: #2765aa;
  --gold: #c9a84c;
  --dark: #0f0f1a;
  --light: #f0e6d3;
  --text: #e8dcc8;
  --hero-muted: #9a8f7e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #f3e4be;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-bottom: 62px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.app {
  min-height: calc(100vh - 62px);
}

.screen {
  display: none;
  min-height: calc(100vh - 62px);
  padding: 28px;
}

.screen.active {
  display: block;
}

.home {
  position: relative;
  display: none;
  min-height: calc(100vh - 62px);
  place-items: center;
  overflow: hidden;
  padding: 96px 24px 72px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(100, 50, 200, 0.06) 0%, transparent 50%),
    var(--dark);
}

.home.active {
  display: grid;
}

.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.badge {
  display: inline-block;
  border: 1px solid var(--gold);
  border-radius: 20px;
  margin-bottom: 28px;
  padding: 6px 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-shell h1 {
  margin: 0;
  color: var(--light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 400;
  letter-spacing: 8px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-shell h1 span {
  color: var(--gold);
}

.hero-sub {
  margin: 12px 0 28px;
  color: var(--hero-muted);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 44px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.88;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 360px));
  gap: 16px;
  justify-content: center;
  margin-top: 0;
}

.mode,
.panel {
  border: 1px solid rgba(92, 63, 13, 0.25);
  border-radius: 8px;
  background: rgba(255, 247, 230, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(51, 31, 0, 0.16);
}

.mode {
  min-height: 150px;
  border-color: rgba(201, 168, 76, 0.42);
  background: rgba(26, 26, 46, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  color: var(--light);
  padding: 22px;
  text-align: center;
}

.mode span {
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 800;
}

.mode small {
  color: var(--hero-muted);
  font-size: 15px;
  line-height: 1.4;
}

.topbar,
.game-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto 18px;
}

h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

.setup-grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(280px, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.panel {
  padding: 20px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fffdf6;
  color: var(--ink);
}

.choose-title {
  margin: 16px 0 10px;
  font-size: 18px;
  line-height: 1.1;
}

.figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px;
}

.figure {
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf6;
  color: var(--ink);
  display: grid;
  grid-template-rows: 1fr;
  place-items: center;
  padding: 10px;
}

.figure.selected {
  outline: 3px solid var(--yellow);
  border-color: var(--ink);
}

.figure b {
  display: block;
  font-size: 30px;
}

.figure img {
  width: 100%;
  height: 88px;
  object-fit: contain;
}

.primary,
.ghost {
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.primary {
  border: 0;
  background: var(--ink);
  color: #fff7e6;
}

.ghost {
  border: 1px solid var(--line);
  background: #fff7e6;
  color: var(--ink);
}

.hidden {
  display: none !important;
}

.room-box {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.room-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.room-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.room-link-row .ghost {
  min-height: 46px;
  padding: 0 14px;
}

.room-lobby {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.room-lobby > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.room-players {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-player {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 6px;
  border: 1px solid rgba(216, 189, 119, 0.9);
  border-radius: 8px;
  background: #fffdf6;
  padding: 7px 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.room-player span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rules-preview {
  line-height: 1.55;
}

.game {
  padding: 18px;
}

.game-head {
  max-width: 1500px;
}

.game-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 10px;
}

.table {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 320px;
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
}

.board-wrap {
  position: relative;
  aspect-ratio: 10240 / 7452;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(92, 63, 13, 0.25);
  border-radius: 8px;
  background: #ead6a5;
}

.board-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.roll-control {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(92, 63, 13, 0.24);
  border-radius: 8px;
  background: rgba(255, 251, 235, 0.92);
  box-shadow: 0 14px 30px rgba(45, 36, 20, 0.25);
}

.board-roll {
  position: static;
  z-index: 7;
  transform: none;
  min-width: 180px;
  box-shadow: none;
}

.roll-turn {
  max-width: 220px;
  color: var(--ink);
  text-align: center;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
}

.board-roll.rolling {
  animation: diceRoll 0.6s ease-in-out infinite;
}

.cell,
.token {
  position: absolute;
  transform: translate(-50%, -50%);
}

.cell {
  display: grid;
  place-items: center;
  width: clamp(20px, 2.4vw, 34px);
  height: clamp(20px, 2.4vw, 34px);
  border: 2px solid rgba(45, 36, 20, 0.45);
  border-radius: 50%;
  background: rgba(255, 247, 230, 0.54);
  font-size: 11px;
  font-weight: 900;
  z-index: 2;
  user-select: none;
}

.cell.special {
  background: var(--yellow);
}

.cell.scientist {
  color: transparent;
}

.top-board-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-rows: 52% auto auto auto;
  width: clamp(68px, 8.4vw, 118px);
  height: clamp(126px, 16vw, 230px);
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(138, 88, 0, 0.78);
  border-radius: 6px;
  background: #f8efd4;
  box-shadow: 0 8px 18px rgba(45, 36, 20, 0.22);
  pointer-events: none;
}

.top-board-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(138, 88, 0, 0.45);
}

.top-card-title,
.top-card-years,
.top-card-desc {
  margin: 2px 6px;
  overflow: hidden;
  color: #3a2000;
  text-align: center;
}

.top-card-title {
  align-self: end;
  font-size: clamp(10px, 1vw, 16px);
  font-weight: 950;
  line-height: 1.05;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.top-card-years {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8px, 0.8vw, 13px);
  font-style: italic;
  line-height: 1.1;
  white-space: nowrap;
}

.top-card-desc {
  display: grid;
  place-items: center;
  min-height: 24px;
  border: 1px solid rgba(138, 88, 0, 0.24);
  border-radius: 4px;
  background: #efe3bc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7px, 0.72vw, 11px);
  font-style: italic;
  line-height: 1.05;
}

.top-board-card.start {
  grid-template-rows: 52% auto auto auto;
  background: #f6e8bd;
}

.top-row-card {
  position: absolute;
  z-index: 6;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(138, 88, 0, 0.72);
  border-radius: 6px;
  background: #fbf4de;
  box-shadow: 0 8px 18px rgba(45, 36, 20, 0.2);
  pointer-events: none;
}

.top-row-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 0;
}

.top-row-card-copy {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: clamp(26px, 3.05vw, 50px);
  margin: 6px;
  border: 1px solid rgba(138, 88, 0, 0.22);
  border-radius: 3px;
  padding: 4px 6px;
  background: linear-gradient(180deg, #fffaf0 0%, #f2e5bd 100%);
  color: #3a2000;
  text-align: center;
}

.top-row-card-copy strong {
  overflow: hidden;
  font-size: clamp(8px, 0.86vw, 16px);
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-row-library-card {
  z-index: 7;
  border-color: rgba(31, 80, 46, 0.82);
  background: #dfeecb;
}

.top-row-library-card img {
  transform: rotate(180deg) scale(1.02);
  transform-origin: center;
}

.top-row-library-card .top-row-card-copy {
  border-color: rgba(31, 80, 46, 0.36);
  background: linear-gradient(180deg, #c9d99b 0%, #a8be76 100%);
  color: #12371f;
}

.top-row-library-card .top-row-card-copy strong {
  font-size: clamp(8px, 0.9vw, 16px);
}

.top-row-start-card {
  display: grid;
  place-items: center;
  background: #fbf4de;
}

.top-row-start-card strong {
  display: grid;
  place-items: center;
  width: calc(100% - 28px);
  min-height: 42px;
  border-radius: 3px;
  background: #efe3bc;
  color: #3a2000;
  font-size: clamp(12px, 1.1vw, 18px);
  font-weight: 950;
}

.tokens {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.card-label {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  grid-template-rows: auto;
  padding: 6px 7px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(138, 88, 0, 0.7);
  border-radius: 5px;
  background: linear-gradient(180deg, #fffaf0 0%, #f2e5bd 100%);
  color: #3a2000;
  text-align: center;
  box-shadow: 0 8px 18px rgba(45, 36, 20, 0.18);
  pointer-events: none;
}

.card-label::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 6px;
  background: #fbf4de;
}

.card-label strong {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.card-label strong {
  font-size: clamp(9px, 0.82vw, 16px);
  font-weight: 950;
  line-height: 1;
}

.card-label.start {
  background: rgba(255, 247, 230, 0.94);
}

.card-label.special {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.card-label.special::before {
  display: block;
  inset: -1px;
  border-radius: 2px;
}

.card-label.special.library {
  background: transparent;
}

.card-label.special.library::before {
  background: #b8c68f;
}

.card-label.special.observatory {
  background: transparent;
}

.card-label.special.observatory::before {
  background: #c895c8;
}

.card-label.special.laboratory {
  background: transparent;
}

.card-label.special.laboratory::before {
  background: #7fd9dc;
}

.card-label.left,
.card-label.right {
  padding: 7px 6px;
}

.card-label.left strong,
.card-label.right strong {
  font-size: clamp(8px, 0.7vw, 13px);
}

.side-board-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 19.75%;
  height: 13.55%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(138, 88, 0, 0.7);
  border-radius: 6px;
  background: #fbf4de;
  box-shadow: 0 8px 18px rgba(45, 36, 20, 0.2);
  pointer-events: none;
}

.side-board-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 5px;
}

.side-board-card.left img {
  order: -1;
}

.side-board-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.side-card-copy {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0;
  color: #3a2000;
  background: linear-gradient(90deg, #fffaf0 0%, #f2e5bd 100%);
}

.side-card-main {
  display: grid;
  place-items: center;
  min-width: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 1px solid rgba(138, 88, 0, 0.28);
  border-radius: 5px;
  background: rgba(239, 227, 188, 0.86);
  text-align: center;
}

.side-card-title {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(8px, 0.82vw, 16px);
  font-weight: 950;
  line-height: 1;
}

.scientist-hit {
  position: absolute;
  z-index: 8;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.scientist-hit:hover {
  background: rgba(255, 226, 0, 0.12);
  outline: 2px solid rgba(138, 88, 0, 0.28);
}

.scientist-years {
  margin-top: -8px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
}

.top-card-start-mark {
  display: grid;
  place-items: center;
  margin: 8px;
  border: 2px solid #8a5800;
  border-radius: 50%;
  background: #ffe200;
  color: #3a2000;
  font-size: clamp(12px, 1.1vw, 18px);
  font-weight: 950;
  white-space: nowrap;
}

.token {
  display: grid;
  place-items: center;
  width: clamp(30px, 3.1vw, 46px);
  height: clamp(30px, 3.1vw, 46px);
  border: 3px solid #fff7e6;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 23px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: left 520ms cubic-bezier(0.2, 0.8, 0.2, 1), top 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.token-render {
  overflow: visible;
  background: rgba(218, 63, 47, 0.78);
}

.token-render img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transform: translateY(-10px);
  pointer-events: none;
}

.side {
  display: grid;
  align-content: start;
  gap: 12px;
}

.dice {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  place-items: center;
  width: 132px;
  height: 92px;
  border-radius: 8px;
  background: #fffdf6;
  border: 1px solid var(--line);
  font-size: 40px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.dice.rolling {
  animation: diceRoll 0.6s ease-in-out infinite;
}

.dice-icon {
  font-size: 34px;
  line-height: 1;
}

.dice strong {
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 58px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  box-shadow: inset 0 -4px 0 rgba(45, 36, 20, 0.12), 0 10px 22px rgba(45, 36, 20, 0.2);
}

.dice.settled strong {
  animation: diceValuePop 0.58s cubic-bezier(0.18, 0.9, 0.18, 1.28);
  outline: 4px solid rgba(218, 63, 47, 0.34);
}

@keyframes diceRoll {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(16deg) scale(1.08); }
  100% { transform: rotate(-10deg) scale(1); }
}

@keyframes diceValuePop {
  0% { transform: scale(0.72); }
  55% { transform: scale(1.22); }
  100% { transform: scale(1); }
}

.players,
.log {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 12px;
}

.player {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(216, 189, 119, 0.55);
}

.player:last-child {
  border-bottom: 0;
}

.player.current {
  font-weight: 900;
  color: var(--green);
}

.log {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(45, 36, 20, 0.52);
}

.modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, 86vh);
  overflow: auto;
  border-radius: 8px;
  background: #fffdf6;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eee0bd;
  color: var(--ink);
  font-weight: 900;
}

.card-text {
  font-size: 20px;
  line-height: 1.45;
}

.question-layout {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
  align-items: start;
}

.scientist-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3ead1;
}

.scientist-card img,
.scientist-card video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.scientist-card span {
  display: block;
  padding: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.answer {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #f3ead1;
  line-height: 1.5;
}

.results-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}

.results-table th,
.results-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px 8px;
  text-align: left;
}

.results-table th:first-child,
.results-table td:first-child {
  width: 72px;
  text-align: center;
}

.special-card {
  display: grid;
  gap: 12px;
}

.special-card h2 {
  margin-bottom: 0;
}

.special-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.special-badge {
  width: fit-content;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  padding: 7px 12px;
  font-weight: 950;
}

.timer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-weight: 900;
}

.timer b {
  display: inline-block;
  min-width: 42px;
  font-variant-numeric: tabular-nums;
}

.hourglass {
  width: 42px;
  height: 54px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  position: relative;
  animation: flip 2.4s linear infinite;
}

.hourglass::before,
.hourglass::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.hourglass::before {
  top: 8px;
  border-top: 14px solid var(--yellow);
}

.hourglass::after {
  bottom: 8px;
  border-bottom: 14px solid var(--yellow);
}

@keyframes flip {
  0%, 45% { transform: rotate(0); }
  50%, 95% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.yellow-strip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  place-items: center;
  padding: 12px 18px;
  background: var(--yellow);
  color: #171200;
  text-align: center;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16);
}

.cta-pointer {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  filter: hue-rotate(185deg) saturate(1.7) brightness(0.9);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.65), 0 0 8px rgba(0, 87, 255, 0.28);
  animation: pointNudge 1.05s ease-in-out infinite;
}

@keyframes pointNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (max-width: 920px) {
  .screen {
    padding: 18px;
  }

  .mode-grid,
  .setup-grid,
  .table {
    grid-template-columns: 1fr;
  }

  .brand {
    margin-top: 5vh;
  }

  .board-wrap {
    min-height: 300px;
  }

  .figures {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-head,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .question-layout {
    grid-template-columns: 1fr;
  }

  .scientist-card {
    max-width: 190px;
  }
}
