/* GGBET home layout (preview) */

@font-face {
  font-family: "Klapt Cyrillic Bold";
  src: url("./fonts/klapt-cyrillic-bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

:root {
  --ch-surface-dark: #08090b;
  --ch-surface-middle: #13161c;
  --ch-surface-light: #1e2229;
  --ch-surface-input: #262b34;
  --ch-grey-500: #9ca3af;
  --ch-orange: #dfa746;
  --ch-orange-hover: #f6d196;
  --ch-green: #30d158;
  --ch-violet: #c4b5fd;
  --ch-header-h: 56px;
  --ch-radius-xs: 4px;
  --ch-radius-sm: 8px;
  --ch-radius-md: 12px;
  --ch-radius-lg: 16px;
  --ch-radius-pill: 999px;
  --ch-radius-round: 50%;
}

/* Header */
.ch-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--ch-surface-dark);
}

.ch-header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
  max-width: var(--ch-max);
  margin: 0 auto;
  min-height: 56px;
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ch-header-nav__burger {
  flex-shrink: 0;
}

.ch-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}

.ch-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 82px;
}

.ch-nav {
  display: none;
  flex: 1;
  min-width: 0;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ch-nav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .ch-header-nav__burger {
    display: none;
  }

  .ch-nav {
    display: flex;
  }
}

.ch-nav__item {
  flex-shrink: 0;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--ch-radius-sm);
  transition: background 0.15s, color 0.15s;
}

.ch-nav__item:hover {
  background: var(--ch-surface-light);
  color: #fff;
}

.ch-nav__item--accent {
  color: var(--ch-orange);
}

.ch-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 0;
}

.ch-auth__login {
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--ch-radius-sm);
  transition: background 0.15s;
}

.ch-auth__login:hover {
  background: var(--ch-surface-light);
  color: #fff;
}

.ch-auth__register {
  padding: 8px 16px;
  background: linear-gradient(90deg, #dfa746, #f6d196, #dfa746);
  color: #08090b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--ch-radius-sm);
  transition: filter 0.15s;
}

.ch-auth__register:hover {
  filter: brightness(1.08);
  color: #08090b;
}

@media (max-width: 899px) {
  .ch-header-nav {
    gap: 8px;
  }

  .ch-logo img {
    height: 28px;
    max-width: 72px;
  }

  .ch-auth__login {
    display: none;
  }

  .ch-auth {
    gap: 0;
  }

  .ch-auth__register {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .ch-header-nav {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .ch-header-nav {
    gap: 6px;
    padding: 0 8px;
  }

  .ch-logo img {
    height: 24px;
    max-width: 62px;
  }

  .ch-auth__register {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* Sections */
.ch-section {
  padding: 16px 8px;
  max-width: var(--ch-max);
  margin: 0 auto;
}

.ch-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 8px;
}

.ch-section-head__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.ch-section-head__link {
  padding: 4px 12px;
  background: var(--ch-surface-input);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--ch-radius-md);
  transition: background 0.15s;
}

.ch-section-head__link:hover {
  background: var(--ch-surface-light);
  color: #fff;
}

/* Carousel */
.ch-carousel-wrap {
  padding: 0;
  max-width: none;
  width: calc(100% + 20px);
  margin-inline: -10px;
}

.ch-carousel {
  position: relative;
  overflow: hidden;
  background: var(--ch-surface-dark);
}

.ch-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.ch-carousel__track::-webkit-scrollbar {
  display: none;
}

.ch-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  height: clamp(156px, 42vw, 200px);
}

.ch-carousel__slide a {
  display: block;
  height: 100%;
}

.ch-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ch-carousel__bullets {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(28, 28, 28, 0.72);
  backdrop-filter: blur(4px);
  border-radius: var(--ch-radius-pill);
}

.ch-carousel__bullet {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: var(--ch-radius-round);
  padding: 0;
  background: #fff;
  opacity: 0.45;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.ch-carousel__bullet--active {
  background: var(--ch-orange);
  opacity: 1;
  transform: scale(1.15);
}

@media (min-width: 640px) {
  .ch-carousel-wrap {
    width: calc(100% + 32px);
    margin-inline: -16px;
  }

  .ch-carousel__slide {
    height: clamp(220px, 32vw, 260px);
  }
}

@media (min-width: 768px) {
  .ch-carousel-wrap {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }

  .ch-carousel__slide {
    height: clamp(260px, 28vw, 300px);
  }

  .ch-carousel__bullets {
    left: auto;
    right: 16px;
    bottom: 16px;
    transform: none;
    background: rgba(28, 28, 28, 0.85);
    border-radius: var(--ch-radius-sm);
  }

  .ch-carousel__bullet {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 1024px) {
  .ch-carousel-wrap {
    width: 100%;
    margin-inline: 0;
  }

  .ch-carousel {
    border-radius: var(--ch-radius-md);
  }

  .ch-carousel__slide {
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-carousel__track {
    scroll-behavior: auto;
  }

  .ch-carousel__bullet {
    transition: none;
  }
}

/* Quick nav */
.ch-quick-nav-wrap {
  position: relative;
  padding: 12px 0 16px;
  overflow: hidden;
}

.ch-quick-nav-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 48px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(270deg, var(--ch-surface-dark) 0%, transparent 100%);
}

.ch-quick-nav {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 8px 8px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ch-quick-nav::-webkit-scrollbar {
  display: none;
}

.ch-quick-nav__item {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 76px;
  padding: 4px 0;
  text-decoration: none;
  color: #fff;
  scroll-snap-align: start;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ch-quick-nav__item:hover {
  transform: translateY(-2px);
}

.ch-quick-nav__item:active {
  transform: translateY(0);
  opacity: 0.85;
}

.ch-quick-nav__item:focus-visible {
  outline: 2px solid var(--ch-orange);
  outline-offset: 4px;
  border-radius: var(--ch-radius-md);
}

.ch-quick-nav__img {
  display: block;
  width: 56px;
  height: 56px;
  padding: 8px;
  object-fit: contain;
  box-sizing: border-box;
  background: var(--ch-surface-middle);
  border: 1px solid transparent;
  border-radius: var(--ch-radius-md);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ch-quick-nav__item:hover .ch-quick-nav__img {
  background: var(--ch-surface-light);
  transform: scale(1.04);
}

.ch-quick-nav__item.orange .ch-quick-nav__img {
  background: linear-gradient(180deg, rgba(255, 102, 51, 0.22) 0%, var(--ch-surface-middle) 100%);
  border-color: rgba(255, 102, 51, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 102, 51, 0.12);
}

.ch-quick-nav__item.orange:hover .ch-quick-nav__img {
  background: linear-gradient(180deg, rgba(255, 102, 51, 0.32) 0%, var(--ch-surface-light) 100%);
  border-color: rgba(255, 102, 51, 0.55);
  box-shadow: 0 4px 16px rgba(255, 102, 51, 0.18);
}

.ch-quick-nav__text {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  transition: color 0.2s ease;
}

.ch-quick-nav__item:hover .ch-quick-nav__text {
  color: #fff;
}

.ch-quick-nav__item.orange .ch-quick-nav__text {
  color: var(--ch-orange);
}

.ch-quick-nav__item.orange:hover .ch-quick-nav__text {
  color: var(--ch-orange-hover);
}

.ch-quick-nav__chip {
  position: absolute;
  top: 2px;
  right: 6px;
  z-index: 2;
  min-width: 28px;
  padding: 2px 6px 3px;
  background: var(--ch-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--ch-radius-xs);
  box-shadow: 0 2px 8px rgba(255, 102, 51, 0.45);
}

@media (min-width: 640px) {
  .ch-quick-nav-wrap {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .ch-quick-nav {
    gap: 20px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .ch-quick-nav-wrap::after {
    width: 72px;
  }

  .ch-quick-nav__item {
    width: 84px;
    gap: 10px;
  }

  .ch-quick-nav__img {
    width: 64px;
    height: 64px;
    padding: 10px;
  }

  .ch-quick-nav__text {
    font-size: 13px;
  }

  .ch-quick-nav__chip {
    top: 0;
    right: 8px;
    font-size: 10px;
    padding: 3px 7px 4px;
  }
}

@media (min-width: 1024px) {
  .ch-quick-nav-wrap::after {
    display: none;
  }

  .ch-quick-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    scroll-snap-type: none;
  }
}

/* Games scroll (legacy carousels) */
.ch-providers-scroll,
.ch-promo-scroll,
.ch-matches-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 8px 8px;
  scrollbar-width: none;
}

.ch-providers-scroll::-webkit-scrollbar,
.ch-promo-scroll::-webkit-scrollbar,
.ch-matches-scroll::-webkit-scrollbar {
  display: none;
}

/* Providers */
.ch-provider {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 44px;
  padding: 4px 8px;
  background: var(--ch-surface-light);
  border-radius: var(--ch-radius-sm);
  transition: background 0.15s;
}

.ch-provider:hover {
  background: var(--ch-surface-input);
}

.ch-provider img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Match cards */
.ch-match-card {
  flex-shrink: 0;
  width: min(400px, 85vw);
  background: var(--ch-surface-middle);
  border-radius: var(--ch-radius-sm);
  overflow: hidden;
}

.ch-match-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.ch-match-card__link:hover {
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
}

.ch-match-card__tournament {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--ch-surface-middle);
  border-bottom: 1px solid var(--ch-surface-dark);
  font-size: 14px;
  color: #fff;
}

.ch-match-card__tournament img {
  border-radius: var(--ch-radius-xs);
}

.ch-match-card__body {
  padding: 16px 16px 0;
}

.ch-match-card__odds {
  display: flex;
  gap: 4px;
  padding: 16px;
}

.ch-match-card__status {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--ch-grey-500);
}

.ch-match-card__live {
  color: var(--ch-green);
  font-weight: 600;
}

.ch-match-card__teams {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ch-match-card__teams--center {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.ch-match-card__team,
.ch-match-card__team-col {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.ch-match-card__team-col {
  flex-direction: column;
  text-align: center;
  flex: 1;
}

.ch-match-card__team-col img,
.ch-match-card__team img {
  width: 32px;
  height: 32px;
  border-radius: var(--ch-radius-round);
  object-fit: contain;
  background: var(--ch-surface-light);
}

.ch-match-card__team-col img {
  width: 40px;
  height: 40px;
}

.ch-match-card__vs {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.ch-odd {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px;
  background: var(--ch-surface-light);
  border: none;
  border-radius: var(--ch-radius-sm);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.ch-odd:hover {
  background: var(--ch-surface-dark);
}

.ch-odd span {
  font-size: 12px;
  color: #fff;
}

.ch-odd strong {
  font-size: 14px;
  color: var(--ch-violet);
  font-weight: 600;
}

/* Promo */
.ch-tabs {
  display: flex;
  gap: 4px;
}

.ch-tabs__item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--ch-surface-input);
  border: none;
  border-radius: var(--ch-radius-lg);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.ch-tabs__item--active {
  background: rgba(255, 102, 51, 0.1);
  color: var(--ch-orange);
}

.ch-tabs__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--ch-surface-light);
  font-size: 11px;
  border-radius: var(--ch-radius-round);
}

.ch-tabs__item--active span {
  background: var(--ch-orange);
  color: #fff;
}

.ch-promo-card {
  flex-shrink: 0;
  width: 308px;
  padding: 16px;
  border-radius: var(--ch-radius-md);
  background: var(--ch-surface-middle);
}

.ch-promo-card--signup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.ch-promo-card__motivation {
  display: block;
  width: 160px;
  height: 80px;
  margin: 12px auto 8px;
  object-fit: cover;
}

.ch-promo-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.ch-promo-card__title strong {
  color: var(--ch-orange);
}

.ch-promo-card--tournament {
  background: linear-gradient(180deg, #4a2c22 0%, #1f1f1e 70%);
  border: 1px solid var(--ch-orange);
}

.ch-promo-card__timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-radius: var(--ch-radius-lg);
}

.ch-promo-card__name {
  margin: 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.ch-promo-card__img {
  width: 100%;
  height: 48px;
  object-fit: cover;
  border-radius: var(--ch-radius-xs);
  margin-bottom: 8px;
}

.ch-promo-card__prize {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--ch-orange);
}

.ch-promo-card__prize strong {
  display: block;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}

.ch-promo-card__cta {
  display: block;
  padding: 8px 16px;
  background: var(--ch-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--ch-radius-sm);
  transition: background 0.15s;
}

.ch-promo-card__cta:hover {
  background: var(--ch-orange-hover);
  color: #fff;
}

.ch-promo-card__secondary {
  display: block;
  padding: 8px 16px;
  background: var(--ch-surface-light);
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--ch-radius-sm);
}

/* League */
.ch-league-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  background: var(--ch-surface-middle);
  border-radius: var(--ch-radius-md);
}

.ch-league-block__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.ch-league-block__intro,
.ch-league-features {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .ch-league-block {
    flex-direction: row;
  }
}

.ch-league-block__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .ch-league-block__intro {
    flex-direction: row;
    text-align: left;
    max-width: 35%;
  }
}

.ch-league-block__intro h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #fff;
}

.ch-league-block__intro p {
  margin: 0;
  font-size: 14px;
  color: var(--ch-grey-500);
}

.ch-league-block__cta {
  display: inline-block;
  margin-top: 12px;
  width: auto;
}

.ch-league-features {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

@media (min-width: 768px) {
  .ch-league-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ch-league-features li {
  padding: 12px;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid var(--ch-surface-light);
  border-radius: var(--ch-radius-sm);
}

.ch-league-features strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #fff;
}

.ch-league-features span {
  display: none;
  font-size: 12px;
  color: var(--ch-grey-500);
}

@media (min-width: 768px) {
  .ch-league-features span {
    display: block;
  }
}

/* App banner */
.ch-app-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-radius: var(--ch-radius-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ch-app-banner__title {
  margin: 0;
  font-family: "Klapt Cyrillic Bold", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.ch-app-banner__title span {
  color: var(--ch-orange);
}

.ch-app-banner__phones {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.ch-app-banner__phones img {
  max-height: 120px;
  width: auto;
}

.ch-app-banner__stores {
  display: flex;
  gap: 12px;
}

.ch-app-banner__stores img {
  height: 40px;
  width: auto;
}

/* Footer */
.ch-footer-wrap {
  min-height: 400px;
  background: #0a0a0a;
}

.ch-footer {
  padding: 32px 16px 80px;
  font-family: "Roboto", var(--ch-font);
}

.ch-footer__inner {
  max-width: 1296px;
  margin: 0 auto;
}

.ch-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ch-surface-middle);
}

@media (min-width: 768px) {
  .ch-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.ch-footer__heading {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ch-orange);
}

.ch-footer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ch-footer__links a {
  padding: 4px 8px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--ch-radius-xs);
  transition: background 0.15s;
}

.ch-footer__links a:hover {
  background: var(--ch-surface-middle);
  color: #fff;
}

.ch-footer__legal {
  padding-top: 24px;
}

.ch-footer__legal p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ch-grey-500);
}

.ch-footer__copy {
  margin-top: 16px;
}

/* Hide old header when ch-header present */
.ch-header ~ .ch-legacy-header {
  display: none;
}

body:has(.ch-header) {
  --ch-header-h: 56px;
}

body:has(.ch-header) .ch-shell {
  padding-top: 0;
}

body:has(.ch-header) .ch-main {
  background: var(--ch-surface-dark);
}

body:has(.ch-header) .ch-section .ch-content:not(.entry-content),
body:has(.ch-header) .ch-section .ch-faq,
body:has(.ch-header) .ch-section .ch-reviews {
  color: #fff;
}

body:has(.ch-header) .ch-section .ch-content:not(.entry-content) h1,
body:has(.ch-header) .ch-section .ch-content:not(.entry-content) h2,
body:has(.ch-header) .ch-section .ch-content:not(.entry-content) p,
body:has(.ch-header) .ch-section .ch-content:not(.entry-content) li {
  color: inherit;
}
