:root {
  --gb-base: #0d0d0d;
  --gb-base-alt: #121212;
  --gb-card: #1a1a1a;
  --gb-card-hover: #222222;
  --gb-border: rgba(255, 255, 255, 0.08);
  --gb-text: #f1f5f9;
  --gb-text-muted: #94a3b8;
  --gb-text-dim: #64748b;
  --gb-accent: #ff6633;
  --gb-accent-2: #e55a2b;
  --gb-accent-hover: #ff8555;
  --gb-accent-rgb: 255, 102, 51;
  --gb-success: #22c55e;
  --gb-warning: #f59e0b;
  --gb-danger: #ef4444;
  --gb-vip: linear-gradient(135deg, #f59e0b, #ef4444);
  --gb-radius: 12px;
  --gb-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --gb-radius-sm: 8px;
  --gb-header-h: 109px;
  --gb-font: "Montserrat", system-ui, sans-serif;
  --gb-max: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--gb-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gb-text);
  background: var(--gb-base);
}

a { color: var(--gb-accent); text-decoration: none; }
a:hover { color: var(--gb-accent-hover); }

.gb-legacy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gb-base-alt);
  border-bottom: 1px solid var(--gb-border);
  overflow-x: clip;
}

.gb-legacy-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0 20px;
}

.gb-legacy-header-row--top {
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
}

.gb-legacy-header-row--main {
  min-height: 56px;
}

.gb-legacy-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gb-lang-select__field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 4px 4px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.gb-lang-select__field:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gb-lang-select__flag {
  display: inline-flex;
  line-height: 0;
}

.gb-lang-select__arrow {
  flex-shrink: 0;
}

.gb-vpn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #04071e;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s;
}

.gb-vpn-btn:hover {
  filter: brightness(0.95);
}

.gb-legacy-header-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border: none;
  background: none;
  color: #858cab;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s;
}

.gb-legacy-header-icon-link svg {
  flex-shrink: 0;
  color: #858cab;
}

.gb-legacy-header-icon-link:hover {
  color: #c5cae0;
}

.gb-legacy-header-icon-link:hover svg {
  color: #c5cae0;
}

.gb-logo {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.gb-logo-img {
  position: relative;
  z-index: 1;
  height: 36px;
  width: auto;
  max-width: 100px;
  display: block;
}

.gb-auth {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.gb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--gb-radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}

.gb-btn:hover { filter: brightness(1.08); }

.gb-btn--ghost {
  background: transparent;
  border: 1px solid var(--gb-border);
  color: var(--gb-text);
}

.gb-btn--primary {
  background: linear-gradient(135deg, var(--gb-accent), var(--gb-accent-2));
  color: #fff;
}

.gb-btn--vip {
  background: var(--gb-vip);
  color: #fff;
}

.gb-btn--sm { padding: 8px 14px; font-size: 13px; }

.gb-second-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: 4px 0;
}

.gb-second-menu__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}

.gb-second-menu__search:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gb-second-menu__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #858cab;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.gb-second-menu__item svg {
  flex-shrink: 0;
  color: #858cab;
}

.gb-second-menu__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #c5cae0;
}

.gb-second-menu__item:hover svg {
  color: #c5cae0;
}

.gb-second-menu__item--active {
  background: rgba(36, 171, 248, 0.12);
  color: #fff;
}

.gb-second-menu__item--active svg {
  color: var(--gb-accent);
}

.gb-second-menu__item-icon {
  display: inline-flex;
  line-height: 0;
}

.gb-second-menu__counter {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gb-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.gb-shell {
  min-height: calc(100vh - var(--gb-header-h));
}

.gb-main {
  width: 100%;
  max-width: var(--gb-max);
  margin-inline: auto;
  padding: 20px;
  min-width: 0;
}

.gb-section {
  margin-bottom: 32px;
}

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

.gb-section-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.gb-index-banners {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(200px, 0.58fr);
  align-items: stretch;
  gap: 16px;
}

.gb-main-slider,
.gb-min-slider {
  display: flex;
  min-width: 0;
}

.gb-main-slide,
.gb-min-slide {
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
  border-radius: var(--gb-radius);
  min-height: 200px;
  background-color: var(--gb-card);
}

.gb-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

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

.gb-min-slide .gb-slide-bg img {
  object-position: center;
}

.gb-main-slide__content,
.gb-min-slide__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: inherit;
  padding: 48px 28px;
  max-width: 50%;
}

.gb-min-slide__container {
  position: relative;
  z-index: 1;
  min-height: inherit;
  height: 100%;
}

.gb-min-slide__content {
  max-width: 100%;
  text-align: center;
}

.gb-main-slide__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f82d46;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gb-main-slide__title,
.gb-min-slide__title {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(2.4rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.gb-main-slide__desc,
.gb-min-slide__desc {
  margin-bottom: 14px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.gb-min-slide__desc{
  width: 100%;
}
.gb-main-slide__desc {
  max-width: 340px;
}

.gb-main-slide__btn,
.gb-min-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: #3787e4;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s;
}
.gb-min-slide__btn{
  margin: 0 auto;
}
.gb-main-slide__btn:hover,
.gb-min-slide__btn:hover {
  filter: brightness(1.08);
}

@media (max-width: 768px) {
  .gb-main{
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .gb-index-banners {
    grid-template-columns: 1fr;
  }

  .gb-main-slider {
    width: calc(100% + 20px);
    margin-inline: -10px;
  }

  .gb-main-slide {
    min-height: 180px;
    border-radius: 0;
  }

  .gb-min-slide {
    min-height: 180px;
  }

  .gb-main-slide .gb-slide-bg img,
  .gb-min-slide .gb-slide-bg img {
    object-position: center;
  }

  .gb-main-slide__content,
  .gb-min-slide__content {
    max-width: 100%;
    padding: 20px;
  }

  .gb-main-slide__title,
  .gb-min-slide__title {
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(2rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }
  .gb-main-slide__content--badge {
    padding-top: 220px;
  }

  .gb-main-slide__title {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .gb-head-trapezoid__title {
    padding-right: 16px;
  }

  .gb-table__tab {
    max-width: 100%;
    overflow: hidden;
  }

  .gb-tab-wrap {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.gb-content {
  background: var(--gb-card);
  border-radius: var(--gb-radius);
  padding: 28px 32px;
  margin: 20px 0;
}

.gb-content h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.gb-content h2 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gb-text);
}

.gb-content h3 {
  margin: 20px 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.gb-content h4 {
  margin: 16px 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gb-text-muted);
}

.gb-content p {
  margin: 0 0 14px;
  color: var(--gb-text-muted);
}

.gb-content ul,
.gb-content ol {
  margin: 0 0 16px;
  padding-left: 1.4em;
  color: var(--gb-text-muted);
}

.gb-content li { margin-bottom: 6px; }

.gb-content blockquote {
  margin: 16px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--gb-accent);
  background: rgba(var(--gb-accent-rgb), 0.08);
  border-radius: 0 var(--gb-radius-sm) var(--gb-radius-sm) 0;
  color: var(--gb-text-muted);
  font-style: italic;
}

.gb-content a { font-weight: 600; }

.gb-content strong { color: var(--gb-text); font-weight: 700; }

.gb-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.gb-content th,
.gb-content td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gb-border);
  text-align: left;
}

.gb-content th {
  color: var(--gb-text-dim);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gb-games-block {
  margin-bottom: 32px;
}

.gb-games-wrap {
  background: #05071e;
  border-radius: var(--gb-radius);
  overflow: hidden;
}

.gb-games-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;

}

.gb-games-head-icon {
  flex-shrink: 0;
}

.gb-games-head-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gb-text);
  white-space: nowrap;
}

.gb-games-head-shape {
  margin-left: auto;
  flex-shrink: 0;
  height: 48px;
  width: auto;
}

.gb-games-body {
  padding: 16px;
}

.gb-games-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gb-game-item {
  border-radius: 12px;
  overflow: hidden;
  background: #05071e;
  transition: transform 0.15s;
}

.gb-game-item:hover {
  transform: translateY(-2px);
}

.gb-game-item-top {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gb-game-item-image {
  width: 100%;
  height: 100%;
}

.gb-game-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gb-game-item-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.gb-game-item:hover .gb-game-item-hover {
  opacity: 1;
}

.gb-game-item-hover-blur {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 30, 0.55);
  backdrop-filter: blur(4px);
}

.gb-game-play {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  background: var(--gb-accent);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s;
}

.gb-game-play:hover {
  filter: brightness(1.08);
}

.gb-game-item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: #05071e;
}

.gb-game-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb-game-item-brand {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--gb-text-muted);
  letter-spacing: 0.02em;
}

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

@media (max-width: 1100px) {
  .gb-games-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .gb-games-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .gb-games-body {
    padding: 12px;
  }

  .gb-game-item-hover {
    opacity: 0;
  }

  .gb-game-item-hover-blur {
    background: rgba(4, 7, 30, 0.35);
    backdrop-filter: none;
  }

  .gb-game-play {
    padding: 8px 16px;
    font-size: 12px;
  }
  .gb-content{
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .gb-games-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gb-section--tournaments {
  padding-top: 0;
  background: var(--gb-card);
  border-radius: var(--gb-radius);
}

.gb-tournament-list__head {
  margin-bottom: 0;
}

.gb-head-trapezoid {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.gb-head-trapezoid__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 88px 10px 16px;
  z-index: 1;
}

.gb-head-trapezoid__title--section {
  
  max-width: 100%;
  box-sizing: border-box;
}

.gb-head-trapezoid__title--card {
  width: 100%;
  box-sizing: border-box;
  background: var(--gb-accent);
  border-bottom: 2px solid #04071e;
  color: #fff;
}

.gb-head-trapezoid__shape {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
}

.gb-head-trapezoid__body {
  height: 2px;
}

.gb-tournament-list__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.gb-tournament-list__indicator {
  flex-shrink: 0;
}

.gb-tournament-list__body {
  padding-top: 16px;
}

.gb-tournament-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gb-tournament-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #1b1d32;
}

.gb-tournament-card__head {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  background: var(--gb-accent);
}

.gb-tournament-card__head .gb-head-trapezoid {
  display: block;
  flex: 1;
  min-width: 0;
}

.gb-tournament-card__head .gb-head-trapezoid__title--card {
  width: auto;
  background: transparent;
  border-bottom: none;
  padding: 10px 16px;
}

.gb-tournament-card__head .gb-head-trapezoid__body {
  display: none;
}

.gb-tournament-card__prize {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.gb-tournament-card__prize svg {
  flex-shrink: 0;
  color: #fff;
}

.gb-tournament-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px;
  flex: 1;
}

.gb-tournament-card__timer {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  padding: 8px 16px 8px 0;
}

.gb-tournament-card__timer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(4, 7, 30, 0.35);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.gb-tournament-card__timer-col span {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-transform: lowercase;
}

.gb-tournament-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.gb-tournament-card__provider {
  display: inline-block;
  margin-top: 4px;
  color: var(--gb-accent);
  font-size: 0.92em;
  font-weight: 700;
  text-shadow:
    0 0 10px rgba(36, 171, 248, 0.7),
    0 0 22px rgba(36, 171, 248, 0.45);
}

.gb-tournament-card__data {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}

.gb-tournament-card__data-item {
  min-width: 100px;
  text-align: center;
}

.gb-tournament-card__data-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gb-text);
}

.gb-tournament-card__data-value img {
  flex-shrink: 0;
  opacity: 0.85;
}

.gb-tournament-card__data-label {
  margin-top: 4px;
  font-size: 12px;
  color: #858cab;
}

.gb-tournament-card__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.gb-tournament-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--gb-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: filter 0.15s;
}

.gb-tournament-card__button:hover {
  filter: brightness(1.08);
  color: #fff;
}

@media (max-width: 768px) {
  .gb-tournament-list__grid {
    grid-template-columns: 1fr;
  }

  .gb-tournament-card__head {
    flex-wrap: wrap;
  }

  .gb-tournament-card__timer {
    flex-wrap: wrap;
    width: 100%;
    padding: 0 16px 12px;
  }

  .gb-tournament-card__timer-col {
    flex: 1;
    min-width: 44px;
  }
}

.gb-index-table {
  background: var(--gb-card);
  border-radius: var(--gb-radius);
  overflow: hidden;
  overflow-x: clip;
}

.gb-table-wrap {
  min-width: 0;
}

.gb-table__tab {
  display: flex;
  align-items: stretch;
  min-height: 48px;

}

.gb-table__diagonal-header {
  flex-shrink: 0;
  min-width: 28px;
  margin-right: -6px;
  background: #05071e;
  transform: skewX(-18deg);
  transform-origin: bottom left;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.gb-table__header {
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-width: 0;
}

.gb-tab-wrap {
  display: flex;
  gap: 4px;
  padding: 8px 12px 0;
}

.gb-tab {
  padding: 10px 16px;
  border: none;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: #858cab;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.gb-tab:hover {
  color: var(--gb-text);
}

.gb-tab--active {
  background: #05071e;
  color: var(--gb-text);
}

.gb-table-scroll {
  overflow-x: auto;
}

.gb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}

.gb-table__th,
.gb-table__td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gb-border);
  text-align: left;
  vertical-align: middle;
}

.gb-table__th {
  background: #0c0f1e;
  color: #858cab;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.gb-table__th--first,
.gb-table__td--first {
  padding-left: 20px;
}

.gb-table__tr--alt {
  background: rgba(255, 255, 255, 0.02);
}

.gb-table__tr:last-child .gb-table__td {
  border-bottom: none;
}

.gb-table__td--first {
  white-space: nowrap;
}

.gb-table__td--first .gb-table__avatar,
.gb-table__td--first .gb-table__player,
.gb-table__td--first .gb-table__rank {
  display: inline-block;
  vertical-align: middle;
}

.gb-table__avatar {
  margin-right: 8px;
}

.gb-table__rank {
  margin-left: 4px;
}

.gb-table__td--game {
  white-space: nowrap;
}

.gb-table__td--game .gb-table__game-icon,
.gb-table__td--game .gb-table__game-name {
  display: inline-block;
  vertical-align: middle;
}

.gb-table__game-icon {
  margin-right: 10px;
}

.gb-table__player {
  font-weight: 600;
}

.gb-table__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.gb-table__rank {
  width: 16px;
  height: 16px;
}

.gb-table__game-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.gb-table__game-name {
  font-weight: 600;
}

.gb-table__money {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.gb-table__currency {
  margin-left: 3px;
  color: #858cab;
  font-size: 12px;
}

.gb-table__kf {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.gb-table__kf--1 { color: #3eb13b; }
.gb-table__kf--3 { color: var(--gb-accent); }

.gb-table__time {
  color: #858cab;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.gb-bonus-cta {
  display: grid;
  grid-template-columns: 1fr min(420px, 42%);
  gap: 24px 32px;
  align-items: center;
  padding: 32px 36px;
  overflow: hidden;
}

.gb-bonus-cta-content {
  text-align: left;
}

.gb-bonus-cta-title {
  display: flex;
  flex-shrink: 0;
  max-width: 405px;
  margin: 0 0 16px;
  font-style: italic;
  font-weight: 900;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: #ccd5ff;
}

.gb-bonus-cta-title-wrap {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.gb-bonus-cta-title-wrap > span {
  background: #292d44;
}

.gb-bonus-cta-title-1 {
  color: #ccd4ff;
  padding: 4px 8px;
  border-top-left-radius: 12px;
  margin-right: -8px;
}

.gb-bonus-cta-title-2,
.gb-bonus-cta-title-3 {
  padding: 4px 8px;
  border-bottom-right-radius: 12px;
}

.gb-bonus-cta-title-2 {
  color: #2596ff;
  border-top-right-radius: 12px;
}

.gb-bonus-cta-title-3 {
  color: #f3f3f3;
  border-bottom-left-radius: 12px;
}

.gb-bonus-cta-lead {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gb-text);
}

.gb-bonus-cta-text {
  margin: 0 0 24px;
  color: var(--gb-text-muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 520px;
}

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

.gb-bonus-cta-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gb-bonus-cta-media img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .gb-bonus-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }

  .gb-bonus-cta-content {
    text-align: center;
  }

  .gb-bonus-cta-text {
    margin-inline: auto;
  }

  .gb-bonus-actions {
    justify-content: center;
  }

  .gb-bonus-cta-media {
    order: -1;
  }

  .gb-bonus-cta-media img {
    max-width: 320px;
  }

  .gb-bonus-cta-title {
    justify-content: center;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.35rem, 5vw, 32px);
    line-height: 1.35;
  }

  .gb-bonus-cta-title-1 {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .gb-bonus-cta-title-3 {
    border-top-right-radius: 12px;
  }
}

.gb-footer {
  margin-top: 40px;
  background: var(--gb-base-alt);
}

.gb-footer-top-wrap {
  position: relative;
  max-width: var(--gb-max);
  margin: 0 auto;
  padding: 0 20px 28px;
}

.gb-footer-top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  min-height: 50px;
  padding: 14px 100px;
  background: #05071e;
  border-radius: 0 0 12px 12px;
  overflow: visible;
}

.gb-footer-top__link {
  color: #858cab;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.gb-footer-top__link:hover {
  color: #c5cae0;
}

.gb-footer-top__trapezoid {
  position: absolute;
  bottom: 0;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
  color: #04071e;
}

.gb-footer-top__trapezoid--left { left: 0; }
.gb-footer-top__trapezoid--right {
  right: 0;
  transform: scaleX(-1);
}

.gb-footer__up-btn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(17, 21, 45, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gb-accent);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.gb-footer__up-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 171, 248, 0.45);
  background: rgba(36, 171, 248, 0.14);
  color: var(--gb-accent-hover);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(36, 171, 248, 0.2);
}

.gb-footer__up-btn:active {
  transform: translateY(0);
}

.gb-footer__up-btn svg {
  width: 22px;
  height: 22px;
}

.gb-footer__up-btn-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gb-footer-bot {
  padding: 32px 20px 40px;
  border-top: 1px solid var(--gb-border);
  background: #05071e;
}

.gb-footer-bot__inner {
  max-width: var(--gb-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gb-payment-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}

.gb-payment-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 36px;
}

.gb-payment-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s;
}

.gb-payment-icon img:not(.gb-payment-icon__hover) {
  opacity: 0.38;
}

.gb-payment-icon__hover {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.gb-payment-icon:hover img:not(.gb-payment-icon__hover) { opacity: 0; }
.gb-payment-icon:hover .gb-payment-icon__hover { opacity: 1; }

.gb-footer-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 24px;
}

.gb-footer-info__downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.gb-footer-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius);
  color: var(--gb-text);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.gb-footer-download:hover {
  border-color: rgba(36, 171, 248, 0.35);
  color: var(--gb-accent-hover);
}

.gb-footer-download__text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.gb-footer-download__text span {
  font-size: 12px;
  font-weight: 500;
  color: #858cab;
}

.gb-footer-info__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.gb-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gb-social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #858cab;
  transition: background 0.15s, color 0.15s;
}

.gb-social-links__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gb-text);
}

.gb-footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gb-lang-select__field--footer {
  background: rgba(255, 255, 255, 0.06);
}

.gb-footer-actions__sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #858cab;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.gb-footer-actions__sound--active,
.gb-footer-actions__sound:hover {
  background: rgba(36, 171, 248, 0.15);
  color: var(--gb-accent);
}

.gb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gb-text);
  cursor: pointer;
  transition: background 0.15s;
}

.gb-burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gb-burger__line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

.gb-burger--open .gb-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gb-burger--open .gb-burger__line:nth-child(2) {
  opacity: 0;
}

.gb-burger--open .gb-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gb-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.gb-mobile-menu--open {
  pointer-events: auto;
  visibility: visible;
}

.gb-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 30, 0.65);
  opacity: 0;
  transition: opacity 0.25s;
}

.gb-mobile-menu--open .gb-mobile-menu__backdrop {
  opacity: 1;
}

.gb-mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: min(320px, 88vw);
  max-width: 100%;
  height: 100%;
  background: var(--gb-base-alt);
  border-right: 1px solid var(--gb-border);
  box-shadow: var(--gb-shadow-md);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.gb-mobile-menu--open .gb-mobile-menu__panel {
  transform: translateX(0);
}

.gb-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--gb-border);
}

.gb-mobile-menu__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gb-text);
}

.gb-mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gb-text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.gb-mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gb-text);
}

.gb-mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.gb-mobile-menu__auth {
  display: none;
  gap: 8px;
  margin-bottom: 20px;
}

.gb-mobile-menu__auth .gb-btn {
  flex: 1;
}

.gb-mobile-menu__section + .gb-mobile-menu__section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gb-border);
}

.gb-mobile-menu__label {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gb-text-dim);
}

.gb-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gb-text);
  transition: background 0.15s, color 0.15s;
}

.gb-mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gb-accent-hover);
}

.gb-mobile-menu__link--active {
  background: rgba(36, 171, 248, 0.12);
  color: var(--gb-accent);
}

.gb-mobile-menu__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--gb-danger);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.gb-mobile-menu__games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gb-mobile-menu__game {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--gb-text-muted);
  text-align: center;
  transition: background 0.15s, color 0.15s;
}

.gb-mobile-menu__game:hover {
  background: rgba(36, 171, 248, 0.12);
  color: var(--gb-accent);
}

body.gb-menu-open {
  overflow: hidden;
}

.gb-footer-mobile {
  display: none;
}

.gb-footer-mobile__link {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 12px;
  border: none;
  background: #04071e;
  color: #fff;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.gb-footer-mobile__link svg {
  fill: #858cab;
}

.gb-footer-mobile__link--active,
.gb-footer-mobile__link:hover {
  color: var(--gb-accent);
}

.gb-footer-mobile__link--active svg,
.gb-footer-mobile__link:hover svg {
  fill: var(--gb-accent);
}

.gb-footer-mobile__link--wallet {
  position: relative;
}

.gb-footer-mobile__link--wallet:hover {
  color: #fff;
}

.gb-footer-mobile__icon-wrap {
  position: relative;
  display: flex;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
}

.gb-footer-mobile__icon-wrap--spacer {
  visibility: hidden;
}

.gb-footer-mobile__icon-wrap--wallet {
  position: absolute;
  top: -9px;
  left: 50%;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #31bc69;
  box-shadow: 0 2.2px 13.2px rgba(49, 188, 105, 0.37);
  overflow: hidden;
  transform: translateX(-50%);
}

.gb-footer-mobile__icon-wrap--wallet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  transform: translateX(-10em) skewX(-45deg);
}

.gb-footer-mobile__icon-wrap--wallet-anim::before {
  animation: gb-wallet-shine 2s ease-in-out infinite;
}

.gb-footer-mobile__icon--wallet {
  position: relative;
  z-index: 1;
}

.gb-footer-mobile__counter {
  position: absolute;
  top: -6px;
  right: -6px;
  display: flex;
  width: 21px;
  height: 14px;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  border: 2px solid #04071e;
  border-radius: 999px;
  background: #ffbe18;
  color: #04071e;
  font-size: 9px;
  font-weight: 900;
  line-height: 9px;
  letter-spacing: -0.24px;
}

.gb-footer-mobile__counter--hidden {
  display: none;
}

@keyframes gb-wallet-shine {
  0%, 100% { transform: translateX(-10em) skewX(-45deg); }
  50% { transform: translateX(20em) skewX(-45deg); }
}

@media (max-width: 1024px) {
  :root {
    --gb-header-h: 53px;
    --gb-mobile-nav-h: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  body {
    padding-bottom: var(--gb-mobile-nav-h);
  }

  .gb-footer-mobile {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 110;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: var(--gb-mobile-nav-h);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #04071e;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .gb-burger {
    display: inline-flex;
  }

  .gb-legacy-header-row {
    padding-left: 16px;
  }

  .gb-legacy-header-row--top {
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
  }

  .gb-legacy-header-row--top .gb-legacy-header-left {
    display: none;
  }

  .gb-legacy-header-row--main {
    display: none;
  }

  .gb-legacy-header-row--top .gb-logo {
    position: static;
    transform: none;
    margin: 0;
    flex-shrink: 0;
  }

  .gb-legacy-header-row--top .gb-auth {
    display: flex;
    margin-left: 8px;
    flex-shrink: 0;
  }

  .gb-legacy-header-row--top .gb-auth .gb-btn {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .gb-index-banners { grid-template-columns: 1fr; }
  .gb-footer-top { padding: 14px 60px; }
  .gb-footer-info { flex-direction: column; align-items: flex-start; }

  .gb-footer__up-btn {
    right: 16px;
    bottom: calc(var(--gb-mobile-nav-h) + 16px);
  }
}

@media (max-width: 360px) {
  .gb-legacy-header-row--top {
    gap: 4px;
    padding: 8px 10px;
  }

  .gb-legacy-header-row--top .gb-auth {
    gap: 4px;
    margin-left: 4px;
  }

  .gb-legacy-header-row--top .gb-auth .gb-btn {
    padding: 5px 6px;
    font-size: 10px;
  }

  .gb-burger {
    width: 36px;
    height: 36px;
  }

  .gb-tab {
    padding: 8px 10px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .gb-legacy-header-row--top .gb-auth .gb-btn {
    padding: 7px 10px;
    font-size: 12px;
  }

  .gb-second-menu { gap: 2px; }
  .gb-second-menu__item { padding: 8px 10px; font-size: 13px; }
  .gb-second-menu__item:not(.gb-second-menu__item--active) { font-size: 0; padding: 8px; }
  .gb-second-menu__item:not(.gb-second-menu__item--active) .gb-second-menu__counter { font-size: 11px; }
  .gb-footer-top { padding: 14px 16px; gap: 10px 16px; }
  .gb-footer-top__trapezoid { display: none; }
  .gb-footer-top-wrap { padding-bottom: 16px; }
}

/* SEO / brand components */
.gb-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius-sm);
}

.gb-anchors a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gb-border);
  color: var(--gb-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

.gb-anchors a:hover {
  color: var(--gb-accent);
  border-color: rgba(var(--gb-accent-rgb), 0.35);
}

.gb-faq {
  display: grid;
  gap: 0.75rem;
}

.gb-faq__item {
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius-sm);
  background: var(--gb-card);
  overflow: hidden;
}

.gb-faq__question {
  margin: 0;
  padding: 1rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.gb-faq__question::-webkit-details-marker {
  display: none;
}

.gb-faq__answer {
  padding: 0 1.125rem 1rem;
  color: var(--gb-text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.gb-reviews {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gb-reviews__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.gb-reviews__item {
  padding: 1rem 1.125rem;
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius-sm);
  background: var(--gb-card);
}

.gb-reviews__author {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
}

.gb-reviews__text {
  margin: 0;
  color: var(--gb-text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
