:root {
  --color-bg: #13151d;
  --color-header: #1b1d25;
  --color-btn-dark: #1f1f1f;
  --color-btn-green: #61c73d;
  --color-btn-green-hover: #4faa2e;
  --color-text: #e8eaf0;
  --color-text-muted: #9da3b4;
  --color-text-dark: #c2c8d8;
  --color-border: #2a2d3a;
  --color-card: #1e2130;
  --color-card-hover: #242840;
  --color-accent: #61c73d;
  --color-accent-glow: rgba(97, 199, 61, 0.18);
  --font-main: "Inter", "Montserrat", Arial, sans-serif;
  --font-heading: "Montserrat", "Inter", Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-green: 0 0 18px rgba(97, 199, 61, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--color-bg);
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-btn-green-hover);
}

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

.gx-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.gx-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--color-border);
}

.gx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
  flex-wrap: nowrap;
}

.gx-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.gx-header__logo img {
  height: 42px;
  width: auto;
}

.gx-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.gx-header__nav a {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.gx-header__nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-accent);
}

.gx-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gx-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.gx-header__online-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: gx-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

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

.gx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.gx-btn:hover {
  transform: translateY(-2px);
}

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

.gx-btn--dark {
  background: var(--color-btn-dark);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.gx-btn--dark:hover {
  background: #2a2a2a;
  color: var(--color-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gx-btn--green {
  background: var(--color-btn-green);
  color: #0d1008;
  box-shadow: var(--shadow-green);
}

.gx-btn--green:hover {
  background: var(--color-btn-green-hover);
  color: #0d1008;
  box-shadow: 0 0 28px rgba(97, 199, 61, 0.4);
}

.gx-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.gx-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.gx-burger:hover {
  background: rgba(255, 255, 255, 0.07);
}

.gx-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.gx-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gx-burger.active span:nth-child(2) {
  opacity: 0;
}

.gx-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gx-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-header);
  border-top: 1px solid var(--color-border);
  padding: 16px 20px 20px;
  gap: 8px;
}

.gx-mobile-nav.open {
  display: flex;
}

.gx-mobile-nav a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}

.gx-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-accent);
}

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

.gx-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/getban.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.gx-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(19, 21, 29, 0.92) 0%,
    rgba(19, 21, 29, 0.65) 60%,
    rgba(19, 21, 29, 0.3) 100%
  );
  z-index: 1;
}

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

.gx-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(97, 199, 61, 0.15);
  border: 1px solid rgba(97, 199, 61, 0.35);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gx-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-balance: balance;
}

.gx-hero__title span {
  color: var(--color-accent);
}

.gx-hero__sub {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}

.gx-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gx-breadcrumb {
  padding: 14px 0;
  background: rgba(27, 29, 37, 0.7);
  border-bottom: 1px solid var(--color-border);
}

.gx-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.gx-breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
}

.gx-breadcrumb__list li:last-child {
  color: var(--color-accent);
}

.gx-breadcrumb__list a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.gx-breadcrumb__list a:hover {
  color: var(--color-accent);
}

.gx-breadcrumb__sep {
  color: var(--color-border);
  font-size: 0.75rem;
}

.gx-section {
  padding: 56px 0;
}

.gx-section--sm {
  padding: 32px 0;
}

.gx-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gx-section-sub {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.gx-section-header {
  margin-bottom: 32px;
}

.gx-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  -webkit-overflow-scrolling: touch;
}

.gx-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  min-width: 480px;
}

.gx-info-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.gx-info-table tr:last-child {
  border-bottom: none;
}

.gx-info-table tr:hover {
  background: var(--color-card-hover);
}

.gx-info-table td {
  padding: 13px 20px;
  font-size: 0.9rem;
  text-align: left;
  vertical-align: top;
}

.gx-info-table td:first-child {
  color: var(--color-text-muted);
  width: 42%;
  font-weight: 500;
  border-right: 1px solid var(--color-border);
}

.gx-info-table td:last-child {
  color: var(--color-text);
  font-weight: 400;
}

.gx-info-table .gx-badge-green {
  display: inline-flex;
  align-items: center;
  background: rgba(97, 199, 61, 0.15);
  color: var(--color-accent);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.gx-jackpots {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gx-jackpots__header {
  background: linear-gradient(135deg, #1b2b0f 0%, #1b1d25 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
}

.gx-jackpots__icon {
  font-size: 1.6rem;
}

.gx-jackpots__htitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
}

.gx-jackpots__hsub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.gx-jackpots__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.gx-jackpot-item {
  flex: 1 1 200px;
  padding: 20px 24px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.gx-jackpot-item:nth-child(3n) {
  border-right: none;
}

.gx-jackpot-item:hover {
  background: var(--color-card-hover);
}

.gx-jackpot-item__name {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.gx-jackpot-item__amount {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.01em;
}

.gx-jackpot-item__game {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.gx-bonuses {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gx-bonus-card {
  flex: 1 1 280px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.gx-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  border-color: rgba(97, 199, 61, 0.3);
}

.gx-bonus-card__top {
  background: linear-gradient(135deg, #1a2b10 0%, #1b1d25 100%);
  padding: 24px 20px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.gx-bonus-card__icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.gx-bonus-card__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.gx-bonus-card__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.gx-bonus-card__body {
  padding: 16px 20px;
  flex: 1;
}

.gx-bonus-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.gx-bonus-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.gx-bonus-card__footer {
  padding: 0 20px 20px;
}

.gx-bonus-card__footer .gx-btn {
  width: 100%;
}

.gx-bonuses-slider {
  display: none;
}

.gx-slot-game {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.gx-slot-game__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.gx-slot-game__htitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.gx-slot-game__hsub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.gx-slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.3);
}

.gx-reel {
  width: 80px;
  height: 80px;
  background: #111420;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gx-reel.spinning {
  animation: gx-spin 0.1s linear infinite;
}

@keyframes gx-spin {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}

.gx-slot-game__controls {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gx-slot-result {
  text-align: center;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gx-slot-result__win {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  animation: gx-fadein 0.4s ease;
}

.gx-slot-result__lose {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  animation: gx-fadein 0.4s ease;
}

@keyframes gx-fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gx-review-content {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 40px;
}

.gx-review-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}

.gx-review-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #e0e4f0;
  margin: 28px 0 12px;
  line-height: 1.35;
}

.gx-review-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #c8cedf;
  margin: 22px 0 10px;
}

.gx-review-content p {
  color: var(--color-text-dark);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.gx-review-content ul,
.gx-review-content ol {
  margin: 12px 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gx-review-content li {
  color: var(--color-text-dark);
  font-size: 0.93rem;
  line-height: 1.6;
}

.gx-review-content ul li::marker {
  color: var(--color-accent);
}

.gx-review-content ol li::marker {
  color: var(--color-accent);
}

.gx-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gx-review-content table th {
  background: rgba(97, 199, 61, 0.1);
  color: var(--color-accent);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
}

.gx-review-content table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
  color: var(--color-text-dark);
  vertical-align: top;
}

.gx-review-content table tr:last-child td {
  border-bottom: none;
}

.gx-review-content table tr:hover td {
  background: var(--color-card-hover);
}

.gx-review-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.gx-review-content blockquote {
  border-left: 3px solid var(--color-accent);
  margin: 16px 0;
  padding: 12px 18px;
  background: rgba(97, 199, 61, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text-dark);
  font-style: italic;
}

.gx-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-header);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}

.gx-author__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

.gx-author__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gx-author__role {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.gx-author__bio {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.gx-reviews-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gx-review-card {
  flex: 1 1 260px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.gx-review-card:hover {
  border-color: rgba(97, 199, 61, 0.3);
  transform: translateY(-2px);
}

.gx-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gx-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

.gx-review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.gx-review-card__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.gx-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.gx-stars svg {
  width: 16px;
  height: 16px;
  fill: #f5c518;
}

.gx-review-card__text {
  font-size: 0.875rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.gx-review-form {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  max-width: 560px;
}

.gx-review-form__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.gx-form-group {
  margin-bottom: 16px;
}

.gx-form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gx-form-group input,
.gx-form-group textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.gx-form-group input:focus,
.gx-form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(97, 199, 61, 0.12);
}

.gx-form-group textarea {
  min-height: 100px;
}

.gx-form-success {
  display: none;
  background: rgba(97, 199, 61, 0.1);
  border: 1px solid rgba(97, 199, 61, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  animation: gx-fadein 0.35s ease;
}

.gx-footer {
  background: var(--color-header);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
}

.gx-footer__top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}

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

.gx-footer__logo {
  height: 38px;
  margin-bottom: 14px;
}

.gx-footer__tagline {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.gx-footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

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

.gx-footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.gx-footer__links a:hover {
  color: var(--color-accent);
}

.gx-footer__payments {
  flex: 100%;
}

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

.gx-footer__payment-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.gx-footer__payment-item:hover {
  border-color: rgba(97, 199, 61, 0.35);
  color: var(--color-text);
}

.gx-footer__provider-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.gx-footer__provider-item:hover {
  border-color: rgba(97, 199, 61, 0.3);
  color: var(--color-text);
}

.gx-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.gx-footer__copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.gx-footer__legal {
  font-size: 0.74rem;
  color: #606575;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.gx-widget {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-header);
  border: 1px solid rgba(97, 199, 61, 0.35);
  border-radius: 50px;
  padding: 10px 16px 10px 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    var(--shadow-green);
  animation: gx-widget-in 0.6s 1s both ease;
  white-space: nowrap;
}

@keyframes gx-widget-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.gx-widget__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.gx-widget__bonus {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-accent);
}

.gx-widget__close {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 2px 6px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}

.gx-widget__close:hover {
  color: var(--color-text);
}

.gx-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gx-faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.gx-faq-item:hover {
  border-color: rgba(97, 199, 61, 0.25);
}

.gx-faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  gap: 12px;
  user-select: none;
}

.gx-faq-item__q svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-accent);
}

.gx-faq-item.open .gx-faq-item__q svg {
  transform: rotate(180deg);
}

.gx-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--transition);
  padding: 0 20px;
}

.gx-faq-item.open .gx-faq-item__a {
  max-height: 300px;
  padding: 0 20px 16px;
}

.gx-faq-item__a p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.wp-content-placeholder {
  display: none;
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
}

.elementor-hidden-widget {
  display: none;
}

.yoast-hidden {
  display: none;
}

[data-wp-block] {
  display: none;
}

@media (max-width: 1024px) {
  .gx-header__nav {
    display: none;
  }

  .gx-burger {
    display: flex;
  }

  .gx-jackpot-item:nth-child(3n) {
    border-right: 1px solid var(--color-border);
  }
}

@media (max-width: 768px) {
  .gx-hero {
    min-height: 420px;
  }

  .gx-hero__content {
    padding: 40px 0;
  }

  .gx-section {
    padding: 40px 0;
  }

  .gx-bonuses {
    display: none;
  }

  .gx-bonuses-slider {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .gx-bonuses-slider__track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 16px;
  }

  .gx-bonuses-slider__item {
    flex: 0 0 calc(100% - 40px);
    min-width: 0;
  }

  .gx-bonuses-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .gx-bonuses-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition:
      background var(--transition),
      transform var(--transition);
    border: none;
  }

  .gx-bonuses-slider__dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
  }

  .gx-review-form {
    max-width: 100%;
  }

  .gx-footer__top {
    gap: 28px;
  }

  .gx-footer__brand {
    flex: 100%;
  }

  .gx-widget {
    left: 16px;
    right: 16px;
    transform: none;
    bottom: 16px;
    border-radius: var(--radius);
  }

  @keyframes gx-widget-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .gx-jackpot-item {
    flex: 1 1 140px;
  }

  .gx-review-content {
    padding: 24px 20px;
  }

  .gx-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gx-hero__title {
    font-size: 1.7rem;
  }

  .gx-hero__actions {
    flex-direction: column;
  }

  .gx-hero__actions .gx-btn {
    width: 100%;
    text-align: center;
  }

  .gx-header__online {
    display: none;
  }

  .gx-jackpot-item {
    flex: 1 1 100%;
  }
}

.gx-scroll-line {
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: width 0.1s linear;
}

.gx-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.gx-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gx-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0;
}

.gx-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(97, 199, 61, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(97, 199, 61, 0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.d-none {
  display: none !important;
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 32px;
}
.mb-4 {
  margin-bottom: 32px;
}

.gx-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gx-adv-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.gx-adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(97, 199, 61, 0.3);
  box-shadow: var(--shadow-green);
}

.gx-adv-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(97, 199, 61, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.gx-adv-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.gx-adv-card__text {
  font-size: 0.855rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.gx-tournaments {
  background: var(--color-bg);
}

.gx-tournaments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gx-trn-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.gx-trn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(97, 199, 61, 0.3);
}

.gx-trn-card__head {
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--color-border);
}

.gx-trn-card__label {
  display: inline-block;
  background: rgba(97, 199, 61, 0.12);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.gx-trn-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.gx-trn-card__desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.gx-trn-card__body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gx-trn-timer-label {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.gx-trn-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gx-trn-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 44px;
}

.gx-trn-timer__val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.gx-trn-timer__lbl {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.gx-trn-timer__sep {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.5;
  align-self: flex-start;
  margin-top: 4px;
}

.gx-trn-card__prize {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gx-trn-card__prize-label {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gx-trn-card__prize-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.gx-trn-card__footer {
  padding: 0 20px 20px;
}

.gx-trn-card__btn {
  width: 100%;
}

.gx-video-section {
  background: var(--color-bg);
}

.gx-video__wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.gx-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gx-wheel-section {
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    rgba(27, 29, 37, 0.6) 100%
  );
}

.gx-wheel__wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.gx-wheel__canvas-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gx-wheel__pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(97, 199, 61, 0.5));
}

.gx-wheel__canvas {
  display: block;
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(97, 199, 61, 0.2),
    0 0 80px rgba(0, 0, 0, 0.6);
}

.gx-wheel__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gx-wheel__bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gx-wheel__bonus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.gx-wheel__bonus-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
}

.gx-wheel__bonus-dot--win {
  background: var(--color-accent);
  box-shadow: 0 0 6px rgba(97, 199, 61, 0.5);
}

.gx-wheel__btn {
  width: 100%;
}

.gx-wheel__result {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: gx-fadein 0.4s ease;
}

.gx-wheel__result.visible {
  display: flex;
}

.gx-wheel__result-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.gx-wheel__result-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.gx-author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.gx-author-card__photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(97, 199, 61, 0.3);
  display: block;
}

.gx-author-card__info {
  flex: 1;
}

.gx-author-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gx-author-card__role {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gx-author-card__bio {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.gx-author-card__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gx-author-card__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(97, 199, 61, 0.1);
  border: 1px solid rgba(97, 199, 61, 0.25);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition:
    background var(--transition),
    border-color var(--transition);
  text-decoration: none;
}

.gx-author-card__social:hover {
  background: rgba(97, 199, 61, 0.2);
  border-color: rgba(97, 199, 61, 0.5);
  color: var(--color-accent);
}

.gx-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.gx-faq__item:hover {
  border-color: rgba(97, 199, 61, 0.25);
}

.gx-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  gap: 12px;
  user-select: none;
}

.gx-faq__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.gx-faq__item.open .gx-faq__icon {
  transform: rotate(180deg);
}

.gx-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--transition);
  padding: 0 20px;
}

.gx-faq__item.open .gx-faq__a {
  max-height: 300px;
  padding: 0 20px 16px;
}

.gx-faq__a p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.gx-review__inner {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 40px;
}

.gx-review__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.gx-widget__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.gx-widget__highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.gx-hero__slider {
  position: absolute;
  inset: 0;
}

.gx-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.gx-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gx-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gx-hero__overlay--2 {
  background: linear-gradient(
    90deg,
    rgba(19, 21, 29, 0.88) 0%,
    rgba(30, 10, 50, 0.55) 60%,
    rgba(19, 21, 29, 0.2) 100%
  );
}

.gx-hero__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.gx-hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.gx-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.gx-hero__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.gx-hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.gx-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gx-hero__stat-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-accent);
}

.gx-hero__stat-lbl {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gx-hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: gx-pulse 1.6s ease-in-out infinite;
}

.gx-btn--pulse {
  animation: gx-btn-pulse 2.5s ease-in-out infinite;
}

@keyframes gx-btn-pulse {
  0%,
  100% {
    box-shadow: var(--shadow-green);
  }
  50% {
    box-shadow:
      0 0 32px rgba(97, 199, 61, 0.55),
      0 0 64px rgba(97, 199, 61, 0.2);
  }
}

@media (max-width: 900px) {
  .gx-tournaments__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gx-wheel__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }

  .gx-wheel__canvas {
    max-width: 280px;
  }

  .gx-wheel__info {
    width: 100%;
  }

  .gx-wheel__btn {
    max-width: 320px;
  }

  .gx-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .gx-author-card__socials {
    justify-content: center;
  }

  .gx-review__inner {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .gx-advantages__grid {
    grid-template-columns: 1fr;
  }

  .gx-hero__stats {
    gap: 16px;
  }

  .gx-hero__stat-val {
    font-size: 1rem;
  }

  .gx-trn-timer__unit {
    min-width: 36px;
    padding: 5px 7px;
  }

  .gx-trn-timer__val {
    font-size: 0.95rem;
  }
}

.gx-pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gx-pros-card,
.gx-cons-card {
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gx-pros-card {
  border-top: 3px solid var(--color-accent);
}

.gx-cons-card {
  border-top: 3px solid #e05454;
}

.gx-pros-card__header,
.gx-cons-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.gx-pros-card__header {
  color: var(--color-accent);
  background: rgba(97, 199, 61, 0.06);
}

.gx-cons-card__header {
  color: #e05454;
  background: rgba(224, 84, 84, 0.06);
}

.gx-pros-card__list,
.gx-cons-card__list {
  list-style: none;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gx-pros-card__list li,
.gx-cons-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
  color: var(--color-text-dark);
  line-height: 1.55;
}

.gx-pros-card__list li:last-child,
.gx-cons-card__list li:last-child {
  border-bottom: none;
}

.gx-pros-card__list li svg,
.gx-cons-card__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.gx-mirrors__block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gx-mirrors__status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  background: rgba(97, 199, 61, 0.04);
}

.gx-mirrors__dot {
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: gx-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.gx-mirrors__status strong {
  color: var(--color-accent);
}

.gx-mirrors-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.gx-mirrors-table th {
  background: rgba(97, 199, 61, 0.08);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.gx-mirrors-table td {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.gx-mirrors-table tr:last-child td {
  border-bottom: none;
}

.gx-mirrors-table tr:hover td {
  background: var(--color-card-hover);
}

.gx-mirror-url {
  font-family: monospace;
  color: var(--color-accent);
  font-size: 0.85rem;
}

.gx-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.gx-status--ok {
  background: rgba(97, 199, 61, 0.12);
  color: var(--color-accent);
}

.gx-status--ok::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.gx-status--warn {
  background: rgba(255, 180, 30, 0.12);
  color: #ffb41e;
}

.gx-status--warn::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ffb41e;
  border-radius: 50%;
}

.gx-btn--sm {
  padding: 6px 14px;
  font-size: 0.78rem;
  border-radius: 6px;
}

.gx-mirrors__note {
  padding: 12px 22px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.15);
}

.gx-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gx-screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}

.gx-screenshot-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.gx-screenshot-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.gx-screenshot-caption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 500;
}

.gx-screenshots__slider {
  display: none;
}

.gx-screenshots__track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 16px;
}

.gx-screenshot-slide {
  flex: 0 0 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gx-screenshot-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gx-screenshots__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.gx-screenshots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.gx-screenshots__dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.gx-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gx-slot-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.gx-slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(97, 199, 61, 0.3);
  box-shadow: var(--shadow-green);
}

.gx-slot-card__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

.gx-slot-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gx-slot-card__body {
  flex: 1;
  width: 100%;
}

.gx-slot-card__provider {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.gx-slot-card__name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.gx-slot-card__rtp {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

.gx-slot-card__btn {
  width: 100%;
  padding: 8px 16px;
  font-size: 0.82rem;
}

.gx-slots-slider {
  display: none;
}

.gx-slots-slider__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.gx-slots-slider__track .gx-slot-card {
  flex: 0 0 calc(50% - 8px);
  min-width: 0;
}

.gx-slots-slider__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.gx-slots-slider__prev,
.gx-slots-slider__next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.gx-slots-slider__prev:hover,
.gx-slots-slider__next:hover {
  background: var(--color-card-hover);
  border-color: rgba(97, 199, 61, 0.35);
  color: var(--color-accent);
}

.gx-demo-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.gx-demo-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  max-height: 560px;
}

.gx-demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.gx-demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.gx-demo-cta__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .gx-pros-cons__grid {
    grid-template-columns: 1fr;
  }

  .gx-screenshots__grid {
    grid-template-columns: 1fr;
    display: none;
  }

  .gx-screenshots__slider {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .gx-slots-grid {
    display: none;
  }

  .gx-slots-slider {
    display: block;
    overflow: hidden;
  }

  .gx-demo-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gx-demo-cta .gx-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .gx-slots-slider__track .gx-slot-card {
    flex: 0 0 calc(100% - 8px);
  }
}

.gx-d-none-a {
  display: none;
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  height: 0;
  width: 0;
}
.elementor-widget-container > .e-transform {
  display: none;
}
.wp-content-placeholder {
  display: none;
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
}
.elementor-hidden-widget {
  display: none;
}
.yoast-hidden {
  display: none;
}
[data-wp-block] {
  display: none;
}

@media (max-width: 768px) {
  .gx-widget {
    left: 12px;
    right: 12px;
    transform: none;
    bottom: 12px;
    border-radius: var(--radius);
    padding: 10px 12px;
    gap: 10px;
  }

  .gx-widget__inner {
    gap: 10px;
    min-width: 0;
  }

  .gx-widget__text {
    font-size: 0.78rem;
    white-space: normal;
    min-width: 0;
  }

  .gx-widget__btn.gx-btn {
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  @keyframes gx-widget-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 380px) {
  .gx-widget__inner {
    flex-direction: column;
    gap: 8px;
  }

  .gx-widget__btn.gx-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
