@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
  --bg: #02060b;
  --bg-2: #07101a;
  --panel: rgba(5, 12, 20, 0.34);
  --panel-strong: rgba(5, 12, 20, 0.52);
  --text: #d7e4ef;
  --muted: #8fa4b8;
  --heading: #f5fbff;
  --line: rgba(108, 207, 255, 0.24);
  --line-soft: rgba(108, 207, 255, 0.12);
  --blue: #58b8ff;
  --teal: #6df7e7;
  --pink: #ff3ccf;
  --amber: #ffc857;
  --danger: #ff5b72;
  --shadow: rgba(0, 0, 0, 0.46);
  --cut: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  --cut-strokes:
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.46) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) top right / 18px 18px no-repeat,
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.46) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) bottom left / 18px 18px no-repeat;
  --cut-strokes-small:
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.38) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) top right / 12px 12px no-repeat,
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.38) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) bottom left / 12px 12px no-repeat;
  --font-body: "Rajdhani", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;

  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 60, 207, 0.18), transparent 24rem),
    radial-gradient(circle at 84% 0%, rgba(88, 184, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, #02060b 0%, #06101a 48%, #03080f 100%);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(rgba(109, 247, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 247, 231, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

body::after {
  z-index: -1;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(2, 6, 11, 0.16), transparent 40%, rgba(2, 6, 11, 0.28));
  opacity: 0.45;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

#app {
  min-height: 100svh;
}

.app-shell {
  width: min(1280px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
  backdrop-filter: blur(16px);
}

.site-header::before {
  position: absolute;
  inset: 10px -18px auto;
  z-index: -1;
  height: 58px;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.84), rgba(2, 6, 11, 0.38)),
    linear-gradient(90deg, rgba(88, 184, 255, 0.22), transparent 32%, rgba(255, 60, 207, 0.15));
  border-bottom: 1px solid rgba(88, 184, 255, 0.18);
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 18px 100%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--heading);
  text-decoration: none;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(88, 184, 255, 0.28))
    drop-shadow(0 0 18px rgba(255, 60, 207, 0.18));
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  padding: 0;
  border: 1px solid rgba(88, 184, 255, 0.2);
  background:
    var(--cut-strokes),
    rgba(2, 6, 11, 0.34);
  clip-path: var(--cut);
}

.nav-link {
  position: relative;
  min-width: 112px;
  padding: 13px 15px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.nav-link::after {
  position: absolute;
  inset: auto 12px 7px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
}

.nav-link:hover,
.nav-link.router-link-active {
  color: var(--heading);
  background: rgba(88, 184, 255, 0.11);
}

.nav-link:hover::after,
.nav-link.router-link-active::after {
  opacity: 1;
}

.page-shell {
  padding: 34px 0 46px;
}

.home-page {
  position: relative;
}

.home-page > :not(.home-background) {
  position: relative;
  z-index: 1;
}

.home-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 60, 207, 0.18), transparent 26rem),
    radial-gradient(circle at 82% 10%, rgba(88, 184, 255, 0.2), transparent 28rem),
    linear-gradient(90deg, rgba(2, 6, 11, 0.8), rgba(2, 6, 11, 0.3) 50%, rgba(2, 6, 11, 0.82)),
    linear-gradient(180deg, rgba(2, 6, 11, 0.18), rgba(2, 6, 11, 0.86)),
    url("/assets/bg-portfolio-ciberpunk-BYAhX13W.png") center / cover no-repeat;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: clamp(20px, 4vw, 52px);
  align-items: stretch;
  min-height: 520px;
}

.home-hero > *,
.manifest-grid > *,
.project-card > *,
.detail-hero > *,
.contact-layout > * {
  min-width: 0;
}

.hero-copy,
.portrait-panel,
.home-manifest,
.page-hero,
.timeline-item,
.project-card,
.detail-hero,
.detail-grid article,
.detail-section,
.contact-card,
.contact-notes article,
.cv-modal {
  border: 1px solid var(--line);
  background:
    var(--cut-strokes),
    linear-gradient(135deg, rgba(88, 184, 255, 0.075), rgba(255, 60, 207, 0.035)),
    var(--panel);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 26px 70px var(--shadow);
  backdrop-filter: blur(13px);
  clip-path: var(--cut);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
}

.hero-copy::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--blue), var(--pink), var(--teal), transparent);
}

.hero-copy::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(220px, 34%);
  height: 64px;
  content: "";
  background:
    linear-gradient(90deg, rgba(109, 247, 231, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(109, 247, 231, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.28;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.45vw, 2.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

p,
li {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.hero-lead,
.page-hero > p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action,
.ghost-action,
.project-links a,
.detail-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.primary-action,
.detail-actions a:first-child {
  color: #021018;
  background:
    var(--cut-strokes-small),
    linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 0 28px rgba(88, 184, 255, 0.16);
}

.secondary-action,
.project-links a,
.detail-actions a + a {
  border: 1px solid rgba(255, 60, 207, 0.34);
  color: var(--heading);
  background:
    var(--cut-strokes-small),
    rgba(255, 60, 207, 0.09);
}

.ghost-action {
  border: 1px solid rgba(88, 184, 255, 0.25);
  color: var(--heading);
  background:
    var(--cut-strokes-small),
    rgba(2, 6, 11, 0.28);
}

.portrait-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
}

.portrait-stage {
  position: relative;
  display: grid;
  min-height: 400px;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(88, 184, 255, 0.19);
  background:
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.4) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) bottom right / 24px 24px no-repeat,
    rgba(2, 6, 11, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.portrait-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 60, 207, 0.28), transparent 18rem),
    radial-gradient(circle at 22% 58%, rgba(88, 184, 255, 0.24), transparent 16rem),
    linear-gradient(135deg, rgba(88, 184, 255, 0.12), rgba(255, 60, 207, 0.06) 52%, rgba(109, 247, 231, 0.08)),
    linear-gradient(120deg, transparent 0 43%, rgba(109, 247, 231, 0.18) 43% 44%, transparent 44% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 36px);
  opacity: 0.76;
}

.portrait-stage img {
  position: relative;
  z-index: 1;
  width: min(360px, 94%);
  max-height: 398px;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 30px 34px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 24px rgba(88, 184, 255, 0.18));
}

.portrait-meta {
  display: grid;
  gap: 4px;
  padding: 14px 4px 4px;
  border-top: 1px solid rgba(88, 184, 255, 0.18);
}

.portrait-meta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.portrait-meta strong {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 0.96rem;
}

.home-manifest {
  margin-top: 28px;
  padding: clamp(26px, 4vw, 44px);
}

.manifest-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.manifest-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.manifest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(88, 184, 255, 0.2);
}

.manifest-grid article {
  position: relative;
  min-height: 205px;
  padding: 24px 22px 6px;
  border-right: 1px solid rgba(88, 184, 255, 0.16);
}

.manifest-grid article:last-child {
  border-right: 0;
}

.manifest-grid span,
.feature-index {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.site-footer {
  padding: 0 0 38px;
}

.footer-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-block: 1px solid rgba(88, 184, 255, 0.17);
  background: rgba(2, 6, 11, 0.22);
  backdrop-filter: blur(8px);
}

.footer-tech span {
  padding: 13px 18px;
  border-right: 1px solid rgba(88, 184, 255, 0.14);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(28px, 5vw, 54px);
}

.page-hero.compact h1 {
  max-width: 940px;
  font-size: clamp(2rem, 3.7vw, 3.75rem);
}

.timeline,
.project-list,
.contact-notes {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding: 26px;
}

.timeline-date {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
}

.timeline-body ul,
.project-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.project-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px;
}

.project-card:hover {
  border-color: rgba(109, 247, 231, 0.42);
  background:
    linear-gradient(135deg, rgba(88, 184, 255, 0.1), rgba(255, 60, 207, 0.05)),
    rgba(5, 12, 20, 0.48);
}

.project-media,
.detail-logo {
  display: grid;
  min-height: 170px;
  place-items: center;
  border: 1px solid rgba(88, 184, 255, 0.18);
  background:
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.38) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) bottom right / 16px 16px no-repeat,
    radial-gradient(circle at 50% 35%, rgba(88, 184, 255, 0.18), transparent 56%),
    rgba(2, 6, 11, 0.25);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.project-media img,
.detail-logo img {
  width: min(116px, 64%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.56));
}

.project-kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.stack-list span {
  padding: 7px 10px;
  border: 1px solid rgba(88, 184, 255, 0.22);
  color: var(--text);
  background:
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.38) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) top right / 8px 8px no-repeat,
    rgba(88, 184, 255, 0.065);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.project-links span {
  color: var(--muted);
  font-size: 0.86rem;
}

.project-detail {
  display: grid;
  gap: 24px;
}

.back-link {
  width: fit-content;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 900;
  text-decoration: none;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 54px);
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  font-size: clamp(2.15rem, 4.7vw, 4.8rem);
}

.detail-logo {
  min-height: 240px;
}

.detail-logo img {
  width: min(150px, 62%);
}

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

.detail-grid article,
.detail-section {
  padding: 26px;
}

.detail-section {
  display: grid;
  grid-template-columns: 0.56fr minmax(0, 1fr);
  gap: 28px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
}

.contact-card a,
.contact-card span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  text-decoration: none;
}

.contact-notes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-notes article {
  padding: 26px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(88, 184, 255, 0.18), transparent 28rem),
    rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}

.cv-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
}

.cv-modal h2 {
  margin-bottom: 10px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--heading);
  background: rgba(255, 60, 207, 0.12);
  border: 1px solid rgba(255, 60, 207, 0.32);
}

.cv-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.cv-options button {
  min-height: 48px;
  color: rgba(215, 228, 239, 0.52);
  background:
    linear-gradient(45deg, transparent calc(50% - 0.5px), rgba(108, 207, 255, 0.36) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)) top right / 12px 12px no-repeat,
    rgba(88, 184, 255, 0.08);
  border: 1px solid rgba(88, 184, 255, 0.17);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 900px) {
  .app-shell {
    width: min(100% - 20px, 760px);
  }

  .site-header {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0;
  }

  .site-header::before {
    inset: 4px -10px auto;
    height: 116px;
  }

  .brand-mark {
    justify-content: flex-start;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .nav-link {
    min-width: 0;
    padding: 11px 8px;
    font-size: 0.82rem;
    white-space: normal;
  }

  .page-shell {
    padding: 18px 0 30px;
  }

  .home-hero,
  .contact-layout,
  .detail-hero,
  .detail-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .portrait-panel {
    min-height: auto;
  }

  .hero-copy {
    padding: 32px 22px;
    width: 100%;
  }

  .portrait-stage {
    min-height: 320px;
  }

  .portrait-stage img {
    max-height: 320px;
  }

  .manifest-heading,
  .manifest-grid,
  .contact-notes,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .manifest-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(88, 184, 255, 0.14);
  }

  .manifest-grid article:last-child {
    border-bottom: 0;
  }

  .timeline-item,
  .project-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .project-media,
  .detail-logo {
    min-height: 142px;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.22rem);
  }
}

@media (max-width: 540px) {
  .app-shell {
    width: calc(100% - 16px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .home-page {
    overflow-x: clip;
  }

  .hero-copy::after {
    width: 42%;
  }

  .hero-actions,
  .cv-options {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action,
  .ghost-action {
    width: 100%;
  }

  .home-manifest,
  .page-hero,
  .cv-modal {
    padding: 24px 18px;
  }

  .site-footer {
    padding-bottom: 28px;
  }

  .footer-tech span {
    flex: 1 1 50%;
    padding: 12px;
  }
}
