*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #13151d;
  --c-hdr: #1b1d25;
  --c-btn-dark: #1f1f1f;
  --c-green: #61c73d;
  --c-text: #e8eaf0;
  --c-text-muted: #9aa0b4;
  --c-border: #2a2d3a;
  --c-card: #1e2130;
  --c-card2: #222539;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --font-main: "Montserrat", Inter, Roboto, Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-green);
  text-decoration: none;
}
a:hover {
  opacity: 0.85;
}

.gx-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.gx-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gx-hdr {
  background: var(--c-hdr);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.gx-hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.gx-logo img {
  height: 44px;
  width: auto;
}
.gx-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gx-nav a {
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.gx-nav a:hover {
  color: #fff;
  background: rgba(97, 199, 61, 0.12);
}
.gx-hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gx-online {
  font-size: 11px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.gx-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.gx-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.gx-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.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-mob-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--c-hdr);
  z-index: 998;
  flex-direction: column;
  padding: 24px 20px;
  gap: 8px;
  overflow-y: auto;
}
.gx-mob-menu.open {
  display: flex;
}
.gx-mob-menu a {
  color: var(--c-text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  opacity: 0.92;
}
.btn:active {
  transform: translateY(0);
}
.btn-dark {
  background: var(--c-btn-dark);
  color: #fff;
  border: 1px solid #333;
}
.btn-green {
  background: var(--c-green);
  color: #0d1208;
  font-weight: 800;
}
.btn-green:hover {
  box-shadow: 0 6px 24px rgba(97, 199, 61, 0.4);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 10px;
}
.btn-xl {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.gx-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-hdr);
}
.gx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gx-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.gx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(19, 21, 29, 0.92) 0%,
    rgba(19, 21, 29, 0.55) 60%,
    transparent 100%
  );
  z-index: 1;
}
.gx-hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  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.3);
  color: var(--c-green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.gx-hero h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-wrap: balance;
}
.gx-hero h1 span {
  color: var(--c-green);
}
.gx-hero-sub {
  font-size: 16px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 460px;
}
.gx-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gx-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.gx-hero-stat {
  text-align: center;
}
.gx-hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.gx-hero-stat span {
  font-size: 11px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gx-section {
  padding: 72px 0;
}
.gx-section-alt {
  background: var(--c-hdr);
}
.gx-sec-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  text-wrap: balance;
}
.gx-sec-sub {
  color: var(--c-text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.gx-divider {
  width: 48px;
  height: 3px;
  background: var(--c-green);
  border-radius: 2px;
  margin: 12px 0 32px;
}

.gx-adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.gx-adv-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.gx-adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(97, 199, 61, 0.06), transparent);
  pointer-events: none;
}
.gx-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.gx-adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(97, 199, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.gx-adv-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.gx-adv-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.gx-pros-cons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.gx-pc-col {
  flex: 1 1 calc(50% - 10px);
  min-width: 260px;
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.gx-pc-col.pros {
  border: 1px solid rgba(97, 199, 61, 0.3);
}
.gx-pc-col.cons {
  border: 1px solid rgba(255, 80, 80, 0.25);
}
.gx-pc-col h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gx-pc-col.pros h3 {
  color: var(--c-green);
}
.gx-pc-col.cons h3 {
  color: #ff6060;
}
.gx-pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gx-pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.6;
}
.gx-pc-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  margin-top: 1px;
}
.pros .gx-pc-list li::before {
  content: "+";
  background: rgba(97, 199, 61, 0.2);
  color: var(--c-green);
}
.cons .gx-pc-list li::before {
  content: "-";
  background: rgba(255, 80, 80, 0.15);
  color: #ff6060;
}

.gx-tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
thead {
  background: var(--c-hdr);
}
thead th {
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--c-border);
}
tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(97, 199, 61, 0.04);
}
tbody td {
  padding: 13px 18px;
  font-size: 13px;
  color: var(--c-text);
  text-align: left;
  vertical-align: middle;
}
.gx-mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-green);
}
.gx-mirror-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
}
.gx-mirror-link {
  color: var(--c-green);
  font-weight: 600;
  font-size: 13px;
}
.gx-mirror-link:hover {
  text-decoration: underline;
}
.gx-mirror-time {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 8px;
}

.gx-app-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.gx-app-tbl {
  flex: 1 1 320px;
}
.gx-app-btns {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}
.gx-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.gx-app-btn:hover {
  border-color: var(--c-green);
  transform: translateY(-2px);
  color: #fff;
}
.gx-app-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.gx-app-btn-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--c-text-muted);
  display: block;
}
.gx-app-btn-main {
  font-size: 14px;
  font-weight: 800;
  display: block;
}

.gx-demo {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.gx-demo-hdr {
  padding: 16px 20px;
  background: var(--c-hdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.gx-demo-hdr h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.gx-demo-tag {
  font-size: 11px;
  background: rgba(97, 199, 61, 0.15);
  color: var(--c-green);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
}
.gx-demo iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

.gx-review {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.gx-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.gx-author-ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green), #2a8a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.gx-author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.gx-author-info span {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.gx-author-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--c-green);
  margin-top: 4px;
}
.gx-content-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 12px;
}
.gx-content-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 22px 0 10px;
}
.gx-content-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin: 16px 0 8px;
}
.gx-content-body p {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 14px;
}
.gx-content-body ul,
.gx-content-body ol {
  color: var(--c-text-muted);
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.8;
}
.gx-content-body li {
  margin-bottom: 6px;
}
.gx-content-body a {
  color: var(--c-green);
}
.gx-content-body strong {
  color: var(--c-text);
  font-weight: 700;
}
.gx-content-body blockquote {
  border-left: 3px solid var(--c-green);
  padding: 12px 18px;
  background: rgba(97, 199, 61, 0.07);
  border-radius: 0 8px 8px 0;
  margin: 18px 0;
  font-style: italic;
  color: var(--c-text-muted);
  font-size: 14px;
}
.gx-content-body table {
  min-width: 300px;
  margin-bottom: 14px;
}
.gx-content-body table th,
.gx-content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  font-size: 13px;
}
.gx-content-body table th {
  background: var(--c-hdr);
  color: var(--c-text);
  font-weight: 700;
}

.gx-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gx-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.gx-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
  -webkit-user-select: none;
}
.gx-faq-q span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.gx-faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(97, 199, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.gx-faq-ico svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 2.5;
}
.gx-faq-item.open .gx-faq-ico {
  transform: rotate(180deg);
}
.gx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.gx-faq-item.open .gx-faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}
.gx-faq-a p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.8;
}

.gx-ftr {
  background: var(--c-hdr);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.gx-ftr-top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gx-ftr-brand {
  flex: 0 0 200px;
}
.gx-ftr-brand img {
  height: 40px;
  margin-bottom: 14px;
}
.gx-ftr-brand p {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.gx-ftr-nav {
  flex: 1 1 120px;
}
.gx-ftr-nav h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 14px;
}
.gx-ftr-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gx-ftr-nav ul a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color 0.2s;
}
.gx-ftr-nav ul a:hover {
  color: var(--c-green);
}
.gx-ftr-pay {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.gx-ftr-pay h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.gx-pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.gx-pay-logo {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 800;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.gx-prov-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.gx-prov-logo {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 700;
  color: var(--c-text-muted);
}
.gx-ftr-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  text-align: center;
}
.gx-ftr-copy {
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.8;
}
.gx-ftr-legal {
  font-size: 11px;
  color: rgba(154, 160, 180, 0.5);
  margin-top: 6px;
  line-height: 1.7;
}
.gx-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(97, 199, 61, 0.08);
  border: 1px solid rgba(97, 199, 61, 0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  color: var(--c-green);
  font-weight: 700;
  margin-top: 8px;
}

.gx-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0d3b00, #1a5c04);
  border-top: 2px solid var(--c-green);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(97, 199, 61, 0.2);
}
.gx-widget-text {
  display: flex;
  flex-direction: column;
}
.gx-widget-title {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.gx-widget-bonus {
  font-size: 18px;
  font-weight: 900;
  color: #ffe566;
  line-height: 1;
}
.gx-widget-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.gx-widget-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}
.gx-widget-close:hover {
  color: #fff;
}
.gx-widget a.btn-green {
  padding: 11px 28px;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(97, 199, 61, 0.45);
}

body.widget-closed .gx-widget {
  display: none;
}
body.widget-open {
  padding-bottom: 70px;
}

.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}
.elementor-widget-container {
  display: block;
}
.site-branding {
  display: inline-block;
}
.menu-item {
  display: inline-block;
}
.wp-block-spacer {
  height: 20px;
  display: block;
}
.aligncenter {
  margin: 0 auto;
  display: table;
}
.alignleft {
  float: left;
  margin-right: 16px;
}
.alignright {
  float: right;
  margin-left: 16px;
}
.wp-caption {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

@media (max-width: 1024px) {
  .gx-nav {
    display: none;
  }
  .gx-burger {
    display: flex;
  }
  .gx-adv-card {
    flex: 1 1 calc(50% - 16px);
  }
}
@media (max-width: 768px) {
  .gx-hero-content {
    padding: 40px 0;
  }
  .gx-hero h1 {
    font-size: 26px;
  }
  .gx-hero-stats {
    gap: 20px;
  }
  .gx-sec-title {
    font-size: 22px;
  }
  .gx-adv-card {
    flex: 1 1 100%;
  }
  .gx-pc-col {
    flex: 1 1 100%;
  }
  .gx-app-grid {
    flex-direction: column;
  }
  .gx-app-btns {
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .gx-ftr-top {
    flex-direction: column;
    gap: 32px;
  }
  .gx-ftr-brand {
    flex: none;
  }
  .gx-demo iframe {
    height: 380px;
  }
  .gx-widget {
    padding: 10px 14px;
  }
  .gx-widget-bonus {
    font-size: 15px;
  }
  .gx-review {
    padding: 20px 16px;
  }
}
@media (max-width: 480px) {
  .gx-hdr-inner {
    height: 60px;
  }
  .gx-hero {
    min-height: 400px;
  }
  .gx-hero-btns {
    flex-direction: column;
  }
  .btn-xl {
    padding: 13px 28px;
    font-size: 15px;
  }
  .gx-widget-text .gx-widget-bonus {
    font-size: 13px;
  }
}

.gx-app-tbl {
  min-width: 0;
}
@media (max-width: 768px) {
  .gx-app-tbl {
    flex: 1 1 100%;
    min-width: 0;
  }
  .gx-app-btns {
    flex: 1 1 100%;
  }
  .gx-app-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .gx-app-btns {
    flex-direction: column;
  }
  .gx-app-btn {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .gx-app-tbl table {
    min-width: 100%;
  }
}
