:root {
  --clr-bg: #0d1117;
  --clr-surface: #161b22;
  --clr-surface2: #1c2330;
  --clr-primary: #1a6e3c;
  --clr-primary-dark: #145530;
  --clr-gold: #f0b429;
  --clr-gold-dark: #c8940f;
  --clr-text: #e6edf3;
  --clr-text-muted: #8b949e;
  --clr-border: #30363d;
  --clr-red: #da3633;
  --clr-green: #1a6e3c;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font-main: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-dark); }

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

.x9f2a { display: none; }
.wp-block-group { display: block; }
.elementor-section { position: relative; }
.wp-content-area { overflow: hidden; }

.gb-wrapper { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.gb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f1923;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.gb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.gb-header__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

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

.gb-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.gb-nav__list a {
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.gb-nav__list a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--clr-gold);
}
.gb-nav__list-big {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.gb-nav__list-big a {
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.gb-nav__list-big a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--clr-gold);
}

.gb-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gb-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.gb-online__dot {
  width: 8px;
  height: 8px;
  background: #2ea043;
  border-radius: 50%;
  animation: gbPulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes gbPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.gb-online__count {
  color: #2ea043;
  font-weight: 700;
}

.gb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.gb-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.35); opacity: 0.92; }
.gb-btn:active { transform: translateY(0); }

.gb-btn--login {
  background: transparent;
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
}

.gb-btn--login:hover { background: var(--clr-gold); color: #0d1117; }

.gb-btn--signup {
  background: linear-gradient(135deg, #f0b429 0%, #e09010 100%);
  color: #0d1117;
}

.gb-btn--bonus {
  background: linear-gradient(135deg, #1a6e3c 0%, #0d4f28 100%);
  color: #fff;
  font-size: 13px;
}

.gb-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.gb-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.gb-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gb-burger.active span:nth-child(2) { opacity: 0; }
.gb-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.gb-mobile-menu {
  display: none;
  background: #0f1923;
  border-top: 1px solid var(--clr-border);
  padding: 16px;
}

.gb-mobile-menu.active { display: block; }

.gb-mobile-menu .gb-nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}

.gb-mobile-menu .gb-nav__list a { display: block; width: 100%; padding: 10px 14px; }

.gb-mobile-menu .gb-header__right {
  flex-direction: column;
  align-items: stretch;
}

.gb-mobile-menu .gb-btn { justify-content: center; padding: 12px; }

.gb-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.gb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.6) 60%, rgba(13,17,23,0.2) 100%);
  z-index: 1;
}

.gb-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 16px;
}

.gb-hero__label {
  display: inline-block;
  background: var(--clr-gold);
  color: #0d1117;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.gb-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
}

.gb-hero__title span { color: var(--clr-gold); }

.gb-hero__text {
  font-size: 17px;
  color: #c9d1d9;
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.gb-hero__btn-main {
  background: linear-gradient(135deg, #f0b429 0%, #e09010 100%);
  color: #0d1117;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
}

.gb-hero__btn-main:hover { color: #0d1117; }

.gb-hero__btn-sec {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--clr-text);
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
}

.gb-hero__btn-sec:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

.gb-breadcrumbs {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}

.gb-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}

.gb-breadcrumbs__inner a { color: var(--clr-text-muted); }
.gb-breadcrumbs__inner a:hover { color: var(--clr-gold); }
.gb-breadcrumbs__sep { color: var(--clr-border); }
.gb-breadcrumbs__current { color: var(--clr-text); }

.gb-section { padding: 56px 0; }
.gb-section--alt { background: var(--clr-surface); }

.gb-section__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
  text-wrap: balance;
}

.gb-section__subtitle {
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  font-size: 15px;
}

.gb-section__title--gold span { color: var(--clr-gold); }

.gb-toc {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.gb-toc__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-gold);
}

.gb-toc__list { list-style: none; columns: 2; column-gap: 24px; }

.gb-toc__list li {
  break-inside: avoid;
  padding: 4px 0;
  border-bottom: 1px solid rgba(48,54,61,0.5);
  font-size: 14px;
}

.gb-toc__list a {
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gb-toc__list a::before {
  content: counter(toc-item);
  counter-increment: toc-item;
  background: var(--clr-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gb-toc__list { counter-reset: toc-item; }

.gb-toc__list a:hover { color: var(--clr-gold); }

.gb-info-table-wrap { overflow-x: auto; margin-bottom: 8px; }

.gb-info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gb-info-table th,
.gb-info-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  font-size: 14px;
}

.gb-info-table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-weight: 600;
  width: 38%;
  white-space: nowrap;
}

.gb-info-table td {
  color: var(--clr-text);
  font-weight: 500;
}

.gb-info-table tr:last-child th,
.gb-info-table tr:last-child td { border-bottom: none; }

.gb-info-table tr:hover td { background: rgba(255,255,255,0.03); }

.gb-info-table .gb-badge {
  display: inline-block;
  background: rgba(26,110,60,0.25);
  color: #3fb950;
  border: 1px solid rgba(63,185,80,0.3);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
}

.gb-adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gb-adv-card {
  flex: 1 1 260px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition);
}

.gb-adv-card:hover {
  transform: translateY(-3px);
  border-color: var(--clr-primary);
}

.gb-adv-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(26,110,60,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
}

.gb-adv-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gb-adv-card__text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.gb-jackpots {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gb-jackpot-card {
  flex: 1 1 220px;
  background: linear-gradient(135deg, #1c2330 0%, #0f1923 100%);
  border: 1.5px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gb-jackpot-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(240,180,41,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.gb-jackpot-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}

.gb-jackpot-card__amount {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(18px, 3.5vw, 28px);
  height: 1.2em;
  line-height: 1.2;
}

.gb-jackpot-card__game {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 18px;
}

.gb-jackpot-card .gb-btn {
  background: var(--clr-gold);
  color: #0d1117;
  width: 100%;
  font-size: 13px;
  padding: 10px 16px;
}

.gb-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.gb-wheel-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}

.gb-wheel-canvas-wrap canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(240,180,41,0.3);
}

.gb-wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--clr-gold);
  filter: drop-shadow(0 2px 6px rgba(240,180,41,0.5));
}

.gb-wheel-btn {
  background: linear-gradient(135deg, #f0b429 0%, #c8940f 100%);
  color: #0d1117;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 48px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gb-wheel-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,180,41,0.35); }
.gb-wheel-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.gb-wheel-result {
  display: none;
  background: var(--clr-surface2);
  border: 1.5px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  animation: gbFadeIn 0.4s ease;
}

.gb-wheel-result.active { display: block; }

.gb-wheel-result__icon { font-size: 48px; margin-bottom: 12px; }

.gb-wheel-result__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-gold);
}

.gb-wheel-result__text {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.gb-wheel-result .gb-btn {
  background: linear-gradient(135deg, #f0b429 0%, #c8940f 100%);
  color: #0d1117;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 9px;
  font-weight: 700;
  width: 100%;
}

.gb-review { background: var(--clr-surface2); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 32px; }

.gb-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.gb-review__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.gb-review__author-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.gb-review__author-bio {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.gb-review__author-bio a { color: var(--clr-gold); font-size: 13px; }

.gb-review__content h2 { font-size: 22px; font-weight: 700; margin: 24px 0 12px; color: var(--clr-text); }
.gb-review__content h3 { font-size: 18px; font-weight: 600; margin: 20px 0 10px; color: var(--clr-text); }
.gb-review__content h4 { font-size: 16px; font-weight: 600; margin: 16px 0 8px; color: var(--clr-text); }
.gb-review__content p { margin-bottom: 16px; line-height: 1.7; color: #c9d1d9; }
.gb-review__content ul, .gb-review__content ol { margin: 0 0 16px 24px; color: #c9d1d9; line-height: 1.8; }
.gb-review__content li { margin-bottom: 6px; }
.gb-review__content strong { color: var(--clr-text); font-weight: 600; }
.gb-review__content em { color: var(--clr-text-muted); }
.gb-review__content a { color: var(--clr-gold); }
.gb-review__content blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(240,180,41,0.06);
  border-radius: 0 8px 8px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.gb-review__content table {
  width: 100%;
  border-collapse: collapse;
  border: 1.5px solid var(--clr-border);
  margin: 20px 0;
  font-size: 14px;
}

.gb-review__content table th,
.gb-review__content table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  text-align: left;
}

.gb-review__content table th { background: var(--clr-surface); font-weight: 600; }

.gb-faq-list { display: flex; flex-direction: column; gap: 12px; }

.gb-faq-item {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.gb-faq-item.active { border-color: var(--clr-primary); }

.gb-faq-q {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  user-select: none;
}

.gb-faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--clr-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.gb-faq-item.active .gb-faq-q::after { transform: rotate(45deg); }

.gb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 22px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.gb-faq-item.active .gb-faq-a { max-height: 600px; padding: 0 22px 18px; }

.gb-footer {
  background: #0a0e14;
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}

.gb-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.gb-footer__brand { flex: 0 0 220px; }

.gb-footer__logo {display: block;width: fit-content;}

.gb-footer__logo img {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.gb-footer__tagline {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.gb-footer__col { flex: 1 1 160px; }

.gb-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.gb-footer__nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.gb-footer__nav a {
  font-size: 14px;
  color: #8b949e;
  transition: color var(--transition);
}

.gb-footer__nav a:hover { color: var(--clr-text); }

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

.gb-footer__logos-title {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.gb-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gb-footer__logo-chip {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  white-space: nowrap;
  transition: border-color var(--transition);
}

.gb-footer__logo-chip:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

.gb-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.gb-footer__copy {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 640px;
}

.gb-footer__legal {
  font-size: 11px;
  color: #6e7681;
  line-height: 1.5;
  margin-top: 8px;
}

.gb-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0f1923 0%, #161b22 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.gb-sticky-widget__text {
  flex: 1;
  min-width: 0;
}

.gb-sticky-widget__bonus {
  font-size: clamp(13px, 2.5vw, 16px);
  font-weight: 700;
  color: var(--clr-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb-sticky-widget__sub {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.gb-sticky-widget__btn {
  background: linear-gradient(135deg, #f0b429 0%, #c8940f 100%);
  color: #0d1117;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 9px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gb-sticky-widget__btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,180,41,0.35); color: #0d1117; }

.gb-sticky-widget__close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.gb-sticky-widget__close:hover { color: var(--clr-text); }

body { padding-bottom: 76px; }

@keyframes gbFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gbSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.gb-anim-fade { animation: gbFadeIn 0.5s ease forwards; }
.gb-anim-slide { animation: gbSlideUp 0.5s ease forwards; }

[data-gb-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-gb-reveal].visible { opacity: 1; transform: none; }

.gb-divider { height: 1px; background: var(--clr-border); margin: 48px 0; }

.gb-tag {
  display: inline-block;
  background: rgba(26,110,60,0.2);
  color: #3fb950;
  border: 1px solid rgba(63,185,80,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
}

.gb-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--clr-gold);
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
.gb-nav__list-big a {padding: 6px 8px;}
.gb-header__inner {gap: 8px;}
.gb-nav__list-big li:first-child{display: none;}
}
@media (max-width: 900px) {
  .gb-nav__list-big { display: none; }
  .gb-burger { display: flex; }
  .gb-toc__list { columns: 1; }
}

@media (max-width: 640px) {
  .gb-hero { min-height: 400px; }
  .gb-hero__content { padding: 40px 16px; }
  .gb-section { padding: 40px 0; }
  .gb-footer__grid { gap: 24px; }
  .gb-review { padding: 20px; }
  .gb-sticky-widget__text { flex: 100%; }
  .gb-info-table th, .gb-info-table td {padding: 8px 12px;}
  .gb-info-table th  {white-space: break-spaces;}
}

@media (max-width: 420px) {
.gb-header__right .gb-btn--login {display: none;}
.gb-sticky-widget {display: none;}
body {padding-bottom: 0;}
}
@media (max-width: 400px) {
  .gb-jackpot-card { flex: 1 1 100%; }
  .gb-adv-card { flex: 1 1 100%; }
}

.wpr-f8a2 { color: transparent; font-size: 0; position: absolute; pointer-events: none; }
.elementor-7bc3 { visibility: hidden; height: 0; overflow: hidden; }
.wp-block-qb81 { display: none !important; }
.pp-module-29d4 a { pointer-events: none; opacity: 0; }
