/* GGBET home layout (preview) */

@font-face {
  font-family: "Sora";
  src: local("Sora");
  font-weight: 400 900;
  font-style: normal;
}

:root {
  --ws-surface-dark: #110e1b;
  --ws-surface-middle: #221c36;
  --ws-surface-light: #30284c;
  --ws-surface-input: #3f1c60;
  --ws-grey-500: #9ca3af;
  --ws-purple: #AE5FFF;
  --ws-purple-hover: #c1b3db;
  --ws-green: #00eda6;
  --ws-violet: #c4b5fd;
  --ws-header-h: 64px;
  --ws-radius-xs: 4px;
  --ws-radius-sm: 8px;
  --ws-radius-md: 12px;
  --ws-radius-lg: 16px;
  --ws-radius-pill: 999px;
  --ws-radius-round: 50%;
}

/* Header — WinSpirit (scoped to override legacy styles.css) */
.ws-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--ws-header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(48, 40, 76, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-header__bar {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: var(--ws-max, 1400px);
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.ws-header .ws-burger {
  display: none;
  grid-column: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ws-header .ws-burger:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ws-header__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  grid-column: 1;
}

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

.ws-mobile-menu__link--accent {
  color: var(--ws-green);
}

.ws-header__logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ws-header__logo-text {
  width: 3.125rem;
  height: 24px;
  margin-left: 4px;
  object-fit: contain;
}

.ws-header__nav {
  display: none;
  align-items: stretch;
  gap: 20px;
  height: 100%;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.ws-header__nav::-webkit-scrollbar {
  display: none;
}

.ws-header__nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.ws-header__nav-link:hover {
  color: #fff;
}

.ws-header__nav-link--accent {
  color: var(--ws-green);
}

.ws-header__nav-link--vip {
  gap: 4px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.ws-header__vip-icon {
  flex-shrink: 0;
}

.ws-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  grid-column: 3;
}

.ws-header__auth {
  position: relative;
  display: none;
  align-items: center;
  gap: 12px;
}

.ws-header__login,
.ws-header__signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, background 0.15s ease;
}

.ws-header__login {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.ws-header__login:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ws-header__signup {
  color: #110e1b;
  background: var(--ws-cta-gradient);
}

.ws-header__signup:hover {
  filter: brightness(1.06);
  color: #110e1b;
}

.ws-header__signup img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ws-header__chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease;
}

.ws-header__chat:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Welcome floats — fixed to viewport right */
.ws-welcome-float {
  display: none;
}

@media (min-width: 1100px) {
  .ws-header__bar {
    grid-template-columns: max-content minmax(0, 1fr) auto;
    gap: 20px;
    padding: 0 24px;
  }

  .ws-header .ws-burger {
    display: none;
  }

  .ws-header__logo {
    grid-column: 1;
  }

  .ws-header__nav {
    display: flex;
    grid-column: 2;
  }

  .ws-header__actions {
    grid-column: 3;
  }

  .ws-header__auth {
    display: flex;
  }

  .ws-welcome-float {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: fixed;
    top: calc(var(--ws-header-h, 64px) + 16px);
    right: 16px;
    z-index: 90;
    gap: 12px;
    width: min(22rem, calc(100vw - 32px));
    max-width: 22rem;
    pointer-events: none;
  }

  .ws-welcome-float__banner {
    pointer-events: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 1099px) {
  .ws-header__bar {
    grid-template-columns: max-content max-content 1fr;
  }

  .ws-header .ws-burger {
    display: inline-flex;
  }

  .ws-header__logo {
    grid-column: 2;
  }

  .ws-header__actions {
    grid-column: 3;
  }

  .ws-header__signup {
    display: inline-flex;
    min-height: 36px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .ws-header__auth {
    display: flex;
  }

  .ws-header__login {
    display: none;
  }

  /* styles.css adds space for a removed bottom mobile nav */
  body.niche-gambling {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .ws-header__bar {
    padding: 0 12px;
    gap: 8px;
  }

  .ws-header__logo-mark {
    width: 36px;
    height: 36px;
  }

  .ws-header__signup {
    padding: 6px 10px;
    font-size: 12px;
  }

  .ws-header__signup img {
    width: 20px;
    height: 20px;
  }
}

/* Sections */
.ws-section {
  padding: 0;
  max-width: none;
  margin: 0 0 var(--ws-block-gap);
}

.ws-hero-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ws-carousel__bullet {
    transition: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ws-matws-card__tournament img {
  border-radius: var(--ws-radius-xs);
}

.ws-matws-card__body {
  padding: 16px 16px 0;
}

.ws-matws-card__odds {
  display: flex;
  gap: 4px;
  padding: 16px;
}

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

.ws-matws-card__live {
  color: var(--ws-green);
  font-weight: 600;
}

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

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

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

.ws-matws-card__team-col {
  flex-direction: column;
  text-align: center;
  flex: 1;
}

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

.ws-matws-card__team-col img {
  width: 40px;
  height: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ws-promo-card__title strong {
  color: var(--ws-purple);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ws-app-banner__title span {
  color: var(--ws-purple);
}

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

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

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

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

/* Layout + sidebar */
.ws-layout {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - var(--ws-header-h));
}

.ws-shell {
  flex: 1;
  min-width: 0;
}

.ws-sidebar {
  --ws-sidebar-w: 260px;
  position: relative;
  flex: 0 0 var(--ws-sidebar-w);
  width: var(--ws-sidebar-w);
  z-index: 90;
}

.ws-sidebar__backdrop {
  display: none;
}

.ws-sidebar__panel {
  position: sticky;
  top: var(--ws-header-h);
  display: flex;
  flex-direction: column;
  width: var(--ws-sidebar-w);
  height: calc(100vh - var(--ws-header-h));
  background: var(--ws-surface-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.ws-sidebar__top {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 8px 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-sidebar__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: var(--ws-radius-sm);
  background: transparent;
  color: var(--ws-grey-500);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.ws-sidebar__toggle:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.ws-sidebar__tabs {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 0;
  padding: 4px;
  background: var(--ws-surface-middle);
  border-radius: var(--ws-radius-sm);
}

.ws-sidebar__tab {
  flex: 1;
  min-width: 0;
  padding: 8px 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: var(--ws-radius-xs);
  transition: background 0.15s, color 0.15s;
}

.ws-sidebar__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.ws-sidebar__tab--active {
  background: var(--ws-surface-input);
  color: #fff;
}

.ws-sidebar__content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 12px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.ws-sidebar__content::-webkit-scrollbar {
  width: 4px;
}

.ws-sidebar__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--ws-radius-pill);
}

.ws-sidebar__search-wrap {
  margin-bottom: 12px;
}

.ws-sidebar__search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ws-radius-sm);
  color: var(--ws-grey-500);
}

.ws-sidebar__search:focus-within {
  border-color: rgba(174, 95, 255, 0.5);
}

.ws-sidebar__search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.ws-sidebar__search input::placeholder {
  color: var(--ws-grey-500);
}

.ws-sidebar__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.ws-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--ws-radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s;
}

.ws-sidebar__btn--deposit {
  border: 0;
  background: linear-gradient(180deg, #AE5FFF 0%, #c1b3db 100%);
  color: #110e1b;
}

.ws-sidebar__btn--deposit:hover {
  opacity: 0.92;
  color: #110e1b;
}

.ws-sidebar__btn--refer {
  border: 1px solid rgba(174, 95, 255, 0.6);
  background: transparent;
  color: var(--ws-purple);
}

.ws-sidebar__btn--refer:hover {
  background: rgba(174, 95, 255, 0.08);
  color: var(--ws-purple-hover);
}

.ws-sidebar__calendar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: var(--ws-surface-middle);
  border-radius: var(--ws-radius-sm);
  text-decoration: none;
  transition: background 0.15s;
}

.ws-sidebar__calendar:hover {
  background: var(--ws-surface-light);
}

.ws-sidebar__calendar-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ws-sidebar__calendar img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ws-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-sidebar__nav--bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: var(--ws-radius-sm);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.15s;
}

.ws-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.ws-sidebar__link-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--ws-grey-500);
}

.ws-sidebar__link-icon--img img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.ws-sidebar__link-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-sidebar__link--badge .ws-sidebar__link-label {
  flex: 1 1 auto;
}

.ws-sidebar__badge {
  flex-shrink: 0;
  padding: 2px 6px;
  background: rgba(0, 237, 166, 0.12);
  color: var(--ws-green);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--ws-radius-xs);
  white-space: nowrap;
}

.ws-sidebar__group {
  margin-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-sidebar__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 10px 6px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.ws-sidebar__chevron {
  flex-shrink: 0;
  color: var(--ws-grey-500);
  transition: transform 0.2s;
}

.ws-sidebar__group.is-open .ws-sidebar__chevron {
  transform: rotate(180deg);
}

.ws-sidebar__group-panel {
  display: none;
  padding-bottom: 4px;
}

.ws-sidebar__group.is-open .ws-sidebar__group-panel {
  display: block;
}

.ws-sidebar__promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 4px 4px;
}

.ws-sidebar__promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  min-height: 48px;
  padding: 10px;
  background: var(--ws-surface-light);
  border-radius: var(--ws-radius-sm);
  color: var(--ws-purple);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.ws-sidebar__promo-icon:hover {
  background: var(--ws-surface-input);
  transform: translateY(-1px);
  color: var(--ws-purple-hover);
}

.ws-sidebar__lang {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-sidebar__lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ws-radius-sm);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.ws-sidebar__lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.ws-sidebar__lang-flag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 14px;
  background: linear-gradient(180deg, #012169 0%, #012169 50%, #e4002b 50%, #e4002b 100%);
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border-radius: 2px;
}

.ws-sidebar__lang-label {
  flex: 1;
  min-width: 0;
}

body.ws-sidebar-collapsed .ws-sidebar {
  flex-basis: 0;
  width: 0;
  overflow: hidden;
}

body.ws-sidebar-collapsed .ws-sidebar__panel {
  transform: translateX(-100%);
}

@media (max-width: 899px) {
  .ws-sidebar {
    position: fixed;
    top: var(--ws-header-h);
    left: 0;
    bottom: 0;
    flex: none;
    width: var(--ws-sidebar-w);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 200;
  }

  body.ws-sidebar-open .ws-sidebar {
    transform: translateX(0);
  }

  .ws-sidebar__backdrop {
    display: block;
    position: fixed;
    inset: var(--ws-header-h) 0 0 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    pointer-events: none;
  }

  body.ws-sidebar-open .ws-sidebar__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .ws-sidebar__panel {
    position: relative;
    top: 0;
    height: 100%;
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.35);
  }
}

body.ws-sidebar-open {
  overflow: hidden;
}

/* Footer styles: see brand.css (.ws-footer) */

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

body:has(.ws-header) {
  --ws-header-h: 64px;
}

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

body:has(.ws-header) .ws-main {
  background: var(--ws-surface-dark);
  padding: 32px 32px 0;
}

@media (max-width: 767px) {
  body:has(.ws-header) .ws-main {
    padding: 16px 16px 0;
  }
}

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

/* Scrollbars: hide on carousels, brand thin on vertical panes */
html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(174, 95, 255, 0.45) rgba(17, 14, 27, 0.6);
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: rgba(17, 14, 27, 0.6);
}

html::-webkit-scrollbar-thumb {
  background: rgba(174, 95, 255, 0.45);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(174, 95, 255, 0.65);
  background-clip: padding-box;
}

.ws-home-banner__list,
.ws-advantages__list,
.games-list,
.ws-games__list,
.ws-promotions__list,
.ws-providers__list,
.ws-categories__tabs,
.ws-bets__tabs,
.ws-bet-ticker__tabs,
.ws-header__nav,
.ws-carousel__track,
.ws-quick-nav,
.ws-providers-scroll,
.ws-promo-scroll,
.ws-matches-scroll,
.ws-footer__awards,
.ws-footer__payments,
.ws-footer__partners,
.ws-footer__overviews {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ws-home-banner__list::-webkit-scrollbar,
.ws-advantages__list::-webkit-scrollbar,
.games-list::-webkit-scrollbar,
.ws-games__list::-webkit-scrollbar,
.ws-promotions__list::-webkit-scrollbar,
.ws-providers__list::-webkit-scrollbar,
.ws-categories__tabs::-webkit-scrollbar,
.ws-bets__tabs::-webkit-scrollbar,
.ws-bet-ticker__tabs::-webkit-scrollbar,
.ws-header__nav::-webkit-scrollbar,
.ws-carousel__track::-webkit-scrollbar,
.ws-quick-nav::-webkit-scrollbar,
.ws-providers-scroll::-webkit-scrollbar,
.ws-promo-scroll::-webkit-scrollbar,
.ws-matches-scroll::-webkit-scrollbar,
.ws-footer__awards::-webkit-scrollbar,
.ws-footer__payments::-webkit-scrollbar,
.ws-footer__partners::-webkit-scrollbar,
.ws-footer__overviews::-webkit-scrollbar {
  display: none;
}

.ws-mobile-menu__body,
.ws-bets__table-wrap {
  scrollbar-width: thin;
  scrollbar-color: rgba(174, 95, 255, 0.4) transparent;
}

.ws-mobile-menu__body::-webkit-scrollbar,
.ws-bets__table-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.ws-mobile-menu__body::-webkit-scrollbar-track,
.ws-bets__table-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.ws-mobile-menu__body::-webkit-scrollbar-thumb,
.ws-bets__table-wrap::-webkit-scrollbar-thumb {
  background: rgba(174, 95, 255, 0.4);
  border-radius: 999px;
}

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