@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-solid: #151515;
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #c7c7c7;
  --muted-dark: #8f8f8f;
  --red: #ff1b1b;
  --green: #2ea043;
  --green-light: #38c172;
  --blue: #3b5bff;
  --shadow: rgba(0, 0, 0, 0.65);
  --nav-height: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  overflow-x: hidden;
  overflow-y: auto;
}

* {
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

img,
video {
  max-width: 100%;
}

/* Sections grow with their content instead of clipping it.
   Only the hero and the game-detail sections (which use absolutely
   positioned backgrounds) keep overflow: hidden — see their own rules. */
.section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: visible;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section > * {
  transform: translateY(36px);
  transition: transform 0.8s ease;
}

.section.active {
  opacity: 1;
}

.section.active > * {
  transform: translateY(0);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.navbar-container {
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.navbar-logo img {
  height: 72px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.navbar-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.navbar-link {
  position: relative;
  padding: 12px 20px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.navbar-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: 8px;
  width: 56%;
  height: 2px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  transform: scaleX(1);
}

.navbar-link.active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.15);
}

.navbar-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.navbar-social a {
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.navbar-social a:hover {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.45));
}

.fa-youtube { color: #ff0000; }
.fa-instagram { color: #e4405f; }
.fa-patreon { color: #f96854; }
.fa-bluesky { color: #0091ff; }
.fa-x-twitter { color: #1da1f2; }
.fa-twitch { color: #9146ff; }
.fa-discord { color: #7289da; }

.hero-section {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.0s ease-in-out;
}

.video-background video.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(980px, 90%);
  min-height: calc(100vh - var(--nav-height));
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 420px;
  max-width: 88vw;
  margin-bottom: 24px;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.9));
}

.hero-tagline {
  max-width: 760px;
  margin: 0 auto 32px auto;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.7;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-actions,
.featured-actions,
.game-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, #2ea043, #32b857);
  box-shadow: 0 12px 30px rgba(46, 160, 67, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38c172, #2ea043);
  box-shadow: 0 16px 38px rgba(46, 160, 67, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
}

.featured-section {
  padding: calc(var(--nav-height) + 60px) 6% 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 27, 27, 0.18), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(59, 91, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #080808, #111);
}

.featured-card {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.featured-text {
  padding: 16px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff4c4c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.featured-text h1,
.section-heading h2,
.game-info-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
}

.featured-text p,
.section-heading p,
.game-info-card p,
.game-detail-content p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.featured-text p {
  margin: 22px 0 28px;
}

.featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5);
}

.featured-image img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

.our-games {
  padding: calc(var(--nav-height) + 48px) 6% 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 91, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #111, #080808);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.section-heading p {
  margin: 16px auto 0;
}

.games-grid {
  width: min(1300px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.game-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
  transition: transform 0.28s ease, border 0.28s ease, box-shadow 0.28s ease;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.08) 65%),
    linear-gradient(135deg, rgba(255, 27, 27, 0.18), rgba(59, 91, 255, 0.12));
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.58);
}

.game-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.game-card-content span {
  color: #ff4c4c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.game-card-content h3 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.game-detail {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 56px) 6% 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* keep: backgrounds are absolutely positioned */
  background: var(--bg);
}

.game-background,
.static-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.game-background img,
.static-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-background img {
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}

.static-background img {
  opacity: 0.42;
  filter: blur(1px);
}

.section-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-detail-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.game-detail-content,
.game-info-card {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
  text-align: center;
  padding: 34px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(12px);
}

.game-detail-content {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.game-logo {
  display: block;
  margin: 0 auto 26px auto;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.85));
}

.wos-logo {
  width: min(720px, 90vw);
}

.game-detail-content p {
  max-width: 760px;
  margin: 0 auto 28px auto;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.9);
}

.game-about {
  display: none;
  max-width: 850px;
  margin: 26px auto 0;
  padding: 26px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--border);
  text-align: left;
}

.game-about.active {
  display: block;
}

.game-about p {
  margin: 0 0 16px 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.game-about p:last-child {
  margin-bottom: 0;
}

.cards-detail,
.snap-detail {
  background:
    radial-gradient(circle at center, rgba(59, 91, 255, 0.13), transparent 35%),
    linear-gradient(180deg, #080808, #121212);
}

.game-info-card h2 {
  margin-bottom: 18px;
}

.game-info-card p {
  max-width: 760px;
  margin: 0 auto 28px auto;
}

.tgxngine-section {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 20px) 6% 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 27, 27, 0.12), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(59, 91, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #080808, #111111);
}

.tgxngine-container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.tgxngine-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.tgxngine-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.tgxngine-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.nexus-section {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 20px) 6% 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 100%, rgba(59, 91, 255, 0.16), transparent 34%),
    radial-gradient(circle at 0% 0%, rgba(255, 27, 27, 0.12), transparent 30%),
    linear-gradient(180deg, #080808, #111111);
}

.nexus-container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.nexus-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.nexus-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.nexus-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.connect-section {
  padding: calc(var(--nav-height) + 52px) 6% 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 27, 27, 0.13), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(59, 91, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #0c0c0c, #111);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.social-card {
  min-height: 220px;
  padding: 30px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(22, 22, 22, 0.82);
  color: var(--text);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, border 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.social-card i {
  margin-bottom: 20px;
  font-size: 3.1rem;
  transition: transform 0.28s ease;
}

.social-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.055);
}

.social-card:hover i {
  transform: scale(1.12);
}

.discord:hover { box-shadow: 0 0 30px rgba(114, 137, 218, 0.36); }
.youtube:hover { box-shadow: 0 0 30px rgba(255, 0, 0, 0.34); }
.instagram:hover { box-shadow: 0 0 30px rgba(228, 64, 95, 0.34); }
.patreon:hover { box-shadow: 0 0 30px rgba(249, 104, 84, 0.34); }
.twitch:hover { box-shadow: 0 0 30px rgba(145, 70, 255, 0.34); }
.twitter:hover { box-shadow: 0 0 30px rgba(29, 161, 242, 0.34); }

.site-footer {
  position: relative;
  z-index: 10;
  padding: 22px;
  text-align: center;
  color: var(--muted-dark);
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
}

.scroll-indicator ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scroll-indicator li {
  position: relative;
  margin: 22px 0;
}

.scroll-indicator a {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.scroll-indicator a.active {
  width: 18px;
  height: 18px;
  background: var(--text);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.55);
}

.scroll-indicator a::before {
  content: attr(data-title);
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, right 0.25s ease, transform 0.25s ease;
}

.scroll-indicator li:hover a {
  transform: scale(1.18);
  background: var(--text);
}

.scroll-indicator li:hover a::before {
  right: 38px;
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 1180px) {
  .navbar-container {
    grid-template-columns: auto 1fr auto;
  }

  .navbar-social {
    gap: 14px;
  }

  .navbar-social a {
    font-size: 21px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-image img {
    height: 330px;
  }
}

/* Laptop / small-desktop widths: stop sections clipping their content
   and turn off scroll-snap so tall sections can scroll normally. */
@media (max-width: 1400px) {
  .section {
    overflow: visible;
  }

  html {
    scroll-snap-type: none;
  }

  .our-games {
    padding: calc(var(--nav-height) + 20px) 5% 40px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: 4rem;
  }

  .section-heading p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .games-grid {
    width: min(1000px, 100%);
    gap: 14px;
  }

  .game-card {
    min-height: 180px;
  }

  .game-card-content {
    bottom: 14px;
  }

  .game-card-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 84px;
  }

  html {
    scroll-snap-type: none;
  }

  .section {
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .hero-section {
    height: 100vh;
    overflow: hidden;
  }

  .navbar-container {
    padding: 0 18px;
  }

  .navbar-logo img {
    height: 58px;
  }

  .navbar-social {
    display: none;
  }

  .navbar-links {
    justify-content: flex-end;
  }

  .navbar-link {
    font-size: 15px;
    padding: 10px 14px;
  }

  .scroll-indicator {
    display: none;
  }

  .featured-section,
  .our-games,
  .game-detail,
  .tgxngine-section,
  .nexus-section,
  .connect-section {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 28px) 5% 42px;
  }

  .featured-card,
  .tgxngine-container,
  .nexus-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-image img,
  .tgxngine-image img,
  .nexus-image img {
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }

  .tgxngine-content,
  .nexus-content {
    text-align: center;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-card {
    min-height: 230px;
  }
}

@media (max-height: 720px) {
  .hero-logo {
    width: 300px;
  }

  .featured-image img {
    height: 280px;
  }

  .game-card {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 78px;
  }

  .navbar-container {
    gap: 12px;
    padding: 0 14px;
  }

  .navbar-logo img {
    height: 52px;
  }

  .navbar-link {
    font-size: 13px;
    padding: 9px 10px;
  }

  .hero-logo {
    width: 260px;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
    padding: 13px 20px;
  }

  .featured-section,
  .our-games,
  .game-detail,
  .tgxngine-section,
  .nexus-section,
  .connect-section {
    padding: calc(var(--nav-height) + 28px) 5% 42px;
  }

  .featured-card {
    padding: 18px;
    border-radius: 20px;
  }

  .featured-image img,
  .tgxngine-image img,
  .nexus-image img {
    max-height: 250px;
  }

  .game-detail-content,
  .game-info-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .wos-logo {
    width: 92vw;
  }

  .games-grid,
  .social-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .game-card {
    min-height: 190px;
  }

  .social-card {
    min-height: 100px;
  }

  .tgxngine-content h2,
  .nexus-content h2,
  .section-heading h2,
  .game-info-card h2 {
    font-size: 2.1rem;
  }

  .tgxngine-content p,
  .nexus-content p,
  .game-info-card p,
  .game-detail-content p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}