.page-home {
  background: var(--night-black);
  color: var(--cloud-white);
  overflow-x: hidden;
}

.page-home .home-crumbs {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + 28px) 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--silver-gray);
}

.page-home .home-crumbs__current {
  color: var(--volt-green);
}

.page-home .home-crumbs__sep {
  color: var(--steel-blue);
}

.page-home .home-hero {
  position: relative;
  min-height: 760px;
  padding: 120px 20px 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0, 99, 247, 0.26), transparent 55%),
    linear-gradient(180deg, rgba(10, 14, 28, 0.84) 0%, rgba(10, 14, 28, 0.58) 45%, rgba(10, 14, 28, 0.94) 100%);
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.1);
  opacity: 0.5;
}

.page-home .home-hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.014) 0,
    rgba(255, 255, 255, 0.014) 1px,
    transparent 1px,
    transparent 4px
  );
}

.page-home .home-hero__frame {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid var(--grid-line-bright);
  pointer-events: none;
}

.page-home .home-hero__frame::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--volt-green);
  box-shadow: 0 0 10px var(--volt-green);
  animation: home-pulse 2s infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.page-home .home-hero__corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0 solid var(--volt-green);
}

.page-home .home-hero__corner--tl { top: -2px; left: -2px; border-top-width: 2px; border-left-width: 2px; }
.page-home .home-hero__corner--tr { top: -2px; right: -2px; border-top-width: 2px; border-right-width: 2px; }
.page-home .home-hero__corner--bl { bottom: -2px; left: -2px; border-bottom-width: 2px; border-left-width: 2px; }
.page-home .home-hero__corner--br { bottom: -2px; right: -2px; border-bottom-width: 2px; border-right-width: 2px; }

.page-home .home-hero__capsules {
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.page-home .home-hero__capsule {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--cloud-white);
  text-decoration: none;
  padding: 7px 14px;
  background: rgba(16, 24, 38, 0.72);
  border: 1px solid var(--steel-blue);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition-speed) var(--ease-out), color var(--transition-speed) var(--ease-out);
}

.page-home .home-hero__capsule:hover,
.page-home .home-hero__capsule:focus-visible {
  border-color: var(--volt-green);
  color: var(--volt-green);
  outline: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 4;
  max-width: 880px;
}

.page-home .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--data-cyan);
  background: rgba(0, 179, 214, 0.08);
  border: 1px solid rgba(0, 179, 214, 0.3);
  padding: 6px 12px 6px 8px;
  margin-bottom: 16px;
}

.page-home .home-kicker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--volt-green);
  box-shadow: 0 0 8px var(--volt-green);
  animation: home-pulse 2s infinite;
}

.page-home .home-hero__title {
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 780px;
  color: var(--cloud-white);
}

.page-home .home-hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--silver-gray);
  max-width: 720px;
  margin-bottom: 28px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.page-home .home-hero__ghost {
  font-family: var(--mono-font);
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--cloud-white);
  text-decoration: none;
  border-bottom: 1px solid var(--steel-blue);
  padding-bottom: 4px;
  transition: color var(--transition-speed) var(--ease-out), border-color var(--transition-speed) var(--ease-out);
}

.page-home .home-hero__ghost:hover {
  color: var(--volt-green);
  border-color: var(--volt-green);
}

.page-home .reg-popover {
  position: relative;
}

.page-home .reg-popover__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--volt-green);
  color: var(--night-black);
  font-size: 15px;
  font-weight: 800;
  font-family: var(--sans-font);
  padding: 12px 24px;
  cursor: pointer;
  border: 1px solid var(--volt-green);
  transition: background var(--transition-speed) var(--ease-out), color var(--transition-speed) var(--ease-out), border-color var(--transition-speed) var(--ease-out);
}

.page-home .reg-popover__summary::-webkit-details-marker {
  display: none;
}

.page-home .reg-popover__summary::after {
  content: "+";
  font-family: var(--mono-font);
  font-size: 16px;
  transition: transform 0.3s var(--ease-out);
}

.page-home .reg-popover[open] .reg-popover__summary {
  background: var(--tech-blue);
  border-color: var(--tech-blue);
  color: var(--cloud-white);
}

.page-home .reg-popover[open] .reg-popover__summary::after {
  transform: rotate(45deg);
}

.page-home .reg-popover__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  width: min(380px, calc(100vw - 40px));
  background: var(--deep-space);
  border: 1px solid var(--grid-line-bright);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  padding: 20px;
}

.page-home .reg-popover__title {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--volt-green);
  margin-bottom: 14px;
}

.page-home .reg-popover__steps {
  list-style: none;
  counter-reset: reg-steps;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-home .reg-popover__steps li {
  counter-increment: reg-steps;
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--cloud-white);
}

.page-home .reg-popover__steps li::before {
  content: counter(reg-steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--tech-blue);
  color: var(--cloud-white);
  font-family: var(--mono-font);
  font-size: 11px;
  text-align: center;
  line-height: 22px;
}

.page-home .reg-popover__link {
  color: var(--volt-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 230, 138, 0.4);
}

.page-home .reg-popover__link:hover {
  color: var(--data-cyan);
  border-color: var(--data-cyan);
}

.page-home .home-hero__stats {
  margin: 0;
  max-width: 520px;
  background: rgba(16, 24, 38, 0.64);
  border: 1px solid var(--grid-line-bright);
  border-left: 2px solid var(--volt-green);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.page-home .home-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(31, 58, 95, 0.5);
}

.page-home .home-stat:last-child {
  border-bottom: 0;
}

.page-home .home-stat dt {
  font-size: 13px;
  color: var(--silver-gray);
}

.page-home .home-stat dd {
  font-family: var(--mono-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--volt-green);
  margin: 0;
}

.page-home .home-section-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .home-section-index {
  background: var(--volt-green);
  color: var(--night-black);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  line-height: 1;
  display: inline-block;
}

.page-home .home-section-tag {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--data-cyan);
  border-bottom: 1px solid var(--steel-blue);
  padding-bottom: 3px;
}

.page-home .home-replay,
.page-home .home-preview,
.page-home .home-injury,
.page-home .home-league,
.page-home .home-outro {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 88px 20px 56px;
  position: relative;
}

.page-home .home-replay::before,
.page-home .home-preview::before,
.page-home .home-injury::before,
.page-home .home-league::before,
.page-home .home-outro::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 20px;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--tech-blue), transparent);
}

.page-home .home-replay__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .home-replay__text h2,
.page-home .home-preview__text h2,
.page-home .home-injury__text h2,
.page-home .home-league__text h2,
.page-home .home-outro h2 {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--cloud-white);
}

.page-home .home-replay__lead,
.page-home .home-preview__text > p,
.page-home .home-injury__text p,
.page-home .home-league__text p,
.page-home .home-outro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver-gray);
  margin-bottom: 20px;
}

.page-home .home-replay__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-replay__points li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--cloud-white);
  border-left: 2px solid var(--tech-blue);
  padding-left: 14px;
}

.page-home .home-fact-num {
  font-family: var(--mono-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--volt-green);
  min-width: 72px;
}

.page-home .home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--data-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 179, 214, 0.3);
  padding-bottom: 3px;
  transition: color var(--transition-speed), border-color var(--transition-speed);
}

.page-home .home-text-link:hover {
  color: var(--volt-green);
  border-color: var(--volt-green);
}

.page-home .home-replay__media,
.page-home .home-preview__media,
.page-home .home-injury__media {
  position: relative;
  margin: 0;
  border: 1px solid var(--steel-blue);
  background: var(--deep-space);
}

.page-home .home-replay__img,
.page-home .home-preview__img,
.page-home .home-injury__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-replay__media figcaption,
.page-home .home-preview__media figcaption,
.page-home .home-injury__media figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--steel-blue);
  background: rgba(16, 24, 38, 0.6);
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-gray);
}

.page-home .home-replay__media::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(0, 230, 138, 0.92);
  color: var(--night-black);
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-speed) var(--ease-out), background var(--transition-speed);
}

.page-home .home-replay__media:hover::before {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--volt-green);
}

.page-home .home-replay__media::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: var(--volt-green);
  transition: width 0.6s var(--ease-out);
}

.page-home .home-replay__media:hover::after {
  width: 100%;
}

.page-home .home-preview__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .injury-index-card {
  margin: 24px 0;
  border: 1px solid var(--grid-line-bright);
  border-left: 2px solid var(--alert-orange);
  background: rgba(16, 24, 38, 0.72);
  padding: 18px 20px 16px;
  max-width: 360px;
}

.page-home .injury-index-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--silver-gray);
}

.page-home .injury-index-card__badge {
  font-family: var(--mono-font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 8px;
  background: rgba(255, 139, 26, 0.15);
  border: 1px solid rgba(255, 139, 26, 0.4);
  color: var(--alert-orange);
}

.page-home .injury-index-card__body {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .injury-index-card__num {
  font-family: var(--mono-font);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--alert-orange);
}

.page-home .injury-index-card__meta {
  font-size: 13px;
  color: var(--silver-gray);
}

.page-home .injury-index-card__bar {
  height: 6px;
  background: rgba(255, 139, 26, 0.14);
  overflow: hidden;
  margin-bottom: 12px;
}

.page-home .injury-index-card__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--alert-orange), var(--volt-green));
}

.page-home .injury-index-card__note {
  font-size: 13px;
  color: var(--cloud-white);
  font-family: var(--mono-font);
}

.page-home .home-injury__text {
  max-width: 720px;
}

.page-home .home-injury__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .injury-screen {
  border: 1px solid var(--grid-line-bright);
  background: rgba(16, 24, 38, 0.72);
  font-family: var(--mono-font);
}

.page-home .injury-screen__search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--steel-blue);
  color: var(--silver-gray);
  font-size: 12px;
}

.page-home .injury-screen__searchicon {
  display: inline-flex;
  color: var(--volt-green);
}

.page-home .injury-screen__header {
  display: grid;
  grid-template-columns: 1fr 70px 70px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--grid-line-bright);
  color: var(--silver-gray);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(0, 99, 247, 0.06);
}

.page-home .injury-screen__scroll {
  max-height: 260px;
  overflow: auto;
  scroll-behavior: smooth;
}

.page-home .injury-screen__row {
  display: grid;
  grid-template-columns: 1fr 70px 70px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(31, 58, 95, 0.5);
  font-size: 14px;
  color: var(--cloud-white);
  align-items: baseline;
}

.page-home .injury-screen__row:last-child {
  border-bottom: 0;
}

.page-home .injury-screen__row--hot {
  background: rgba(0, 230, 138, 0.08);
  border-left: 2px solid var(--volt-green);
}

.page-home .injury-screen__name em {
  font-style: normal;
  font-family: var(--mono-font);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--volt-green);
  color: var(--night-black);
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 999px;
}

.page-home .injury-screen__count {
  color: var(--cloud-white);
  text-align: right;
}

.page-home .injury-screen__value {
  color: var(--alert-orange);
  text-align: right;
  font-weight: 700;
}

.page-home .home-league__text {
  max-width: 760px;
}

.page-home .league-switcher {
  border: 1px solid var(--grid-line-bright);
  background: rgba(16, 24, 38, 0.72);
  padding: 8px 8px 12px;
  margin: 24px 0 16px;
}

.page-home .league-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .league-tab {
  display: inline-block;
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid var(--steel-blue);
  cursor: pointer;
  color: var(--silver-gray);
  background: transparent;
  transition: background var(--transition-speed) var(--ease-out), color var(--transition-speed) var(--ease-out), border-color var(--transition-speed) var(--ease-out);
}

.page-home .league-tab:hover {
  border-color: var(--tech-blue);
  color: var(--cloud-white);
}

.page-home .league-input:checked + .league-tab {
  background: var(--tech-blue);
  border-color: var(--tech-blue);
  color: var(--cloud-white);
}

.page-home .league-panels {
  margin-top: 10px;
}

.page-home .league-panel {
  display: none;
}

.page-home #league-epl:checked ~ .league-panels .league-panel--epl,
.page-home #league-laliga:checked ~ .league-panels .league-panel--laliga,
.page-home #league-seriea:checked ~ .league-panels .league-panel--seriea {
  display: block;
  animation: home-panel-in 0.35s var(--ease-out);
}

@keyframes home-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-home .channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--steel-blue);
}

.page-home .channel-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-bottom: 1px solid rgba(31, 58, 95, 0.5);
  font-size: 14px;
  color: var(--cloud-white);
}

.page-home .channel-list li:last-child {
  border-bottom: 0;
}

.page-home .channel-list__rank {
  font-family: var(--mono-font);
  font-size: 12px;
  color: var(--tech-blue);
  border: 1px solid var(--grid-line-bright);
  padding: 3px 6px;
  background: rgba(0, 99, 247, 0.1);
}

.page-home .league-switcher__note {
  font-size: 12px;
  color: var(--silver-gray);
  font-family: var(--mono-font);
  padding: 8px 6px 0;
}

.page-home .home-outro {
  padding-top: 96px;
  padding-bottom: 96px;
}

.page-home .home-outro__panel {
  border: 1px solid var(--grid-line-bright);
  background:
    linear-gradient(120deg, rgba(0, 99, 247, 0.1), transparent 60%),
    rgba(16, 24, 38, 0.6);
  padding: 28px 24px;
}

.page-home .home-outro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 32px;
}

.page-home .home-outro__stats div {
  border-left: 2px solid var(--volt-green);
  padding-left: 14px;
}

.page-home .home-outro__stats strong {
  display: block;
  font-family: var(--mono-font);
  font-size: 28px;
  line-height: 1.2;
  color: var(--volt-green);
}

.page-home .home-outro__stats span {
  font-size: 12px;
  color: var(--silver-gray);
}

.page-home .home-outro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-home .home-outro__cta {
  display: inline-block;
  background: var(--volt-green);
  color: var(--night-black);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 28px;
  text-decoration: none;
  border: 1px solid var(--volt-green);
  transition: background var(--transition-speed), color var(--transition-speed), border-color var(--transition-speed);
}

.page-home .home-outro__cta:hover {
  background: var(--tech-blue);
  border-color: var(--tech-blue);
  color: var(--cloud-white);
}

.page-home .home-outro__ghost {
  font-size: 14px;
  color: var(--silver-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--steel-blue);
  padding-bottom: 4px;
}

.page-home .home-outro__ghost:hover {
  color: var(--volt-green);
  border-color: var(--volt-green);
}

@media (min-width: 640px) {
  .page-home .home-hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .page-home .home-stat {
    display: block;
    padding: 0 12px 0 0;
    border-bottom: 0;
    border-right: 1px solid rgba(31, 58, 95, 0.5);
  }

  .page-home .home-stat:last-child {
    border-right: 0;
  }

  .page-home .home-stat dd {
    font-size: 30px;
    margin-bottom: 4px;
  }

  .page-home .home-replay__points {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .page-home .home-replay__points li {
    min-height: 68px;
  }
}

@media (min-width: 960px) {
  .page-home .home-crumbs {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-home .home-hero {
    padding: 150px 48px 88px;
    min-height: 780px;
  }

  .page-home .home-hero__frame {
    inset: 24px;
  }

  .page-home .home-hero__capsules {
    top: 40px;
    right: 40px;
    left: auto;
  }

  .page-home .home-hero__inner {
    max-width: 880px;
    padding-left: 8px;
  }

  .page-home .home-replay,
  .page-home .home-preview,
  .page-home .home-injury,
  .page-home .home-league,
  .page-home .home-outro {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-home .home-replay__inner {
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .home-replay__media {
    margin-top: 56px;
  }

  .page-home .home-preview__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .home-injury__layout {
    grid-template-columns: minmax(320px, 420px) 1fr;
    gap: 40px;
    align-items: start;
  }

  .page-home .home-league__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
  }

  .page-home .home-outro__panel {
    padding: 40px 44px;
  }

  .page-home .home-outro__actions {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
