/* 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 {
  --gb-surface-dark: #1c1c1c;
  --gb-surface-middle: #262626;
  --gb-surface-light: #333333;
  --gb-surface-input: #2a2a2a;
  --gb-grey-500: #9ca3af;
  --gb-orange: #ff6633;
  --gb-orange-hover: #ff8555;
  --gb-green: #00ff85;
  --gb-violet: #c4b5fd;
  --gb-header-h: 96px;
  --gb-radius-xs: 4px;
  --gb-radius-sm: 8px;
  --gb-radius-md: 12px;
  --gb-radius-lg: 16px;
  --gb-radius-pill: 999px;
  --gb-radius-round: 50%;
}

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

.gb-broadcast {
  display: block;
  width: 100%;
}

.gb-broadcast__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  text-decoration: none;
  background-image: url("./img/home/broadcast-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gb-broadcast__text {
  min-width: 0;
  color: #fff;
  font-family: "Klapt Cyrillic Bold", sans-serif;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb-broadcast__btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 28px;
  padding: 0 7px;
  background: var(--gb-green);
  color: #000;
  font-family: "Klapt Cyrillic Bold", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 1.4px;
}

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

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

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

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

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

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

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

  .gb-nav {
    display: flex;
  }
}

.gb-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(--gb-radius-sm);
  transition: background 0.15s, color 0.15s;
}

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

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

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

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

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

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

.gb-auth__register:hover {
  background: var(--gb-orange-hover);
  color: #fff;
}

@media (max-width: 899px) {
  .gb-header-nav {
    gap: 8px;
    padding: 0 10px;
  }

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

  .gb-auth__login {
    display: none;
  }

  .gb-auth {
    gap: 0;
  }

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

@media (max-width: 480px) {
  .gb-broadcast__link {
    gap: 10px;
    padding: 0 10px;
  }

  .gb-broadcast__text {
    font-size: 14px;
  }

  .gb-broadcast__btn {
    font-size: 11px;
    height: 26px;
  }
}

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

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

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

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

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

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

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

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

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

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

.gb-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;
}

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

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

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

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

.gb-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(--gb-radius-pill);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .gb-carousel__bullet {
    transition: none;
  }
}

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

.gb-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(--gb-surface-dark) 0%, transparent 100%);
}

.gb-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;
}

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

.gb-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;
}

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

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

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

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

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

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

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

.gb-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;
}

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

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

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

.gb-quick-nav__chip {
  position: absolute;
  top: 2px;
  right: 6px;
  z-index: 2;
  min-width: 28px;
  padding: 2px 6px 3px;
  background: var(--gb-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(--gb-radius-xs);
  box-shadow: 0 2px 8px rgba(255, 102, 51, 0.45);
}

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

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

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

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

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

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

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

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

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

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

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

.gb-game-card {
  flex-shrink: 0;
  width: 160px;
}

.gb-game-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--gb-radius-sm);
  background: var(--gb-surface-middle);
}

.gb-game-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gb-game-card:hover .gb-game-card__img-wrap img {
  transform: scale(1.05);
}

.gb-game-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.gb-game-card:hover .gb-game-card__overlay {
  opacity: 1;
}

.gb-game-card__play {
  width: 100%;
  padding: 8px;
  background: var(--gb-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: var(--gb-radius-sm);
}

.gb-game-card__demo {
  width: 100%;
  padding: 8px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--gb-radius-sm);
}

.gb-game-card__title {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb-game-card__provider {
  font-size: 12px;
  color: var(--gb-grey-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gb-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(--gb-radius-lg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gb-league-block__title {
  margin: 0 0 4px;
  font-size: 18px;
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .gb-app-banner__title {
    font-size: 30px;
  }
}

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

.gb-app-banner__phones {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
}

.gb-app-banner__phones img {
  max-height: 320px;
  width: auto;
}

.gb-app-banner__stores {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body:has(.gb-header) {
  --gb-header-h: 96px;
}

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

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

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

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