:root {
  --bg: #070b1f;
  --bg-alt: #0a0f29;
  --bg-card: #0e1433;
  --bg-footer: #05081a;
  --yellow: #ffd23f;
  --pink: #ff2e88;
  --cyan: #7fe0ff;
  --green: #3dff88;
  --text: #ffffff;
  --text-muted: #9fb0cf;
  --footer-muted: #5a6b8c;
  --border: rgba(127, 224, 255, 0.22);
  --border-soft: rgba(127, 224, 255, 0.15);
  --font-pixel: "Press Start 2P", monospace;
  --font-retro: "VT323", monospace;
  --font-base: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--yellow);
  color: var(--bg);
}

a {
  transition: color 0.1s ease, background-color 0.1s ease, border-color 0.1s ease;
}

@keyframes bmrPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes bmrBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes bmrScroll {
  from { background-position: 0 0; }
  to { background-position: 0 -200px; }
}

/* ===== CRT OVERLAY ===== */

.crt-scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}

.crt-vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

/* ===== SHARED ===== */

.container-padded {
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 48px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-retro);
  font-size: 21px;
  color: var(--pink);
  letter-spacing: 0.13em;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-pixel);
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.3;
  color: var(--text);
  text-shadow: 3px 3px 0 var(--pink);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--pink);
  animation: bmrPulse 1.2s steps(2) infinite;
  flex: none;
}

.pulse-dot--lg {
  width: 9px;
  height: 9px;
}

.pulse-dot--sm {
  width: 8px;
  height: 8px;
}

.btn-pixel {
  display: inline-block;
  text-decoration: none;
  background: var(--yellow);
  color: var(--bg);
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 var(--pink);
  font-family: var(--font-pixel);
}
.btn-pixel:hover {
  background: #fff;
}

.btn-pixel--nav {
  font-size: 11px;
  padding: 12px 18px;
}

.btn-pixel--md {
  font-size: 11px;
  padding: 14px 20px;
  box-shadow: 3px 3px 0 var(--pink);
}

.btn-pixel--lg {
  font-size: 13px;
  padding: 18px 30px;
  border-width: 3px;
  box-shadow: 4px 4px 0 var(--pink);
  margin-top: 34px;
}

.btn-cta {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-pixel);
  background: var(--yellow);
  color: var(--bg);
  font-size: 10px;
  padding: 12px 16px;
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 var(--pink);
}
.btn-cta:hover {
  background: #fff;
}

.btn-outline {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-pixel);
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-size: 10px;
  padding: 13px 18px;
}
.btn-outline:hover {
  background: rgba(127, 224, 255, 0.12);
}

.link {
  font-family: var(--font-retro);
  color: var(--cyan);
  text-decoration: none;
  font-size: 21px;
  letter-spacing: 0.04em;
}
.link:hover {
  color: var(--text);
}

.link-strong {
  font-family: var(--font-retro);
  color: var(--text);
  text-decoration: none;
  font-size: 21px;
  letter-spacing: 0.04em;
}
.link-strong:hover {
  color: var(--yellow);
}

.avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a2150, #0e1433);
  border: 2px solid rgba(127, 224, 255, 0.3);
  flex: none;
}

.avatar--sm {
  width: 38px;
  height: 38px;
}

.avatar--placeholder {
  background: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-pixel);
  font-size: 14px;
}

/* ===== NAV ===== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 2px solid rgba(255, 210, 63, 0.25);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--bg);
  box-shadow: 3px 3px 0 var(--pink);
  flex: none;
}

.logo-mark--small {
  width: 30px;
  height: 30px;
  font-size: 11px;
  box-shadow: none;
}

.navbar__brand-name {
  font-family: var(--font-pixel);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--pink);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}

.hero__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background-image: linear-gradient(rgba(255, 46, 136, 0.55) 2px, transparent 2px),
    linear-gradient(90deg, rgba(127, 224, 255, 0.4) 2px, transparent 2px);
  background-size: 60px 60px;
  transform: perspective(420px) rotateX(62deg);
  transform-origin: bottom;
  animation: bmrScroll 6s linear infinite;
  opacity: 0.55;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 60%, var(--bg) 96%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 130px 48px;
  text-align: center;
}

.hero__coin {
  font-family: var(--font-retro);
  font-size: 22px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  margin-bottom: 26px;
}

.hero__title {
  font-family: var(--font-pixel);
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.18;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 rgba(127, 224, 255, 0.45);
}

.hero__tagline {
  font-family: var(--font-pixel);
  font-size: clamp(13px, 1.9vw, 22px);
  line-height: 1.5;
  color: var(--text);
  margin-top: 34px;
  text-shadow: 2px 2px 0 var(--pink);
}

.hero__art {
  position: relative;
  margin-top: 54px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: linear-gradient(160deg, #141a3d, #0a0f29);
  border: 3px solid var(--yellow);
  box-shadow: 0 0 0 3px var(--bg), 0 0 36px rgba(255, 210, 63, 0.35), 8px 8px 0 var(--pink);
}

.hero__art-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(127, 224, 255, 0.05) 0 2px, transparent 2px 18px);
}

.hero__art-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px;
  text-align: center;
}

.hero__art-tag {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--cyan);
}

.hero__art-note {
  font-family: var(--font-retro);
  font-size: 19px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 460px;
  line-height: 1.4;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__stat-value {
  font-family: var(--font-pixel);
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--pink);
}

.hero__stat-label {
  font-family: var(--font-retro);
  font-size: 19px;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

/* ===== GAMES ===== */

.games-section,
.how-section {
  background: var(--bg-alt);
  border-top: 2px solid rgba(127, 224, 255, 0.25);
}

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

.game-card {
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 2px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  border-color: var(--yellow);
}

.game-card__art {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #1a2150, var(--bg-alt));
}

.game-card__art-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 46, 136, 0.07) 0 2px, transparent 2px 14px);
}

.game-card__art-label {
  position: absolute;
  top: 11px;
  left: 13px;
  font-family: var(--font-retro);
  font-size: 15px;
  color: rgba(127, 224, 255, 0.5);
}

.game-card__tag {
  position: absolute;
  top: 11px;
  right: 13px;
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--bg);
  background: var(--yellow);
  padding: 5px 7px;
}

.game-card__body {
  padding: 16px 18px 18px;
}

.game-card__name {
  font-family: var(--font-pixel);
  font-size: 12px;
  margin-bottom: 11px;
  color: var(--text);
  line-height: 1.4;
}

.game-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-retro);
  font-size: 18px;
  color: var(--cyan);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  flex: none;
}

/* ===== BATTLES ===== */

.battles-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 48px;
}

.battles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.battle-card {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.battle-card:hover {
  border-color: var(--yellow);
}

.battle-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.battle-card__game {
  font-family: var(--font-retro);
  font-size: 19px;
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--pink);
}

.badge-open {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--green);
  animation: bmrBlink 1.4s steps(1) infinite;
}

.battle-card__matchup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.player--right {
  justify-content: flex-end;
  text-align: right;
}

.player__info {
  min-width: 0;
}

.player__handle {
  font-family: var(--font-retro);
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.player__rank {
  font-family: var(--font-retro);
  font-size: 16px;
  color: var(--cyan);
}

.vs {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--yellow);
  flex: none;
}

.opponent-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-end;
  text-align: right;
  font-family: var(--font-retro);
  font-size: 18px;
  color: var(--cyan);
}

.battle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--border-soft);
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 16px;
}

.battle-card__stats {
  display: flex;
  gap: 30px;
}

.stat-label {
  font-family: var(--font-retro);
  font-size: 15px;
  color: var(--cyan);
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.stat-value {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--text);
}

.stat-value--accent {
  color: var(--yellow);
}

/* ===== HOW IT WORKS ===== */

.how-section__header {
  text-align: center;
  margin-bottom: 54px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  padding: 34px 28px;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card__number {
  font-family: var(--font-pixel);
  font-size: 26px;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--pink);
  line-height: 1;
}

.step-card__title {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}

.step-card__body {
  font-family: var(--font-retro);
  font-size: 19px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ===== RANKINGS ===== */

.rankings-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.rankings-intro__title {
  font-family: var(--font-pixel);
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.4;
  color: var(--text);
  text-shadow: 3px 3px 0 var(--pink);
  margin-bottom: 22px;
}

.rankings-intro__body {
  font-family: var(--font-retro);
  font-size: 21px;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.rankings-list {
  background: var(--bg-alt);
  border: 2px solid var(--border);
}

.ranking-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 24px;
  border-bottom: 2px solid var(--border-soft);
}
.ranking-row:last-child {
  border-bottom: none;
}

.ranking-row__pos {
  font-family: var(--font-pixel);
  font-size: 15px;
  color: var(--yellow);
  width: 34px;
  flex: none;
}

.ranking-row__info {
  flex: 1;
  min-width: 0;
}

.ranking-row__handle {
  font-family: var(--font-retro);
  font-size: 20px;
  color: var(--text);
  line-height: 1.1;
}

.ranking-row__main {
  font-family: var(--font-retro);
  font-size: 15px;
  color: var(--cyan);
}

.ranking-row__stats {
  text-align: right;
}

.ranking-row__earned {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--yellow);
}

.ranking-row__wins {
  font-family: var(--font-retro);
  font-size: 15px;
  color: var(--text-muted);
}

/* ===== FINAL CTA ===== */

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 48px;
  border-top: 2px solid rgba(255, 210, 63, 0.25);
}

.final-cta__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background-image: linear-gradient(rgba(255, 46, 136, 0.5) 2px, transparent 2px),
    linear-gradient(90deg, rgba(127, 224, 255, 0.35) 2px, transparent 2px);
  background-size: 54px 54px;
  transform: perspective(420px) rotateX(62deg);
  transform-origin: bottom;
  animation: bmrScroll 6s linear infinite;
  opacity: 0.5;
}

.final-cta__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 50%, var(--bg) 95%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-pixel);
  font-size: clamp(20px, 3.6vw, 42px);
  line-height: 1.35;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 rgba(127, 224, 255, 0.4);
}

.final-cta__body {
  font-family: var(--font-retro);
  font-size: 23px;
  color: var(--text-muted);
  margin-top: 26px;
  line-height: 1.4;
}

.final-cta__blink {
  font-family: var(--font-retro);
  font-size: 18px;
  color: var(--cyan);
  margin-top: 24px;
  animation: bmrBlink 1.1s steps(1) infinite;
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 2px solid rgba(127, 224, 255, 0.2);
  background: var(--bg-footer);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-name {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-retro);
  font-size: 16px;
  color: var(--footer-muted);
}

/* ===== GAMES PAGE ===== */

.games-page-header {
  margin-bottom: 44px;
}

.games-page-subtitle {
  font-family: var(--font-retro);
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 620px;
}

.games-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 90px;
}

.games-sidebar {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 22px;
  position: sticky;
  top: 24px;
}

.games-sidebar__title {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--pink);
  margin-bottom: 18px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  font-family: var(--font-retro);
  font-size: 19px;
  color: var(--text-muted);
  padding: 10px 12px;
  cursor: pointer;
}
.category-item:hover {
  color: var(--text);
}
.category-item.is-active {
  color: var(--yellow);
  border-left-color: var(--yellow);
  background: rgba(255, 210, 63, 0.08);
}

.category-item__count {
  font-family: var(--font-retro);
  font-size: 15px;
  color: var(--cyan);
}

.games-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 420px;
}

.search-box__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-base);
  font-size: 16px;
  padding: 13px 14px 13px 40px;
  transition: border-color 0.15s ease;
}
.search-input::placeholder {
  color: var(--text-muted);
  font-family: var(--font-retro);
  letter-spacing: 0.04em;
}
.search-input:focus {
  outline: none;
  border-color: var(--cyan);
}

.games-count {
  font-family: var(--font-retro);
  font-size: 17px;
  color: var(--text-muted);
  white-space: nowrap;
}

.games-empty {
  padding: 60px 20px;
  text-align: center;
  font-family: var(--font-retro);
  font-size: 20px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
}

/* ===== PLACEHOLDER PAGE ===== */

.placeholder-main {
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.placeholder-header {
  text-align: center;
  margin-bottom: 44px;
}

.placeholder-header .eyebrow {
  justify-content: center;
}

.placeholder-panel {
  max-width: 620px;
  margin: 0 auto;
  padding: 54px 40px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.placeholder-panel__icon {
  font-family: var(--font-pixel);
  font-size: 26px;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--pink);
}

.placeholder-panel__text {
  font-family: var(--font-retro);
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 460px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1000px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .rankings-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .navbar__links {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .games-layout {
    grid-template-columns: 1fr;
  }
  .games-sidebar {
    position: static;
    min-width: 0;
  }
  .category-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
  }
  .category-item {
    flex: none;
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
  }
  .category-item.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--yellow);
  }
}

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

@media (max-width: 700px) {
  .navbar,
  .hero__content,
  .container-padded,
  .battles-section,
  .rankings-section,
  .footer-inner,
  .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}

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