/* GOLDBETGLOBAL Template - style.css */
/* NO :root blocks - all values hardcoded */
/* Prefix: gb- */
/* Mobile-first */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #0D0F14;
  color: #E8ECF4;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #E8ECF4;
  text-decoration: none;
}

button {
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== UTILITY ========== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== HEADER ========== */
.gb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #13152A;
  border-bottom: 1px solid #1F2744;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

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

.gb-hamburger {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #E8ECF4;
  font-size: 22px;
  border-radius: 8px;
  transition: background 0.2s;
}

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

.gb-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: #DFEB2B;
  text-transform: uppercase;
}

.gb-logo-flag {
  height: 16px;
  flex-shrink: 0;
}

.gb-logo img {
  display: inline-block;
}

.gb-logo-icon {
  display: none;
}

.gb-header-search {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: rgba(148,160,210,0.7);
  font-size: 18px;
  border-radius: 8px;
  transition: background 0.2s;
}

.gb-header-search:hover {
  background: rgba(255,255,255,0.08);
}

.gb-header-spacer {
  flex: 1;
}

.gb-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.gb-btn-ghost {
  height: 40px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(148,160,210,0.3);
  border-radius: 8px;
  color: #E8ECF4;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  min-width: 45px;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb-btn-ghost:hover {
  border-color: #DFEB2B;
  background: rgba(223,235,43,0.05);
}

.gb-btn-primary {
  height: 40px;
  padding: 0 20px;
  background: #DFEB2B;
  border: none;
  border-radius: 8px;
  color: #0D0F14;
  font-size: 14px;
  font-weight: 700;
  transition: filter 0.2s;
  min-width: 45px;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gb-lang-select {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid #1F2744;
  border-radius: 8px;
  color: #E8ECF4;
  font-size: 13px;
  font-weight: 700;
  padding: 0 10px;
  gap: 6px;
  min-width: auto;
}

.gb-header-chat {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: rgba(148,160,210,0.7);
  font-size: 18px;
  border-radius: 8px;
}

/* Mobile header: show login/register/lang, hide search & chat */
.gb-header-right .gb-btn-ghost,
.gb-header-right .gb-btn-primary,
.gb-header-right .gb-lang-select {
  display: flex;
}

.gb-header-right .gb-header-chat {
  display: none;
}

.gb-header-search {
  display: none;
}

/* Mobile: compact buttons, lang = flag only */
@media (max-width: 767px) {
  .gb-btn-ghost {
    padding: 0 10px;
    font-size: 12px;
    height: 36px;
  }

  .gb-btn-primary {
    padding: 0 12px;
    font-size: 12px;
    height: 36px;
  }

  .gb-lang-select {
    height: 36px;
    padding: 0 8px;
    gap: 0;
  }

  .gb-lang-select span,
  .gb-lang-select svg {
    display: none;
  }

  .gb-header {
    gap: 4px;
    padding: 0 8px;
  }

  .gb-header-left {
    gap: 4px;
  }

  .gb-header-right {
    gap: 6px;
  }

  .gb-logo-text {
    display: none !important;
  }

  .gb-logo-icon {
    display: inline-block !important;
  }

  .gb-logo-flag {
    height: 14px !important;
  }

  .gb-header-left {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

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

@media (min-width: 768px) {
  .gb-header-search {
    display: flex;
  }

  .gb-header-right .gb-header-chat {
    display: flex;
  }
}

/* ========== SIDEBAR ========== */
.gb-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.gb-sidebar-overlay.gb-active {
  opacity: 1;
  visibility: visible;
}

.gb-sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 68px;
  background: #171D3A;
  border-right: 1px solid #1F2744;
  z-index: 950;
  overflow-y: auto;
  overflow-x: hidden;
  transition: width 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
}

.gb-sidebar.gb-visible {
  transform: translateX(0);
}

.gb-sidebar.gb-expanded {
  width: 240px;
}

@media (min-width: 1024px) {
  .gb-sidebar {
    transform: translateX(0);
  }

  .gb-sidebar-overlay {
    display: none;
  }
}

.gb-sidebar-nav {
  flex: 1;
  padding: 8px 0;
}

.gb-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 22px;
  color: rgba(148,160,210,0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.gb-sidebar-item:hover {
  background: rgba(255,255,255,0.05);
  color: #E8ECF4;
}

.gb-sidebar-item.gb-active-item {
  color: #DFEB2B;
}

.gb-sidebar-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.gb-sidebar-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.gb-sidebar-label {
  opacity: 0;
  transition: opacity 0.2s;
  flex: 1;
}

.gb-sidebar.gb-expanded .gb-sidebar-label {
  opacity: 1;
}

.gb-sidebar-badge {
  background: #1DB954;
  color: #0D0F14;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}

.gb-sidebar.gb-expanded .gb-sidebar-badge {
  opacity: 1;
}

.gb-sidebar-chevron {
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
  margin-left: auto;
}

.gb-sidebar.gb-expanded .gb-sidebar-chevron {
  opacity: 1;
}

.gb-sidebar-sep {
  height: 1px;
  background: #1F2744;
  margin: 8px 16px;
}

.gb-sidebar-item.gb-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.gb-sidebar-bottom {
  padding: 12px 16px;
  padding-bottom: 76px;
  border-top: 1px solid #1F2744;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 1024px) {
  .gb-sidebar-bottom {
    padding-bottom: 12px;
  }
}

.gb-sidebar-bottom-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 6px;
  background: none;
  color: rgba(148,160,210,0.7);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
  transition: background 0.2s;
}

.gb-sidebar-bottom-item:hover {
  background: rgba(255,255,255,0.05);
}

.gb-sidebar-app-btn {
  display: none;
  height: 40px;
  background: rgba(223,235,43,0.1);
  border: 1px solid rgba(223,235,43,0.3);
  border-radius: 8px;
  color: #DFEB2B;
  font-size: 13px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  white-space: nowrap;
}

.gb-sidebar.gb-expanded .gb-sidebar-app-btn {
  display: flex;
}

.gb-sidebar-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  overflow: hidden;
}

.gb-sidebar-toggle-row .gb-theme-toggle {
  display: none;
}

.gb-sidebar.gb-expanded .gb-sidebar-toggle-row {
  justify-content: space-between;
}

.gb-sidebar.gb-expanded .gb-sidebar-toggle-row .gb-theme-toggle {
  display: block;
}

.gb-theme-toggle {
  width: 42px;
  height: 24px;
  background: #1F2744;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.gb-theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #DFEB2B;
  border-radius: 50%;
  transition: transform 0.2s;
}

/* ========== SIDEBAR PROMO BUTTONS ========== */
.gb-sidebar-top-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.gb-sidebar:not(.gb-expanded) .gb-sidebar-top-btns {
  padding: 8px 0;
  align-items: center;
}

.gb-sidebar:not(.gb-expanded) .gb-sidebar-promo-btn {
  width: 44px;
  min-height: 44px;
  border-radius: 8px;
  padding: 0;
  justify-content: center;
  overflow: hidden;
}

.gb-sidebar:not(.gb-expanded) .gb-promo-label {
  display: none;
}

.gb-sidebar:not(.gb-expanded) .gb-promo-img {
  position: static;
  height: 28px;
}

.gb-sidebar-promo-btn {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6px 10px;
}

.gb-sidebar-promo-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.gb-promo-yellow {
  background: #584A0A;
}

.gb-promo-yellow::before {
  background: conic-gradient(from 0deg, #EBD044, #584A0A, #EBD044);
}

.gb-promo-purple {
  background: #411B47;
}

.gb-promo-purple::before {
  background: conic-gradient(from 0deg, #CB5AFF, #411B47, #CB5AFF);
}

.gb-promo-label {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  z-index: 1;
}

.gb-promo-img {
  height: 36px;
  position: absolute;
  right: 8px;
  z-index: 1;
}

/* ========== MAIN CONTENT ========== */
.gb-main {
  padding: 16px;
  padding-bottom: 80px; /* space for mobile nav */
  min-height: calc(100vh - 60px);
}

@media (min-width: 1024px) {
  .gb-main {
    margin-left: 68px;
    padding-bottom: 24px;
    transition: margin-left 0.3s;
  }

  .gb-main.gb-shifted {
    margin-left: 240px;
  }
}

/* ========== HERO ========== */
.gb-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  background-color: #13152A;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

/* Dark overlay for text readability over background image */
.gb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 21, 42, 0.3) 0%,
    rgba(19, 21, 42, 0.55) 50%,
    rgba(19, 21, 42, 0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.gb-hero-h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px rgba(255,255,255,0.25), 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

.gb-hero-logo {
  display: block;
  margin: 0 auto 20px;
  height: 56px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .gb-hero {
    padding: 24px 16px;
    background-position: center center;
  }

  .gb-hero-h1 { order: 1; }
  .gb-hero-logo { order: 2; }
  .gb-bonus-card { order: 3; }
  .gb-deposit-card { order: 4; }

  .gb-hero::before {
    background: linear-gradient(
      180deg,
      rgba(19, 21, 42, 0.45) 0%,
      rgba(19, 21, 42, 0.7) 50%,
      rgba(19, 21, 42, 0.85) 100%
    );
  }

  .gb-hero-logo {
    height: 40px;
    margin-bottom: 8px;
  }

  .gb-hero-h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .gb-deposit-input-row {
    flex-wrap: nowrap;
    max-width: 100%;
  }

  .gb-deposit-amount {
    min-width: 0;
    flex: 1 1 0;
  }

  .gb-deposit-currency {
    width: auto;
    min-width: 56px;
    padding: 0 8px;
    flex: 0 0 auto;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .gb-hero {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .gb-hero-h1,
  .gb-hero-logo {
    width: 100%;
  }

  .gb-deposit-card,
  .gb-bonus-card {
    flex: 1;
  }
}

/* Deposit card */
.gb-deposit-card {
  background: rgba(23, 29, 58, 0.85);
  border: 1px solid rgba(31, 39, 68, 0.6);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.gb-deposit-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(148,160,210,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.gb-deposit-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.gb-deposit-amount {
  flex: 1;
  height: 52px;
  background: #0D0F14;
  border: 1px solid #1F2744;
  border-radius: 10px;
  color: #E8ECF4;
  font-size: 18px;
  font-weight: 700;
  padding: 0 16px;
  font-family: 'Raleway', sans-serif;
}

.gb-deposit-amount::placeholder {
  color: rgba(148,160,210,0.4);
}

.gb-deposit-currency {
  width: 80px;
  height: 52px;
  background: #0D0F14;
  border: 1px solid #1F2744;
  border-radius: 10px;
  color: #E8ECF4;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.gb-deposit-btn {
  width: 100%;
  height: 52px;
  background: #DFEB2B;
  border: none;
  border-radius: 10px;
  color: #0D0F14;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  transition: filter 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gb-deposit-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gb-payment-icon {
  height: 20px;
  opacity: 0.6;
}

.gb-payment-more {
  width: 42px;
  height: 28px;
  opacity: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(148,160,210,0.5);
  font-weight: 700;
}

.gb-promo-link {
  color: rgba(148,160,210,0.5);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.gb-promo-link:hover {
  color: #DFEB2B;
}

/* Bonus card */
.gb-bonus-card {
  background: url('/assets/images/goldbet/goldbet-hero-mini.webp') center/cover no-repeat;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  isolation: isolate;
}

.gb-bonus-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: -1;
}

.gb-bonus-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  z-index: -1;
}

.gb-bonus-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DFEB2B;
}

.gb-bonus-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.gb-bonus-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.gb-bonus-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.gb-bonus-badge {
  background: #DFEB2B;
  color: #0D0F14;
  padding: 2px 12px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 22px;
}

/* Second line (amount) — larger */
.gb-bonus-line:nth-of-type(2) .gb-bonus-text {
  font-size: 28px;
  color: #DFEB2B;
}

.gb-bonus-line:nth-of-type(2) .gb-bonus-badge {
  font-size: 28px;
}

/* Third line (FS) — outlined badge */
.gb-bonus-line:nth-of-type(3) .gb-bonus-badge {
  background: transparent;
  border: 2px solid #DFEB2B;
  color: #DFEB2B;
  font-style: italic;
}

/* ========== SEARCH BAR ========== */
.gb-search-bar {
  position: relative;
  margin-bottom: 24px;
}

.gb-search-input {
  width: 100%;
  height: 48px;
  background: #171D3A;
  border: 1px solid #1F2744;
  border-radius: 12px;
  padding: 0 16px 0 44px;
  color: #E8ECF4;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}

.gb-search-input::placeholder {
  color: rgba(148,160,210,0.4);
}

.gb-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(148,160,210,0.5);
  font-size: 16px;
  pointer-events: none;
}

/* ========== CONTENT PLACEHOLDER ========== */
.gb-section {
  margin-bottom: 32px;
}

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

.gb-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #E8ECF4;
}

.gb-section-link {
  font-size: 13px;
  font-weight: 600;
  color: #DFEB2B;
}

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

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

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

@media (min-width: 1200px) {
  .gb-placeholder-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.gb-placeholder-card {
  aspect-ratio: 3/4;
  background: #171D3A;
  border: 1px solid #1F2744;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(148,160,210,0.3);
  font-size: 12px;
  font-weight: 600;
}

/* ========== FOOTER ========== */
.gb-footer {
  background: #171D3A;
  border-top: 1px solid #1F2744;
  padding: 40px 16px 24px;
}

@media (min-width: 1024px) {
  .gb-footer {
    margin-left: 68px;
  }

  .gb-footer.gb-shifted {
    margin-left: 240px;
  }
}

.gb-footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .gb-footer-top {
    flex-direction: row;
    gap: 40px;
  }
}

.gb-footer-brand {
  flex-shrink: 0;
}

.gb-footer-logo {
  height: 32px;
  margin-bottom: 16px;
}

.gb-footer-socials {
  display: flex;
  gap: 10px;
}

.gb-social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.gb-social-icon:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.05);
}

.gb-social-icon svg {
  width: 28px;
  height: 28px;
}

.gb-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  flex: 1;
}

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

.gb-footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #E8ECF4;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gb-footer-col-link {
  display: block;
  color: rgba(148,160,210,0.7);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s;
}

.gb-footer-col-link:hover {
  color: #DFEB2B;
}

.gb-footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #1F2744;
  border-bottom: 1px solid #1F2744;
  margin-bottom: 20px;
}

.gb-badge-link { display: inline-flex; align-items: center; transition: opacity .2s; }
a.gb-badge-link:hover { opacity: .75; }

.gb-badge {
  height: 40px;
  display: block;
  object-fit: contain;
}

.gb-footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gb-footer-payment {
  height: 24px;
  display: block;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.gb-footer-payment:hover {
  opacity: 1;
}

.gb-footer-copy {
  font-size: 12px;
  color: rgba(148,160,210,0.4);
  line-height: 1.6;
}

/* ========== MOBILE BOTTOM NAV ========== */
.gb-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #13152A;
  border-top: 1px solid #1F2744;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  padding: 0 4px;
}

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

.gb-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 45px;
  min-height: 45px;
  color: rgba(148,160,210,0.6);
  font-size: 10px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s;
}

.gb-mobile-nav-item:hover,
.gb-mobile-nav-item.gb-active-item {
  color: #DFEB2B;
}

.gb-mobile-nav-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb-mobile-nav-icon svg {
  width: 20px;
  height: 20px;
}

.gb-mobile-nav-label {
  font-size: 10px;
  font-weight: 600;
}

.gb-mobile-nav-center .gb-mobile-nav-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2D6FE8, #06A8C4);
  border-radius: 50%;
  margin-top: -20px;
  box-shadow: 0 4px 12px rgba(45,111,232,0.4);
}

.gb-mobile-nav-center .gb-mobile-nav-icon svg {
  color: #fff;
}

.gb-mobile-nav-center {
  color: rgba(148,160,210,0.6);
}

/* ========== SCROLLBAR ========== */
.gb-sidebar::-webkit-scrollbar {
  width: 4px;
}

.gb-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.gb-sidebar::-webkit-scrollbar-thumb {
  background: #1F2744;
  border-radius: 4px;
}

/* ========== FAQ ========== */
.gb-faq { display: flex; flex-direction: column; gap: 8px; }
.gb-faq-item { background: #171D3A; border: 1px solid #1F2744; border-radius: 12px; transition: border-color 0.2s; }
.gb-faq-item[open] { border-color: rgba(223,235,43,0.3); }
.gb-faq-question { padding: 16px 20px; font-size: 15px; font-weight: 700; color: #E8ECF4; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; min-height: 45px; }
.gb-faq-question::-webkit-details-marker { display: none; }
.gb-faq-question::after { content: '▾'; color: rgba(148,160,210,0.5); transition: transform 0.2s; font-size: 14px; flex-shrink: 0; margin-left: 12px; }
.gb-faq-item[open] .gb-faq-question::after { transform: rotate(180deg); color: #DFEB2B; }
.gb-faq-answer { padding: 12px 0 16px; font-size: 14px; color: rgba(148,160,210,0.7); line-height: 1.6; border-top: 1px solid #1F2744; margin: 0 20px; }

/* ========== SCROLL TO TOP ========== */
.gb-scroll-top {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(19, 21, 42, 0.85);
  border: 1px solid #1F2744;
  color: #E8ECF4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(8px);
}

.gb-scroll-top.gb-visible {
  opacity: 1;
  visibility: visible;
}

.gb-scroll-top:hover {
  background: rgba(31, 39, 68, 0.95);
}

/* ========== LANGUAGE MODAL ========== */
.gb-lang-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(4px);
}

.gb-lang-overlay.gb-active {
  opacity: 1;
  visibility: visible;
}

.gb-lang-modal {
  background: #171D3A;
  border: 1px solid #1F2744;
  border-radius: 16px;
  width: 90%;
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
}

.gb-lang-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.gb-lang-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #E8ECF4;
}

.gb-lang-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 8px;
  color: rgba(148,160,210,0.7);
  cursor: pointer;
  transition: background 0.2s;
}

.gb-lang-modal-close:hover {
  background: rgba(255,255,255,0.12);
}

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

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

.gb-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  color: #E8ECF4;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.gb-lang-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: #1F2744;
}

.gb-lang-item.gb-lang-active {
  background: rgba(123,47,255,0.25);
  border-color: rgba(123,47,255,0.5);
}

.gb-lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ========== GO OVERLAY ========== */
.go-link { cursor: pointer; }

#go-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}

#go-overlay.go-overlay--visible {
  display: flex;
}

.go-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top-color: #DFEB2B;
  border-radius: 50%;
  animation: go-spin 0.8s linear infinite;
}

@keyframes go-spin {
  to { transform: rotate(360deg); }
}

/* ========== CONTENT TYPOGRAPHY ========== */
.gb-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: #E8ECF4;
  margin: 32px 0 16px;
  line-height: 1.3;
}

.gb-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #E8ECF4;
  margin: 24px 0 12px;
  line-height: 1.35;
}

.gb-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 236, 244, 0.82);
  margin: 0 0 16px;
}

.gb-content ul,
.gb-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.gb-content ul {
  list-style: disc;
}

.gb-content ol {
  list-style: decimal;
}

.gb-content li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 236, 244, 0.82);
  margin-bottom: 6px;
}

.gb-content a {
  color: #DFEB2B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.gb-content a:hover {
  opacity: 0.8;
}

.gb-content strong {
  font-weight: 700;
  color: #E8ECF4;
}

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

.gb-content th {
  background: rgba(31, 39, 68, 0.6);
  color: #E8ECF4;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid #1F2744;
}

.gb-content td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(31, 39, 68, 0.4);
  color: rgba(232, 236, 244, 0.82);
}

.gb-content tr:last-child td {
  border-bottom: none;
}

/* ========== SNIPPET: CookieBanner (GDPR) ========== */
.cb-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 4000; }
.cb-banner {
  position: fixed; bottom: 1rem; left: 1rem; z-index: 4001;
  max-width: 380px; padding: 1.25rem; border-radius: 12px;
  background: #171D3A; color: #E8ECF4; font-family: 'Raleway', sans-serif;
  font-size: .875rem; line-height: 1.5; box-shadow: 0 4px 24px rgba(0,0,0,.5);
  border: 1px solid #1F2744;
}
.cb-text { margin: 0 0 1rem; }
.cb-text a { color: #DFEB2B; text-decoration: underline; }
.cb-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cb-btn { border: none; border-radius: 8px; padding: .5rem 1rem; font-size: .8125rem; font-weight: 700; cursor: pointer; transition: opacity .2s; font-family: 'Raleway', sans-serif; }
.cb-btn:hover { opacity: .85; }
.cb-btn--accept, .cb-btn--save { background: #DFEB2B; color: #0D0F14; }
.cb-btn--reject { background: transparent; color: #E8ECF4; border: 1px solid #1F2744; }
.cb-btn--settings { background: transparent; color: #DFEB2B; padding: .5rem .25rem; text-decoration: underline; }
.cb-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 4002; width: 90%; max-width: 480px; max-height: 85vh;
  overflow-y: auto; border-radius: 12px; padding: 1.5rem;
  background: #171D3A; color: #E8ECF4; font-family: 'Raleway', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); border: 1px solid #1F2744;
}
.cb-modal__title { margin: 0 0 .5rem; font-size: 1.125rem; }
.cb-modal__desc { margin: 0 0 1.25rem; font-size: .8125rem; opacity: .8; line-height: 1.5; }
.cb-categories { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.cb-cat { border: 1px solid #1F2744; border-radius: 8px; padding: .75rem 1rem; }
.cb-cat__header { display: flex; justify-content: space-between; align-items: center; }
.cb-cat__name { font-weight: 600; font-size: .875rem; }
.cb-cat__always { font-size: .75rem; opacity: .6; }
.cb-cat__desc { margin: .375rem 0 0; font-size: .75rem; opacity: .7; line-height: 1.4; }
.cb-modal__actions { display: flex; gap: .5rem; justify-content: flex-end; }
.cb-toggle { position: relative; display: inline-block; width: 40px; height: 22px; cursor: pointer; }
.cb-toggle input { opacity: 0; width: 0; height: 0; }
.cb-toggle__slider { position: absolute; inset: 0; border-radius: 22px; background: rgba(255,255,255,.2); transition: background .2s; }
.cb-toggle__slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s; }
.cb-toggle input:checked + .cb-toggle__slider { background: #DFEB2B; }
.cb-toggle input:checked + .cb-toggle__slider::before { transform: translateX(18px); }
@media (max-width: 767px) {
  .cb-banner { left: 0; right: 0; bottom: 0; max-width: none; border-radius: 12px 12px 0 0; }
  .cb-modal { width: 95%; }
}

/* ========== SNIPPET: CasinoGrid (.cg-*) ========== */

.cg-section {
  position: relative;
  margin-bottom: 40px;
}

.cg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.cg-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E8ECF4;
  margin: 0;
  line-height: 1.2;
  font-family: 'Raleway', sans-serif;
}

.cg-view-all {
  font-size: 0.82rem;
  color: #94A0D2;
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid #1F2744;
  border-radius: 16px;
  padding: 5px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cg-view-all:hover {
  border-color: #DFEB2B;
  color: #DFEB2B;
}
.cg-view-all:focus-visible {
  outline: 2px solid #DFEB2B;
  outline-offset: 2px;
}

.cg-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cg-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  flex: 1;
  min-width: 0;
}
.cg-slider::-webkit-scrollbar {
  display: none;
}

.cg-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #171D3A;
  border: 1px solid #1F2744;
  color: #E8ECF4;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  padding: 0;
  user-select: none;
}
.cg-arrow:hover {
  border-color: rgba(223,235,43,0.4);
  color: #DFEB2B;
  background: #1F2744;
}
.cg-arrow:focus-visible {
  outline: 2px solid #DFEB2B;
  outline-offset: 2px;
}

.cg-item {
  flex: 0 0 160px;
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: #171D3A;
  border: 1px solid #1F2744;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.cg-item:hover {
  transform: translateY(-3px);
  border-color: rgba(223,235,43,0.4);
  box-shadow: 0 0 0 1px rgba(223,235,43,0.15), 0 8px 24px rgba(0,0,0,0.3);
}
.cg-item:focus-visible {
  outline: 2px solid #DFEB2B;
  outline-offset: 2px;
}

.cg-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.cg-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.2s ease;
}
.cg-item:hover .cg-img img {
  transform: scale(1.04);
}

.cg-meta {
  padding: 8px 10px 10px;
}
.cg-title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: #E8ECF4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Raleway', sans-serif;
}
.cg-provider {
  font-size: 0.7rem;
  color: #94A0D2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .cg-arrow { display: none; }
  .cg-item { flex: 0 0 130px; }
  .cg-slider { gap: 8px; }
  .cg-heading { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cg-item, .cg-arrow, .cg-view-all { transition: none; }
  .cg-item:hover { transform: none; }
  .cg-img img { transition: none; }
}

/* ========== SNIPPET: BigWins (.bw-*) ========== */

.bw-section {
  margin: 32px 0;
}

.bw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bw-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #E8ECF4;
  font-family: 'Raleway', sans-serif;
}

.bw-slider {
  position: relative;
  overflow: hidden;
  height: 84px;
}

.bw-cards {
  display: grid;
  grid-template-columns: repeat(var(--bw-per-row, 6), 1fr);
  gap: 12px;
  height: 84px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .bw-cards { grid-template-columns: repeat(var(--bw-per-row-md, 4), 1fr); }
}

.bw-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #171D3A;
  border: 1px solid #1F2744;
  border-radius: 16px;
  padding: 0 12px 0 0;
  height: 84px;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}
.bw-card:hover {
  border-color: rgba(223,235,43,0.4);
}

.bw-section .bw-card img {
  flex: 0 0 auto;
  width: 60px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  display: block;
}

.bw-card-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bw-amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: #DFEB2B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bw-game {
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #E8ECF4;
  opacity: 0.7;
}

.bw-nickname {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #94A0D2;
}

.bw-meta {
  font-size: 0.66rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #94A0D2;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .bw-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    height: auto;
  }
  .bw-slider::-webkit-scrollbar { display: none; }
  .bw-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
    gap: 8px;
    padding-bottom: 2px;
  }
  .bw-card {
    flex: 0 0 min(190px, calc(50vw - 8px));
    width: min(190px, calc(50vw - 8px));
    height: 90px;
    scroll-snap-align: start;
  }
  .bw-section .bw-card img {
    width: 50px;
    height: 90px;
  }
}

@keyframes bw-slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bw-slide-out-right {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}
.bw-card--entering { animation: bw-slide-in-left 0.4s ease forwards; }
.bw-card--leaving  { animation: bw-slide-out-right 0.35s ease forwards; pointer-events: none; }

.bw-mult {
  color: #DFEB2B;
  font-weight: 700;
  background: rgba(223,235,43,0.15);
  border-radius: 4px;
  padding: 1px 4px;
}

@media (prefers-reduced-motion: reduce) {
  .bw-card--entering, .bw-card--leaving { animation: none; }
  .bw-card { transition: none; }
}

/* ========== SNIPPET: LiveBets (.lb-*) ========== */

.lb-section {
  margin: 32px 0;
}

.lb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #1F2744;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.lb-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #E8ECF4;
  padding-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}

.lb-tabs {
  display: flex;
  align-items: center;
}

.lb-tab {
  height: 44px;
  padding: 0 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94A0D2;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}
.lb-tab--active {
  color: #DFEB2B;
  border-bottom-color: #DFEB2B;
}
.lb-tab:hover:not(.lb-tab--active) {
  color: #E8ECF4;
}
.lb-tab:focus-visible {
  outline: 2px solid #DFEB2B;
  outline-offset: 2px;
}

.lb-body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lb-table {
  min-width: 540px;
}

.lb-thead {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.9fr 1fr 1fr 1.2fr;
  padding: 6px 12px;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A0D2;
  background: rgba(31,39,68,0.5);
}

.lb-tbody {
  height: calc(var(--lb-rows, 10) * 40px);
  overflow: hidden;
  contain: layout;
  overflow-anchor: none;
  transition: opacity 200ms ease;
}
.lb-tbody--fade { opacity: 0; }

.lb-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.9fr 1fr 1fr 1.2fr;
  gap: 8px;
  padding: 0 12px;
  height: 40px;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: #E8ECF4;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s ease;
  box-sizing: border-box;
}
.lb-row:nth-child(odd) {
  background: rgba(255,255,255,0.055);
}
.lb-row:hover {
  background: rgba(255,255,255,0.09);
}
.lb-row:focus-visible {
  outline: 2px solid #DFEB2B;
  outline-offset: 2px;
}

.lb-col-game {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
}

.lb-game-thumb {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.lb-game-name {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #E8ECF4;
}

.lb-game-info {
  min-width: 0;
  overflow: hidden;
}

.lb-game-player { display: none; }
.lb-col-right { display: none; }

.lb-col-player,
.lb-col-time {
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-col-bet { min-width: 0; }
.lb-col-mult { min-width: 0; }

.lb-col-payout {
  font-size: 0.8rem;
  font-weight: 700;
  color: #DFEB2B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.lb-badge--bet {
  background: rgba(31,39,68,0.8);
  color: inherit;
}
.lb-badge--mult {
  background: rgba(223,235,43,0.12);
  color: #DFEB2B;
}

@media (max-width: 767px) {
  .lb-body {
    overflow-x: visible;
    min-height: calc(var(--lb-rows, 10) * 64px);
  }
  .lb-tbody {
    height: calc(var(--lb-rows, 10) * 64px);
  }
  .lb-table { min-width: 0; }
  .lb-thead { display: none; }
  .lb-row {
    grid-template-columns: 1fr auto;
    height: 60px;
    margin-bottom: 4px;
  }
  .lb-col-player, .lb-col-time, .lb-col-bet, .lb-col-mult, .lb-col-payout { display: none; }
  .lb-col-game { grid-template-columns: 48px 1fr; }
  .lb-game-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }
  .lb-game-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .lb-game-name { font-size: 0.82rem; }
  .lb-game-player {
    display: block;
    font-size: 0.72rem;
    color: #94A0D2;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .lb-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .lb-payout-amount {
    font-size: 0.85rem;
    font-weight: 700;
    color: #DFEB2B;
    white-space: nowrap;
  }
  .lb-header {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    gap: 0;
  }
  .lb-heading {
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .lb-tabs {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 3px;
    margin-bottom: 14px;
    gap: 2px;
  }
  .lb-tab {
    flex: 1;
    text-align: center;
    padding: 0 6px;
    height: 36px;
    font-size: 0.8rem;
    border-bottom: none;
    border-radius: 12px;
    bottom: 0;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .lb-tab--active {
    background: rgba(223,235,43,0.15);
    border-bottom-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb-row, .lb-tab, .lb-tbody { transition: none; }
}

/* ========== SNIPPET: Providers (.pr-*) ========== */

.pr-section {
  margin-bottom: 40px;
}

.pr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.pr-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E8ECF4;
  margin: 0;
  line-height: 1.2;
  font-family: 'Raleway', sans-serif;
}

.pr-view-all {
  font-size: 0.82rem;
  color: #94A0D2;
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid #1F2744;
  border-radius: 6px;
  padding: 5px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}
.pr-view-all:hover {
  border-color: #DFEB2B;
  color: #DFEB2B;
}
.pr-view-all:focus-visible {
  outline: 2px solid #DFEB2B;
  outline-offset: 2px;
}

.pr-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pr-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-bottom: 4px;
  flex: 1;
  min-width: 0;
}
.pr-slider::-webkit-scrollbar {
  display: none;
}

.pr-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #171D3A;
  border: 1px solid #1F2744;
  color: #94A0D2;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
  padding: 0;
  user-select: none;
}
.pr-arrow:hover {
  border-color: #DFEB2B;
  color: #DFEB2B;
  box-shadow: 0 0 10px rgba(223,235,43,0.2);
}
.pr-arrow:focus-visible {
  outline: 2px solid #DFEB2B;
  outline-offset: 2px;
}

.pr-item {
  flex: 0 0 120px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: #171D3A;
  border: 1px solid #1F2744;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.pr-item:hover {
  border-color: #DFEB2B;
  box-shadow: 0 0 10px rgba(223,235,43,0.15);
}

.pr-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.pr-logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.pr-name {
  font-size: 0.72rem;
  color: #94A0D2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

@media (max-width: 576px) {
  .pr-arrow {
    display: none;
  }
  .pr-item {
    flex: 0 0 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pr-item,
  .pr-arrow,
  .pr-view-all { transition: none; }
}

/* ========== SNIPPET: GoldbetFAQ (.tc-faq) ========== */

.tc-faq { display: flex; flex-direction: column; gap: 8px; }
.tc-faq-item { background: #171D3A; border: 1px solid #1F2744; border-radius: 12px; transition: border-color 0.2s; }
.tc-faq-item[open] { border-color: rgba(223,235,43,0.3); }
.tc-faq-question { padding: 16px 20px; font-size: 15px; font-weight: 700; color: #E8ECF4; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; min-height: 45px; }
.tc-faq-question::-webkit-details-marker { display: none; }
.tc-faq-question::after { content: '▾'; color: rgba(148,160,210,0.5); transition: transform 0.2s; font-size: 14px; flex-shrink: 0; margin-left: 12px; }
.tc-faq-item[open] .tc-faq-question::after { transform: rotate(180deg); color: #DFEB2B; }
.tc-faq-answer { padding: 12px 0 16px; font-size: 14px; color: rgba(148,160,210,0.7); line-height: 1.6; border-top: 1px solid #1F2744; margin: 0 20px; }
