:root {
  --page: #000000;
  --white: #ffffff;
  --muted: #8e8e8e;
  --nav: #2e2e2e;
  --pill: #28282a;
  --secondary: #c8c8c8;
  --secondary-soft: #c4c2c3;
  --hint: #d0d0d0;
  --hairline: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.16);
  --live: #50c05f;
  --card: rgba(40, 40, 42, 0.72);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-ui: Inter, "Segoe UI", system-ui, sans-serif;
  --font-display: "BubbledotICG-FinePos", "Geist Pixel Circle", monospace;
  --display: clamp(32px, 7vw, 64px);
  --chip: calc(var(--display) * 0.62);
}

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

html {
  background: var(--page);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--page);
  color: var(--white);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

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

.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--page);
}

.video-stage {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  overflow: hidden;
}

.video-stage video {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: translateY(-25%);
}

.content {
  position: relative;
  z-index: 10;
}

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  width: 100%;
  max-width: 720px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 28px 16px 0;
  animation: cal-header-in 0.7s var(--ease) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
}

.logo {
  display: flex;
  width: clamp(36px, 5.4vw, 42px);
  height: clamp(36px, 5.4vw, 42px);
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  font-size: clamp(28px, 4.6vw, 36px);
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.brand:hover .logo {
  transform: scale(1.04);
}

.wordmark {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #000000;
  line-height: 1;
}

.page-inner .wordmark {
  color: var(--white);
}

.nav-pill {
  display: none;
  height: 44px;
  max-width: 430px;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  padding: 4px 8px;
  box-shadow: var(--shadow-soft);
}

.nav-pill a {
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.nav-pill a:hover {
  opacity: 0.75;
}

.nav-pill a.is-active {
  opacity: 1;
}

.menu-toggle {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: #000;
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -5.25px;
}

.menu-toggle span::after {
  top: 5.25px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 16px;
  min-width: 180px;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  z-index: 40;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav);
  opacity: 0.5;
}

.mobile-nav a.is-active,
.mobile-nav a:hover {
  opacity: 1;
}

@media (min-width: 640px) {
  .nav-pill {
    display: flex;
    height: 48px;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Intro */
.intro {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 16px 0;
  text-align: center;
}

.tagline {
  margin: 0;
  font-size: clamp(15.5px, 2vw, 18.5px);
  font-weight: 400;
  color: var(--secondary-soft);
  opacity: 0.8;
  animation: cal-up-in 0.85s var(--ease) 0.12s both;
}

.claim-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 32px;
}

.claim-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  font-kerning: none;
  font-feature-settings: "kern" 0;
  color: var(--white);
  animation: cal-up-in 0.85s var(--ease) 0.12s both;
}

.money-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--pill);
  padding: 5px;
  box-shadow: inset 0 0 0 1px var(--hairline);
  animation: cal-up-in 0.85s var(--ease) 0.3s both;
}

.stepper {
  display: flex;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.2s ease;
}

.stepper:active {
  transform: scale(0.95);
}

.stepper svg {
  display: block;
}

.bid-input {
  box-sizing: content-box;
  min-width: 1.2em;
  width: 3.2em;
  margin: 0;
  padding: 0 10px;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: var(--chip);
  line-height: 1;
  letter-spacing: 0.08em;
  font-kerning: none;
  font-feature-settings: "kern" 0;
  color: var(--white);
  text-align: center;
  outline: none;
}

.hint {
  display: none;
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 13px;
  line-height: 1.625;
  color: var(--hint);
  opacity: 0.8;
  animation: cal-rise-in 0.85s var(--ease) 0.4s both;
}

.hint-bright {
  color: var(--white);
  opacity: 1;
}

.hint-mobile {
  display: block;
}

@media (min-width: 640px) {
  .hint-desktop {
    display: block;
  }

  .hint-mobile {
    display: none;
  }
}

@media (max-width: 639px) {
  :root {
    --display: clamp(26px, 8vw, 44px);
  }

  .claim-title {
    letter-spacing: 0.07em;
  }

  .bid-input {
    letter-spacing: 0.06em;
  }
}

.bid-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  gap: 12px;
  margin: 28px auto 0;
  animation: cal-rise-in 0.85s var(--ease) 0.4s both;
}

.url-field {
  display: flex;
  height: 56px;
  flex: 1;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--pill);
  padding: 0 16px;
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.url-field svg {
  flex-shrink: 0;
  color: var(--muted);
}

.url-field input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 15px;
  color: var(--white);
  outline: none;
}

.url-field input::placeholder {
  color: var(--muted);
}

.outbid {
  height: 56px;
  border-radius: 999px;
  background: var(--white);
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.2s ease;
}

.outbid:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.4);
}

.outbid:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.already {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  animation: cal-rise-in 0.85s var(--ease) 0.4s both;
}

.form-error {
  margin: 10px 0 0;
  min-height: 16px;
  font-size: 12px;
  color: #ff8a8a;
}

@media (min-width: 640px) {
  .bid-form {
    flex-direction: row;
  }

  .url-field,
  .outbid {
    height: 44px;
  }

  .url-field input {
    font-size: 14px;
  }
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.sheet[hidden] {
  display: none;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.sheet-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  flex-direction: column;
  gap: 14px;
  overflow: auto;
  border-radius: 24px;
  background: rgba(40, 40, 42, 0.96);
  padding: 22px 22px 20px;
  box-shadow: inset 0 0 0 1px var(--hairline), 0 18px 50px rgba(0, 0, 0, 0.45);
  animation: cal-rise-in 0.55s var(--ease) both;
  text-align: left;
}

.sheet-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sheet-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted);
}

.sheet-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 240px;
  padding: 28px 8px 12px;
}

.sheet-preview[hidden] {
  display: none;
}

.sheet-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sheet-body[hidden] {
  display: none;
}

.pixel-grid {
  display: grid;
  flex-shrink: 0;
  grid-template-columns: repeat(3, 5px);
  gap: 2px;
}

.pixel-cell {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--white);
  opacity: 0.15;
  animation: pixel-on 650ms ease-in-out var(--delay, 0ms) infinite;
}

.sheet-preview-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background-image: linear-gradient(90deg, var(--muted) 35%, var(--white) 50%, var(--muted) 65%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer-text 1.4s linear infinite;
}

.sheet-preview-time {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

@keyframes pixel-on {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 1;
  }
}

@keyframes shimmer-text {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.sheet-logo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.sheet-logo .favicon,
.sheet-logo-btn {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  margin: 0;
  padding: 10px;
  cursor: pointer;
  background: var(--white);
}

.sheet-logo-btn:hover {
  box-shadow: inset 0 0 0 1px var(--white);
}

.sheet-logo-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sheet-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: var(--white);
}

.sheet-close {
  display: flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sheet-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
}

.sheet-field input,
.sheet-field textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: #1a1a1c;
  box-shadow: inset 0 0 0 1px var(--hairline);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  resize: none;
}

.sheet-field textarea {
  min-height: 84px;
  line-height: 1.45;
  border-radius: 18px;
}

.sheet-error {
  min-height: 16px;
  margin: 0;
  font-size: 12px;
  color: #ff8a8a;
}

.sheet-submit {
  width: 100%;
  height: 48px;
}

body.sheet-open {
  overflow: hidden;
}

/* Metrics */
.metrics {
  display: grid;
  width: 100%;
  max-width: 920px;
  grid-template-columns: 1fr 1fr;
  gap: 24px 4px;
  margin: 48px auto 0;
  padding: 0 4px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.metric-icon {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 33px);
  font-weight: 400;
  line-height: 1;
}

.metric-value {
  font-size: clamp(18px, 3.2vw, 26px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}

.metric-label {
  text-align: center;
  font-size: clamp(11px, 2.2vw, 12.5px);
  line-height: 1.25;
  color: var(--muted);
}

.cal-m1 { animation: cal-rise-in 0.85s var(--ease) 0.5s both; }
.cal-m2 { animation: cal-rise-in 0.85s var(--ease) 0.58s both; }
.cal-m3 { animation: cal-rise-in 0.85s var(--ease) 0.66s both; }
.cal-m4 { animation: cal-rise-in 0.85s var(--ease) 0.74s both; }

@media (min-width: 640px) {
  .metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Board */
.board {
  width: 100%;
  max-width: 896px;
  margin: 64px auto 0;
  padding: 0 16px;
}

.board-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.pager {
  font-size: 12px;
  color: var(--muted);
}

.refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--secondary);
  transition: background 0.2s ease;
}

.refresh:hover {
  background: rgba(255, 255, 255, 0.1);
}

.refresh svg {
  width: 14px;
  height: 14px;
}

.refresh.is-spinning svg {
  animation: spin 0.7s var(--ease);
}

.listings {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.listing {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--card);
  padding: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.listing.is-top {
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.listing:hover {
  background: rgba(50, 50, 52, 0.88);
}

.listing-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rank-pill {
  display: flex;
  height: 28px;
  min-width: 36px;
  margin-top: 6px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.favicon {
  position: relative;
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  padding: 8.8px;
  box-sizing: border-box;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.favicon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.favicon.has-logo {
  padding: 0;
  background: var(--white);
}

.favicon.has-logo img {
  background: var(--white);
}

.favicon .fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.favicon.has-logo .fallback,
.favicon .fallback[hidden] {
  display: none;
}

.listing-body {
  min-width: 0;
  flex: 1;
}

.listing-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.listing-company {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
}

.listing-blurb {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 6px 0 0;
  font-size: 13.5px;
  color: rgba(200, 200, 200, 0.8);
}

.listing-meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.listing-bid {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  text-align: right;
}

.claim-rank {
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
  white-space: nowrap;
  border-radius: 12px;
  background: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  opacity: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
}

.listing:hover .claim-rank {
  pointer-events: auto;
  opacity: 1;
}

.claim-rank span {
  color: rgba(0, 0, 0, 0.5);
}

.click-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 999px;
  background: var(--white);
  pointer-events: none;
  z-index: 30;
  animation: cal-dot-pulse 0.6s var(--ease) forwards;
}

.listing.is-flash {
  animation: cal-flash 1.1s var(--ease) both;
}

@media (min-width: 640px) {
  .favicon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 14px;
    padding: 12.3px;
  }
}

/* Earnings */
.earnings {
  width: 100%;
  max-width: 896px;
  margin: 96px auto 0;
  padding: 0 16px 24px;
  text-align: center;
}

.earnings p {
  margin: 0;
  font-size: 15px;
  color: var(--secondary-soft);
}

.earnings strong {
  font-weight: 500;
  color: var(--white);
}

.earnings-card {
  display: inline-block;
  margin: 16px auto;
  border-radius: 24px;
  background: var(--pill);
  padding: 24px 32px;
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.earnings-amount {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1;
  letter-spacing: 0.08em;
  font-kerning: none;
  color: var(--white);
}

.site-footer {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
}

/* Inner pages */
.page-inner {
  min-height: 100vh;
  background: var(--page);
}

.doc {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 16px 96px;
  animation: cal-rise-in 0.85s var(--ease) both;
}

.doc h1 {
  margin: 0;
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}

.doc-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #9a9a9a;
}

.doc-copy {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--secondary);
}

.doc-copy strong {
  font-weight: 600;
  color: var(--white);
}

.doc section {
  margin-top: 40px;
}

.doc h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.doc section p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--secondary);
}

.doc section p + p {
  margin-top: 12px;
}

.doc .hl {
  color: var(--white);
}

.back-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 48px;
  border-radius: 999px;
  background: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: opacity 0.2s ease;
}

.back-pill:hover {
  opacity: 0.8;
}

/* Motion */
@keyframes cal-header-in {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cal-up-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cal-rise-in {
  from { opacity: 0; filter: blur(6px); transform: translateY(16px) scale(0.98); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

@keyframes cal-dot-pulse {
  from { opacity: 0.9; transform: scale(0.4); }
  to { opacity: 0; transform: scale(2.4); }
}

@keyframes cal-flash {
  from { background-color: rgba(255, 255, 255, 0.85); }
  to { background-color: var(--card); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .tagline,
  .claim-title,
  .money-chip,
  .hint,
  .bid-form,
  .already,
  .cal-m1,
  .cal-m2,
  .cal-m3,
  .cal-m4,
  .listing.is-flash,
  .click-dot,
  .sheet-card,
  .doc {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
  }

  .outbid,
  .logo,
  .claim-rank,
  .refresh svg {
    transition: none;
  }

  .pixel-cell,
  .sheet-preview-label {
    animation: none !important;
  }

  .pixel-cell {
    opacity: 0.15;
  }

  .sheet-preview-label {
    background: none;
    color: var(--secondary);
  }
}
