/* Ginabet — premium sportsbook home */
.gbet {
  --gbet-ink: #07110d;
  --gbet-panel: rgba(12, 22, 18, 0.82);
  --gbet-panel-solid: #0f1a15;
  --gbet-line: rgba(212, 175, 95, 0.22);
  --gbet-gold: #e4c06a;
  --gbet-gold-soft: #f3dfa0;
  --gbet-mint: #3dffb0;
  --gbet-mint-dim: #1aa874;
  --gbet-live: #ff4d6d;
  --gbet-blood: #c4122f;
  --gbet-text: #f2f7f4;
  --gbet-muted: rgba(242, 247, 244, 0.55);
  --gbet-radius: 18px;
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  margin: -0.5rem -0.75rem 0;
  padding: 0 0 2.5rem;
  color: var(--gbet-text);
  font-family: "Chakra Petch", sans-serif;
  overflow-x: hidden;
  background: #050608;
}

.gbet--home {
  margin-top: -0.75rem;
}

.gbet > * {
  position: relative;
  z-index: 1;
}

/* —— Hero —— */
.gbet-hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 18, 47, 0.35);
}

.gbet-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08);
  animation: gbet-hero-drift 22s ease-in-out infinite alternate;
}

.gbet-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.55) 48%, rgba(5, 6, 8, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.98) 0%, transparent 48%),
    radial-gradient(700px 320px at 78% 30%, rgba(196, 18, 47, 0.32), transparent 62%),
    radial-gradient(500px 240px at 18% 70%, rgba(61, 255, 176, 0.1), transparent 55%);
}

.gbet-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.6rem, 4vw, 3.2rem) clamp(1rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.2rem);
  max-width: 820px;
}

.gbet-hero__kicker {
  margin: 0 0 0.75rem;
  font-family: "Russo One", sans-serif;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: rgba(232, 226, 214, 0.55);
}

.gbet-hero__title {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 28px rgba(196, 18, 47, 0.35),
    0 16px 48px rgba(0, 0, 0, 0.7);
  animation: gbet-title-in 0.7s ease both;
}

.gbet-hero__lead {
  margin: 1rem 0 0;
  max-width: 42ch;
  color: rgba(232, 226, 214, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
  animation: gbet-title-in 0.7s ease 0.08s both;
}

.gbet-hero__lead strong {
  color: var(--gbet-gold-soft);
}

.gbet-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
  animation: gbet-title-in 0.7s ease 0.14s both;
}

.gbet-mode {
  appearance: none;
  border: 1px solid rgba(232, 226, 214, 0.16);
  background: rgba(0, 0, 0, 0.45);
  color: var(--gbet-muted);
  border-radius: 14px;
  padding: 0.7rem 1.05rem;
  min-width: 7.5rem;
  display: grid;
  gap: 0.15rem;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.gbet-mode:hover {
  color: var(--gbet-text);
  border-color: rgba(228, 192, 106, 0.45);
  transform: translateY(-2px);
}

.gbet-mode.is-on {
  color: #fff;
  border-color: rgba(196, 18, 47, 0.7);
  background:
    linear-gradient(145deg, rgba(196, 18, 47, 0.45), rgba(10, 10, 12, 0.85));
  box-shadow: 0 12px 32px rgba(196, 18, 47, 0.28);
}

.gbet-mode--live.is-on {
  border-color: rgba(255, 77, 109, 0.8);
}

.gbet-mode__lab {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.gbet-mode__n {
  font-family: "Russo One", sans-serif;
  font-size: 1.25rem;
  color: var(--gbet-gold-soft);
}

.gbet-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
  animation: gbet-title-in 0.7s ease 0.2s both;
}

.gbet-hero__bal {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 255, 176, 0.35);
  background: rgba(0, 0, 0, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.gbet-hero__bal strong {
  color: var(--gbet-mint);
  font-family: "Russo One", sans-serif;
}

.gbet-hero__pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ff8fa3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gbet-hero__pulse i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gbet-live);
  box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
  animation: gbet-pulse 1.6s ease-out infinite;
}

@keyframes gbet-hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, 1%, 0);
  }
}

@keyframes gbet-title-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gbet-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 77, 109, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0);
  }
}

.gbet__notice {
  margin: 0 1rem 0.85rem;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: rgba(61, 255, 176, 0.1);
  border: 1px solid rgba(61, 255, 176, 0.28);
  color: #c8ffe8;
}

.gbet__muted {
  color: var(--gbet-muted);
  font-size: 0.88rem;
}

.gbet__loading {
  margin: 0 1.25rem 0.75rem;
}

.gbet__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 0 clamp(1rem, 2.5vw, 2rem);
}

.gbet__layout--solo {
  grid-template-columns: minmax(0, 1fr) !important;
}

.gbet__feed {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}

.gbet-block__head,
.gbet-sport__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.gbet-sport__title {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.gbet-block__head h2,
.gbet-sport__head h2 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.gbet-block__head span,
.gbet-sport__title span {
  color: var(--gbet-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.gbet-modes--sport {
  margin-top: 0;
  gap: 0.45rem;
}

.gbet-modes--sport .gbet-mode {
  min-width: 5.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
}

.gbet-modes--sport .gbet-mode__lab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
}

.gbet-modes--sport .gbet-mode__n {
  font-size: 1.05rem;
}

.gbet-mode__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gbet-live);
  box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
  animation: gbet-pulse 1.6s ease-out infinite;
}

.gbet-top__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
}

.gbet-top__rail > * {
  scroll-snap-align: start;
}

.gbet__card--top {
  min-height: 100%;
}

.gbet-sports {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

@media (max-width: 1100px) {
  .gbet-sports {
    grid-template-columns: 1fr;
  }
}

.gbet-sport {
  padding: 1rem;
  border-radius: calc(var(--gbet-radius) + 2px);
  border: 1px solid var(--gbet-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    rgba(8, 12, 14, 0.72);
}

.gbet-sport__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 920px;
  overflow: auto;
  padding-right: 0.15rem;
}

.gbet-news__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gbet-news__card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  min-height: 88px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(228, 192, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(196, 18, 47, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.35);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gbet-news__card:not(.has-media) {
  grid-template-columns: minmax(0, 1fr);
}

.gbet-news__card:hover {
  border-color: rgba(228, 192, 106, 0.4);
  transform: translateY(-2px);
}

.gbet-news__media {
  width: 112px;
  min-height: 88px;
  height: 100%;
  background-color: #12161a;
  background-image: var(--news-img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gbet-news__body {
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.gbet-news__tag {
  display: inline-block;
  margin-bottom: 0.3rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gbet-blood);
}

.gbet-news__card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gbet-news__card p {
  margin: 0;
  color: var(--gbet-muted);
  font-size: 0.75rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gbet-sec__empty,
.gbet-empty-msg {
  margin: 0.35rem 0 0;
  padding: 0.35rem 0.15rem;
  border: 0;
  background: transparent;
  color: var(--gbet-muted);
  text-align: left;
  font-size: 0.88rem;
}

.gbet-sport.is-empty {
  border-style: dashed;
  border-color: rgba(228, 192, 106, 0.12);
  background: rgba(8, 12, 14, 0.4);
}

.gbet-sport.is-empty .gbet-sport__list {
  max-height: none;
  overflow: visible;
}

/* legacy head/tabs kept for safety */
.gbet__head {
  display: none;
}

.gbet__tabs {
  display: none;
}

.gbet__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 1.15rem;
  align-items: start;
}

.gbet__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

/* —— Sections —— */
.gbet-sec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.gbet-sec__head h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Russo One", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gbet-sec__head h2::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gbet-gold);
  box-shadow: 0 0 12px rgba(228, 192, 106, 0.6);
}

.gbet-sec--live .gbet-sec__head h2::before {
  background: var(--gbet-live);
  box-shadow: 0 0 14px rgba(255, 77, 109, 0.75);
  animation: gbet-pulse 1.4s ease-in-out infinite;
}

.gbet-sec--results .gbet-sec__head h2::before {
  background: rgba(242, 247, 244, 0.35);
  box-shadow: none;
}

@keyframes gbet-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.gbet-sec__head span {
  min-width: 1.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gbet-gold-soft);
  background: rgba(228, 192, 106, 0.1);
  border: 1px solid rgba(228, 192, 106, 0.2);
}

.gbet-sec__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gbet-sec__empty {
  margin: 0;
  padding: 1.1rem 1rem;
  border-radius: var(--gbet-radius);
  border: 1px dashed rgba(228, 192, 106, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: var(--gbet-muted);
  text-align: center;
}

/* —— Match card —— */
.gbet__card {
  position: relative;
  border: 1px solid rgba(228, 192, 106, 0.16);
  border-radius: var(--gbet-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(180deg, rgba(18, 30, 24, 0.95), rgba(10, 18, 14, 0.92));
  padding: 0.95rem 1rem 1rem;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.gbet__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gbet-gold), transparent);
  opacity: 0.55;
}

.gbet__card:hover {
  border-color: rgba(228, 192, 106, 0.35);
  transform: translateY(-1px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(228, 192, 106, 0.08);
}

.gbet__card.is-live {
  border-color: rgba(255, 77, 109, 0.4);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(255, 77, 109, 0.08);
}

.gbet__card.is-live::before {
  background: linear-gradient(180deg, var(--gbet-live), transparent);
  opacity: 0.9;
}

.gbet__card.is-done {
  opacity: 0.78;
}

.gbet__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gbet-muted);
  margin-bottom: 0.7rem;
}

.gbet__meta em {
  font-style: normal;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, #ff4d6d, #ff7a59);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  box-shadow: 0 4px 14px rgba(255, 77, 109, 0.4);
  animation: gbet-pulse 1.6s ease-in-out infinite;
}

.gbet__meta em.is-fin {
  background: rgba(242, 247, 244, 0.12);
  color: var(--gbet-muted);
  box-shadow: none;
  animation: none;
}

.gbet__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.gbet__sides {
  display: contents;
}

.gbet-team {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: #fff;
}

.gbet-team--away {
  flex-direction: row-reverse;
  text-align: right;
}

.gbet-team__logo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(228, 192, 106, 0.22);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.gbet-team__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a120e;
}

.gbet-team__logo i {
  font-style: normal;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  color: #f3dfa0;
  font-size: 0.95rem;
}

.gbet-team__name,
.gbet-team strong {
  font-size: 0.98rem !important;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: #ffffff !important;
  font-weight: 700;
}

.gbet__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 4.5rem;
}

.gbet__score {
  font-family: "Russo One", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.25rem 0.55rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gbet__score.is-live {
  color: #ffb4c0;
  border-color: rgba(255, 77, 109, 0.35);
  box-shadow: 0 0 18px rgba(255, 77, 109, 0.15);
}

.gbet__when {
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--gbet-gold-soft);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.gbet__vs {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 247, 244, 0.35);
  font-weight: 700;
}

.gbet__odds {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0.65rem 0.55rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(228, 192, 106, 0.22);
  background: rgba(0, 0, 0, 0.45);
}

.gbet__warn {
  margin: 0.25rem 0 0;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 77, 109, 0.12);
  border: 1px solid rgba(255, 77, 109, 0.35);
  color: #ffb4c0;
  font-size: 0.85rem;
  font-weight: 650;
}

.gbet__muted--tight {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
}

/* Market switch */
.gbet-mkt {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(228, 192, 106, 0.14);
  width: fit-content;
  margin-top: 0;
}

.gbet-mkt__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(242, 247, 244, 0.7);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 9px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.gbet-mkt__btn:hover {
  color: #fff;
}

.gbet-mkt__btn.is-on {
  color: #0a120e;
  background: linear-gradient(180deg, #f3dfa0, #d4af5f);
  box-shadow: 0 4px 12px rgba(212, 175, 95, 0.3);
}

/* Coefficient buttons — высокий контраст */
.gbet-coefs {
  display: grid !important;
  gap: 0.55rem;
  width: 100%;
}

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

.gbet-coefs--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gbet-coef {
  --coef-glow: rgba(61, 255, 176, 0.4);
  --coef-accent: #7dffc0;
  appearance: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 230, 160, 0.45) !important;
  border-radius: 14px;
  min-height: 68px;
  padding: 0.6rem 0.75rem 0.65rem;
  cursor: pointer;
  display: grid !important;
  align-content: center;
  gap: 0.25rem;
  text-align: left;
  font: inherit;
  color: #fff !important;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(180deg, #24352c, #121c17) !important;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.gbet-coef::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.1) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.gbet-coef::after {
  content: "";
  position: absolute;
  inset: auto -15% -55% auto;
  width: 75%;
  height: 95%;
  background: radial-gradient(circle, var(--coef-glow), transparent 68%);
  opacity: 0.4;
  pointer-events: none;
}

.gbet-coef:hover {
  transform: translateY(-2px);
  border-color: #f3dfa0 !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(61, 255, 176, 0.12);
}

.gbet-coef:hover::before {
  transform: translateX(120%);
}

.gbet-coef:active {
  transform: translateY(0);
}

.gbet-coef__lab {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gbet-coef__val {
  position: relative;
  z-index: 1;
  font-family: "Russo One", "Chakra Petch", sans-serif;
  font-size: 1.45rem !important;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #ffe566 !important;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 229, 102, 0.35);
}

.gbet-coef.is-on {
  border-color: rgba(228, 192, 106, 0.75);
  background:
    linear-gradient(165deg, rgba(228, 192, 106, 0.22), transparent 48%),
    linear-gradient(180deg, #2a3d32, #14241c);
  box-shadow:
    0 0 0 1px rgba(228, 192, 106, 0.28),
    0 12px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 24px rgba(61, 255, 176, 0.06);
}

.gbet-coef.is-on .gbet-coef__val {
  color: #fff6c8 !important;
  text-shadow: 0 0 20px rgba(228, 192, 106, 0.45);
}

.gbet-coef.is-on .gbet-coef__lab {
  color: rgba(243, 223, 160, 0.95) !important;
}

.gbet-coef--home {
  --coef-glow: rgba(56, 189, 248, 0.45);
  --coef-accent: #7dd3fc;
}

.gbet-coef--home .gbet-coef__val {
  color: #7dd3fc !important;
}

.gbet-coef--draw {
  --coef-glow: rgba(250, 204, 21, 0.4);
  --coef-accent: #fde68a;
}

.gbet-coef--draw .gbet-coef__val {
  color: #ffe566 !important;
}

.gbet-coef--away {
  --coef-glow: rgba(251, 113, 133, 0.42);
  --coef-accent: #fda4af;
}

.gbet-coef--away .gbet-coef__val {
  color: #fda4af !important;
}

.gbet-coef--over {
  --coef-glow: rgba(61, 255, 176, 0.45);
  --coef-accent: var(--gbet-mint);
}

.gbet-coef--over .gbet-coef__val {
  color: #7dffc0 !important;
}

.gbet-coef--under {
  --coef-glow: rgba(251, 146, 60, 0.4);
  --coef-accent: #fdba74;
}

.gbet-coef--under .gbet-coef__val {
  color: #fdba74 !important;
}

.gbet-coef.is-up .gbet-coef__val {
  color: #86efac;
}
.gbet-coef.is-down .gbet-coef__val {
  color: #fda4af;
}

.gbet-coef--ghost {
  justify-items: center;
  text-align: center;
  border-style: dashed;
  opacity: 0.92;
}

/* Rounds */
.gbet-rounds {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gbet-round {
  border: 1px solid rgba(228, 192, 106, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  padding: 0.55rem 0.55rem 0.6rem;
}

.gbet-round__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gbet-gold);
  margin-bottom: 0.4rem;
  padding-left: 0.15rem;
}

.gbet-round__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.gbet-round__row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gbet-round__row--1 {
  grid-template-columns: 1fr;
}

.gbet-round .gbet-coef {
  min-height: 56px;
}

/* —— Floating bets (same pattern as global chat) —— */
body.is-ginabet .gchat {
  right: 1rem;
}

.gbet-slip {
  position: fixed;
  right: calc(1rem + 72px);
  bottom: 1rem;
  z-index: 120;
  font-family: "Chakra Petch", sans-serif;
  pointer-events: none;
}

.gbet-slip > * {
  pointer-events: auto;
}

.gbet-slip[hidden] {
  display: none !important;
}

.gbet-slip__fab {
  appearance: none;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(228, 192, 106, 0.65);
  background:
    linear-gradient(145deg, rgba(243, 223, 160, 0.28), transparent 42%),
    linear-gradient(145deg, #4a3a1c, #16120c);
  color: #f3dfa0;
  cursor: pointer;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  display: grid;
  place-items: center;
  font: inherit;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.15s ease;
}

.gbet-slip__fab:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.gbet-slip.is-open .gbet-slip__fab {
  border-color: rgba(243, 223, 160, 0.95);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.55),
    0 0 0 3px rgba(228, 192, 106, 0.28);
}

.gbet-slip__fab-ico {
  font-size: 1.4rem;
  line-height: 1;
}

.gbet-slip__fab-txt {
  display: none;
}

.gbet-slip__fab i {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.gbet-slip__fab i[hidden] {
  display: none !important;
}

.gbet-hero__bets {
  appearance: none;
  border: 1px solid rgba(228, 192, 106, 0.45);
  background: rgba(228, 192, 106, 0.12);
  color: #f3dfa0;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.gbet-hero__bets:hover {
  background: rgba(228, 192, 106, 0.22);
}

.gbet-hero__guide {
  appearance: none;
  border: 1px solid rgba(180, 210, 230, 0.35);
  background: rgba(120, 160, 190, 0.12);
  color: #d7e8f4;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
}

.gbet-hero__guide:hover {
  background: rgba(120, 160, 190, 0.22);
}

.gbet-hero__guide.is-new::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e4c06a;
  box-shadow: 0 0 0 3px rgba(228, 192, 106, 0.25);
}

.gbet-mkt-help {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.gbet-round__head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.gbet-round__head .gbet-round__title {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.gbet-tip {
  appearance: none;
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(228, 192, 106, 0.45);
  background: rgba(228, 192, 106, 0.1);
  color: #f3dfa0;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.gbet-tip:hover,
.gbet-tip.is-open {
  background: rgba(228, 192, 106, 0.22);
  border-color: rgba(228, 192, 106, 0.8);
}

.gbet-tip-float {
  position: fixed;
  z-index: 400;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(228, 192, 106, 0.45);
  background: #121820;
  color: #e8eef4;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

.gbet-tip-float[hidden] {
  display: none !important;
}

.gbet-tip__bubble {
  display: none !important;
}

.gbet-guide {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.gbet-guide__scrim {
  appearance: none;
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(4, 8, 12, 0.72);
  cursor: pointer;
}

.gbet-guide__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(84vh, 720px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 16px;
  border: 1px solid rgba(228, 192, 106, 0.45);
  background:
    linear-gradient(160deg, rgba(228, 192, 106, 0.08), transparent 40%),
    #0c1218;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  font-family: "Chakra Petch", sans-serif;
  color: #e8eef4;
  animation: gbet-guide-in 0.22s ease-out;
}

@keyframes gbet-guide-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.gbet-guide__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gbet-guide__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #e4c06a;
}

.gbet-guide__head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gbet-guide__x {
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d7e0ea;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.gbet-guide__x:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gbet-guide__body {
  overflow: auto;
  padding: 0.9rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.95rem;
}

.gbet-guide__sec h3 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e4c06a;
}

.gbet-guide__sec ol,
.gbet-guide__sec ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #c9d4df;
}

.gbet-guide__sec b {
  color: #f2f6fa;
  font-weight: 800;
}

.gbet-guide__dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.gbet-guide__dl div {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gbet-guide__dl dt {
  font-size: 0.82rem;
  font-weight: 800;
  color: #f3dfa0;
  margin-bottom: 0.2rem;
}

.gbet-guide__dl dd {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #b8c5d2;
}

.gbet-guide__foot {
  margin: 0;
  font-size: 0.78rem;
  color: #9aabbb;
  line-height: 1.35;
}

.gbet-slip__panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  left: auto;
  top: auto;
  width: min(360px, calc(100vw - 2rem));
  height: min(520px, 72vh);
  max-height: min(520px, 72vh);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 18px;
  border: 1px solid rgba(228, 192, 106, 0.5);
  background: #0c1014;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.gbet-slip__panel[hidden] {
  display: none !important;
}

.gbet-slip__bg,
.gbet-slip__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gbet-slip__bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.55;
  filter: saturate(1.05) contrast(1.05);
}

.gbet-slip__veil {
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.55) 0%, rgba(8, 12, 16, 0.82) 42%, rgba(6, 9, 12, 0.94) 100%),
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(228, 192, 106, 0.18), transparent 55%);
}

.gbet-slip__head,
.gbet-slip__body {
  position: relative;
  z-index: 1;
}

.gbet-slip__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(228, 192, 106, 0.22);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent);
}

.gbet-slip__kicker {
  margin: 0 0 0.15rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 223, 160, 0.75);
}

.gbet-slip__head strong {
  display: block;
  font-family: "Russo One", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: #f7f1e6;
}

.gbet-slip__close {
  appearance: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(228, 192, 106, 0.28);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(247, 241, 230, 0.85);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.gbet-slip__close:hover {
  background: rgba(228, 192, 106, 0.16);
  border-color: rgba(228, 192, 106, 0.55);
}

.gbet-slip__body {
  overflow: auto;
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.gbet-slip__current h3,
.gbet-slip__open h3,
.gbet-slip__history h3 {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gbet-gold);
}

.gbet-slip__hint {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(247, 241, 230, 0.55);
}

.gbet-coupon {
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(228, 192, 106, 0.28);
  background:
    linear-gradient(160deg, rgba(228, 192, 106, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gbet-coupon small {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 223, 160, 0.65);
}

.gbet-coupon__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #f7f1e6;
}

.gbet-coupon__teams i {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(228, 192, 106, 0.7);
}

.gbet-coupon__pick {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #f3dfa0;
}

.gbet-coupon__pick b {
  color: #fff;
}

.gbet-coupon__stake {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.65);
}

.gbet-coupon__stake input {
  width: 100%;
  box-sizing: border-box;
  appearance: textfield;
  border-radius: 10px;
  border: 1px solid rgba(228, 192, 106, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
}

.gbet-coupon__stake input:focus {
  outline: none;
  border-color: rgba(228, 192, 106, 0.75);
  box-shadow: 0 0 0 2px rgba(228, 192, 106, 0.18);
}

.gbet-coupon__pot {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: rgba(247, 241, 230, 0.7);
}

.gbet-coupon__pot strong {
  color: #7dffb3;
  font-size: 1.05rem;
}

.gbet-coupon__actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.5rem;
}

.gbet-btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.15s ease;
}

.gbet-btn:active {
  transform: translateY(1px);
}

.gbet-btn--go {
  color: #1a1408;
  background: linear-gradient(135deg, #f3dfa0 0%, #e4c06a 45%, #c9a04a 100%);
  box-shadow:
    0 8px 22px rgba(228, 192, 106, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.gbet-btn--go:hover {
  filter: brightness(1.06);
}

.gbet-btn--ghost {
  color: rgba(247, 241, 230, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(228, 192, 106, 0.28);
}

.gbet-btn--ghost:hover {
  background: rgba(228, 192, 106, 0.12);
  border-color: rgba(228, 192, 106, 0.5);
}

.gbet-betlist {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gbet-bet {
  position: relative;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
}

.gbet-bet__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.gbet-bet__top small {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.45);
}

.gbet-bet__badge {
  flex-shrink: 0;
  max-width: 58%;
  text-align: right;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.gbet-bet__match {
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #f7f1e6;
}

.gbet-bet__result {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: rgba(247, 241, 230, 0.72);
}

.gbet-bet__result b {
  color: #f3dfa0;
  font-weight: 800;
}

.gbet-bet__result em {
  font-style: normal;
  color: rgba(125, 255, 179, 0.75);
  font-size: 0.7rem;
}

.gbet-bet__row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(247, 241, 230, 0.8);
}

.gbet-bet__row b {
  color: #f3dfa0;
}

.gbet-bet__row--soft {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(247, 241, 230, 0.5);
}

.gbet-bet__row--soft em {
  font-style: normal;
}

.gbet-bet__pay {
  color: #7dffb3 !important;
  font-weight: 800;
}

.gbet-bet.is-open {
  border-color: rgba(228, 192, 106, 0.35);
  background: linear-gradient(135deg, rgba(228, 192, 106, 0.1), rgba(0, 0, 0, 0.4));
}

.gbet-bet.is-open .gbet-bet__badge {
  color: #f3dfa0;
}

.gbet-bet.is-won {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(0, 0, 0, 0.42));
}

.gbet-bet.is-won .gbet-bet__badge {
  color: #7dffb3;
}

.gbet-bet.is-lost {
  border-color: rgba(244, 63, 94, 0.4);
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(0, 0, 0, 0.42));
}

.gbet-bet.is-lost .gbet-bet__badge {
  color: #fda4af;
}

.gbet-bet.is-void {
  border-color: rgba(148, 163, 184, 0.35);
}

.gbet-bet.is-void .gbet-bet__badge {
  color: #94a3b8;
}

.gbet__layout--solo {
  grid-template-columns: minmax(0, 1fr) !important;
}

/* legacy sticky slip (unused on home) */
.gbet__slip {
  position: sticky;
  top: 0.75rem;
  border: 1px solid rgba(228, 192, 106, 0.28);
  border-radius: calc(var(--gbet-radius) + 2px);
  background:
    linear-gradient(160deg, rgba(228, 192, 106, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(14, 24, 19, 0.96), rgba(8, 14, 11, 0.98));
  padding: 1rem 1rem 1.1rem;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.gbet__slip::before {
  content: "";
  display: block;
  height: 3px;
  margin: -1rem -1rem 0.85rem;
  border-radius: calc(var(--gbet-radius) + 2px) calc(var(--gbet-radius) + 2px) 0 0;
  background: linear-gradient(90deg, var(--gbet-mint), var(--gbet-gold), #ff7a59);
}

.gbet__slip h2,
.gbet__bets-title {
  margin: 0 0 0.65rem;
  font-family: "Russo One", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gbet__bets-title {
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(228, 192, 106, 0.14);
}

.gbet__slip-card {
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(228, 192, 106, 0.18);
  background: rgba(0, 0, 0, 0.28);
}

.gbet__slip-card small {
  color: var(--gbet-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.gbet__slip-teams .gbet-team--away {
  flex-direction: row;
  text-align: left;
}

.gbet__slip-teams {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.55rem 0;
}

.gbet__slip-pick {
  margin: 0.35rem 0 0.15rem;
  font-size: 0.92rem;
}

.gbet__slip-pick b {
  color: var(--gbet-gold-soft);
  font-family: "Russo One", sans-serif;
  font-size: 1.05rem;
}

.gbet__slip label {
  display: grid;
  gap: 0.3rem;
  margin: 0.65rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gbet-muted);
}

.gbet__slip input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(228, 192, 106, 0.25);
  background: #070d0a;
  color: inherit;
  padding: 0.6rem 0.7rem;
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gbet__slip input:focus {
  outline: none;
  border-color: rgba(61, 255, 176, 0.55);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(61, 255, 176, 0.12);
}

.gbet__go {
  width: 100%;
  margin-top: 0.4rem;
}

.gbet__go.btn--primary,
button.gbet__go.btn--primary {
  border: 0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: "Russo One", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a120e;
  background: linear-gradient(120deg, #f3dfa0, #d4af5f 50%, #3dffb0);
  box-shadow:
    0 10px 28px rgba(212, 175, 95, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.gbet__go.btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.gbet__go.btn--ghost {
  border-radius: 12px;
  border: 1px solid rgba(228, 192, 106, 0.25);
  background: transparent;
  color: var(--gbet-muted);
}

.gbet__bets {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 280px;
  overflow: auto;
  padding-right: 0.15rem;
}

.gbet__bet {
  border: 1px solid rgba(228, 192, 106, 0.14);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  display: grid;
  gap: 0.15rem;
  background: rgba(0, 0, 0, 0.25);
}

.gbet__bet em {
  font-style: normal;
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.gbet__bet--won {
  border-color: rgba(61, 255, 176, 0.45);
  background: rgba(61, 255, 176, 0.06);
}

.gbet__bet--lost {
  opacity: 0.65;
}

.gbet__bet--open {
  border-color: rgba(228, 192, 106, 0.35);
}

/* Esports extras */
.gbet__status {
  margin: -0.25rem 0 0.55rem;
  font-size: 0.78rem;
  color: rgba(242, 247, 244, 0.55);
  letter-spacing: 0.02em;
}

.gbet-maps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0 0 0.7rem;
}

.gbet-bo {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  color: #0a120e;
  background: linear-gradient(120deg, #f3dfa0, #d4af5f);
}

.gbet-map {
  font-size: 0.72rem;
  font-weight: 650;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 192, 106, 0.18);
  background: rgba(0, 0, 0, 0.3);
  color: rgba(242, 247, 244, 0.75);
}

.gbet-map b {
  color: var(--gbet-gold-soft);
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  margin-left: 0.2rem;
}

.gbet-map.is-live {
  border-color: rgba(255, 77, 109, 0.45);
  color: #ffc0cb;
  box-shadow: 0 0 14px rgba(255, 77, 109, 0.15);
}

.gbet-map.is-home {
  border-color: rgba(125, 211, 252, 0.35);
}

.gbet-map.is-away {
  border-color: rgba(253, 164, 175, 0.35);
}

.gbet-mkt-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.gbet-line-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(61, 255, 176, 0.12);
}

.gbet-line-dot--live {
  background: #3dffb0;
  box-shadow:
    0 0 0 3px rgba(61, 255, 176, 0.16),
    0 0 10px rgba(61, 255, 176, 0.45);
}

.gbet-line-dot--base {
  background: #e4c06a;
  box-shadow:
    0 0 0 3px rgba(228, 192, 106, 0.16),
    0 0 10px rgba(228, 192, 106, 0.4);
}

.gbet-line-tag {
  display: none;
}

.gbet-more {
  appearance: none;
  margin-top: 0.55rem;
  width: 100%;
  border: 1px dashed rgba(228, 192, 106, 0.22);
  background: transparent;
  color: var(--gbet-muted);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.gbet-more.is-on,
.gbet-more:hover {
  color: var(--gbet-gold-soft);
  border-color: rgba(228, 192, 106, 0.4);
}

.gbet-more__body {
  margin-top: 0.55rem;
  padding: 0.65rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(228, 192, 106, 0.12);
}

.gbet-roster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gbet-roster__side {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gbet-gold);
  margin-bottom: 0.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gbet-player {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.gbet-player__nick {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gbet-player__kd {
  font-family: "Russo One", sans-serif;
  color: var(--gbet-mint);
  flex: 0 0 auto;
}

.gbet-h2h {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(242, 247, 244, 0.7);
}

@media (max-width: 960px) {
  .gbet {
    margin: 0;
  }
  .gbet__layout,
  .gbet__grid {
    grid-template-columns: 1fr;
  }
  .gbet-sports,
  .gbet-news__grid {
    grid-template-columns: 1fr;
  }
  .gbet__slip {
    position: static;
  }
  .gbet-slip {
    right: calc(1rem + 68px);
  }
}

@media (max-width: 720px) {
  .gbet {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .gbet__layout {
    padding: 0 0.7rem;
    gap: 0.85rem;
  }

  .gbet__feed {
    gap: 1.15rem;
  }

  .gbet-hero {
    min-height: auto;
    margin-bottom: 0.85rem;
  }

  .gbet-hero__bg {
    animation: none;
    transform: scale(1.02);
  }

  .gbet-hero__content {
    padding: 1.15rem 0.85rem 1rem;
    max-width: none;
  }

  .gbet-hero__kicker {
    letter-spacing: 0.18em;
    font-size: 0.62rem;
    margin-bottom: 0.45rem;
  }

  .gbet-hero__title {
    font-size: clamp(2.35rem, 14vw, 3.2rem);
  }

  .gbet-hero__lead {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: none;
  }

  .gbet-hero__meta {
    gap: 0.45rem;
    margin-top: 0.85rem;
  }

  .gbet-hero__bal,
  .gbet-hero__guide,
  .gbet-hero__bets {
    padding: 0.48rem 0.75rem;
    font-size: 0.74rem;
  }

  .gbet-block__head h2,
  .gbet-sport__head h2 {
    font-size: 1.12rem;
  }

  .gbet-modes--sport {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .gbet-modes--sport .gbet-mode {
    min-width: 0;
    width: 100%;
    padding: 0.55rem 0.35rem;
    justify-items: center;
    text-align: center;
  }

  .gbet-modes--sport .gbet-mode__lab {
    font-size: 0.65rem;
  }

  .gbet-modes--sport .gbet-mode__n {
    font-size: 0.95rem;
  }

  .gbet-top__rail {
    grid-auto-columns: minmax(78vw, 300px);
    gap: 0.65rem;
    padding-bottom: 0.2rem;
    margin: 0 -0.15rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .gbet-top__rail > * {
    scroll-snap-align: start;
  }

  .gbet__card {
    padding: 0.8rem 0.75rem 0.85rem;
    border-radius: 14px;
  }

  .gbet__card:hover {
    transform: none;
  }

  /* На телефоне оставляем матч в одну строку: П1 · счёт · П2 */
  .gbet__teams {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.4rem;
    margin-bottom: 0.65rem;
  }

  .gbet-team {
    gap: 0.4rem;
  }

  .gbet-team--away {
    flex-direction: row-reverse;
    text-align: right;
  }

  .gbet-team__logo {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .gbet-team__name,
  .gbet-team strong {
    font-size: 0.78rem !important;
    -webkit-line-clamp: 2;
  }

  .gbet__center {
    order: 0;
    flex-direction: column;
    min-width: 3.6rem;
    padding: 0.2rem 0.35rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
  }

  .gbet__score,
  .gbet__when {
    font-size: 1.05rem;
  }

  .gbet__vs {
    font-size: 0.58rem;
  }

  .gbet__meta {
    font-size: 0.62rem;
    margin-bottom: 0.5rem;
  }

  .gbet-coefs,
  .gbet-coefs--2,
  .gbet-coefs--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.4rem;
  }

  .gbet-coefs--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .gbet-coef {
    min-height: 54px;
    padding: 0.45rem 0.5rem 0.5rem;
    border-radius: 12px;
  }

  .gbet-coef:hover {
    transform: none;
  }

  .gbet-coef__lab {
    font-size: 0.62rem;
  }

  .gbet-coef__val {
    font-size: 1.02rem;
  }

  .gbet-mkt-row {
    gap: 0.35rem;
    margin-bottom: 0.45rem;
  }

  .gbet-mkt__btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.72rem;
    min-height: 36px;
  }

  .gbet-round {
    padding: 0.45rem;
    border-radius: 12px;
  }

  .gbet-round__row,
  .gbet-round__row--3,
  .gbet-round__row--1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .gbet-round__row--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gbet-round .gbet-coef {
    min-height: 48px;
  }

  .gbet-maps {
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
  }

  .gbet-map,
  .gbet-bo {
    font-size: 0.62rem;
    padding: 0.18rem 0.4rem;
  }

  .gbet-news__card {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 0;
  }

  .gbet-news__media {
    min-height: 72px;
  }

  .gbet-news__body {
    padding: 0.55rem 0.65rem 0.6rem;
  }

  .gbet-news__card h3 {
    font-size: 0.86rem;
  }

  .gbet-news__card p {
    font-size: 0.72rem;
    -webkit-line-clamp: 2;
  }

  .gbet-guide__panel {
    width: min(100%, 100vw - 1rem);
    max-height: min(88vh, 720px);
    border-radius: 14px;
  }

  .gbet-guide {
    padding: 0.5rem;
    align-items: end;
  }

  /* Купон — нижний sheet на весь экран */
  body.is-ginabet .gchat {
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .gbet-slip {
    right: calc(0.75rem + 64px);
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .gbet-slip__fab {
    width: 52px;
    height: 52px;
  }

  .gbet-slip__panel {
    position: fixed;
    left: 0.5rem;
    right: 0.5rem;
    bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
    width: auto;
    height: min(68vh, 520px);
    max-height: min(68vh, 520px);
    border-radius: 16px;
  }

  .gbet-coupon__stake input,
  .gbet-btn {
    min-height: 44px;
    font-size: 0.95rem;
  }

  .gbet-tip__bubble,
  .gbet-tip-float {
    width: min(260px, calc(100vw - 1.5rem));
  }
}

@media (max-width: 420px) {
  .gbet-hero__meta {
    width: 100%;
  }

  .gbet-hero__bal {
    flex: 1 1 auto;
  }

  .gbet-coefs--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gbet-coefs--3 .gbet-coef:last-child:nth-child(3) {
    grid-column: 1 / -1;
  }

  .gbet-team__name,
  .gbet-team strong {
    font-size: 0.72rem !important;
  }

  .gbet-slip {
    right: calc(0.55rem + 58px);
  }
}

@media (hover: none) {
  .gbet-coef:hover,
  .gbet__card:hover {
    transform: none;
  }
}
