*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #1b2b38;
  --c-bg-card: #1e3245;
  --c-bg-card2: #22384e;
  --c-header: #162330;
  --c-footer: #111e29;
  --c-btn-primary: #1b2c3d;
  --c-btn-accent: #dbfc4f;
  --c-text: #e8edf2;
  --c-text-muted: #8fa3b3;
  --c-text-dark: #0e1a23;
  --c-border: #2a3f52;
  --c-accent: #dbfc4f;
  --c-accent2: #b8d63a;
  --c-green: #2ecc71;
  --c-red: #e74c3c;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.22s ease;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-accent2);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: #fff;
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
}
p {
  line-height: 1.7;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.x7k2p {
  display: none;
}
.wp-block-group {
  display: block;
}
.wp-site-blocks {
  display: block;
}
.elementor-invisible {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.gm-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.gm-section {
  padding: 60px 0;
}
.gm-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.gm-section-title h2 {
  margin-bottom: 10px;
}
.gm-section-title p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.gm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.gm-btn-primary {
  background: var(--c-btn-primary);
  color: #fff;
  border: 1px solid #2a4058;
}
.gm-btn-primary:hover {
  background: #243d52;
  color: #fff;
  border-color: #3a5572;
}
.gm-btn-accent {
  background: var(--c-accent);
  color: var(--c-text-dark);
  border: 1px solid var(--c-accent);
}
.gm-btn-accent:hover {
  background: var(--c-accent2);
  color: var(--c-text-dark);
}
.gm-btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.gm-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.gm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#gm-header {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.gm-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
  flex-wrap: nowrap;
}
.gm-logo {
  flex-shrink: 0;
}
.gm-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.gm-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.gm-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gm-nav ul li a {
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.gm-nav ul li a:hover,
.gm-nav ul li a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.gm-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.gm-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.gm-online-dot {
  width: 7px;
  height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
  }
}
.gm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.gm-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.25s;
}
.gm-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gm-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.gm-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.gm-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  z-index: 999;
  padding: 16px 20px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.gm-mobile-menu.open {
  display: block;
}
.gm-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.gm-mobile-menu ul li a {
  display: block;
  padding: 10px 12px;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}
.gm-mobile-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.gm-mobile-menu-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#gm-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.gm-hero-bg {
  position: absolute;
  inset: 0;
  background: url("/bantype.jpeg") center/cover no-repeat;
}
.gm-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 30, 41, 0.95) 40%,
    rgba(17, 30, 41, 0.6) 100%
  );
}
.gm-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.gm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(219, 252, 79, 0.12);
  border: 1px solid rgba(219, 252, 79, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.gm-hero-content h1 {
  max-width: 600px;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.gm-hero-content h1 span {
  color: var(--c-accent);
}
.gm-hero-desc {
  max-width: 520px;
  color: rgba(232, 237, 242, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.gm-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.gm-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.gm-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gm-hero-stat strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.gm-hero-stat span {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gm-breadcrumbs {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
}
.gm-breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.gm-breadcrumbs a {
  color: var(--c-text-muted);
}
.gm-breadcrumbs a:hover {
  color: var(--c-accent);
}
.gm-breadcrumbs .sep {
  color: var(--c-text-muted);
  opacity: 0.4;
}
.gm-breadcrumbs .current {
  color: var(--c-text);
}

#gm-info .gm-info-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.gm-info-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.gm-info-table tr {
  border-bottom: 1px solid var(--c-border);
}
.gm-info-table tr:last-child {
  border-bottom: none;
}
.gm-info-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.gm-info-table td {
  padding: 13px 18px;
  text-align: left;
  vertical-align: top;
}
.gm-info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  white-space: nowrap;
  width: 40%;
}
.gm-info-table td:last-child {
  color: #fff;
  font-weight: 500;
}
.gm-info-table td .gm-tag {
  display: inline-flex;
  background: rgba(219, 252, 79, 0.1);
  border: 1px solid rgba(219, 252, 79, 0.2);
  color: var(--c-accent);
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 0.78rem;
  margin: 2px 3px 2px 0;
}
.gm-info-table td .gm-rating-stars {
  color: var(--c-accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

.gm-advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.gm-adv-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 220px;
  padding: 24px;
  display: flex;
  gap: 14px;
}
.gm-adv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(219, 252, 79, 0.1);
  border: 1px solid rgba(219, 252, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.gm-adv-body h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.gm-adv-body p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.gm-slider-wrap {
  position: relative;
  overflow: hidden;
}
.gm-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gm-slider-item {
  flex-shrink: 0;
  width: calc(33.333% - 14px);
}
.gm-slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.gm-slider-prev,
.gm-slider-next {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}
.gm-slider-prev:hover,
.gm-slider-next:hover {
  background: var(--c-accent);
  color: var(--c-text-dark);
  border-color: var(--c-accent);
}
.gm-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gm-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: all var(--transition);
  cursor: pointer;
}
.gm-slider-dot.active {
  background: var(--c-accent);
  width: 20px;
  border-radius: 50px;
}

.gm-tournament-card {
  padding: 22px;
}
.gm-tournament-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.gm-tournament-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.gm-tournament-prize {
  background: linear-gradient(135deg, #dbfc4f, #b8d63a);
  color: var(--c-text-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}
.gm-tournament-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.gm-tournament-timer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.gm-timer-label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-right: 4px;
}
.gm-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(219, 252, 79, 0.08);
  border: 1px solid rgba(219, 252, 79, 0.15);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  min-width: 44px;
}
.gm-timer-num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}
.gm-timer-lbl {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.gm-tournament-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.gm-tournament-participants {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.gm-bonus-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gm-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(219, 252, 79, 0.1);
  border: 1px solid rgba(219, 252, 79, 0.25);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--c-accent);
  font-weight: 600;
  width: fit-content;
}
.gm-bonus-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.gm-bonus-amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}
.gm-bonus-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.gm-bonus-terms {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  opacity: 0.7;
  border-top: 1px solid var(--c-border);
  padding-top: 10px;
  margin-top: 4px;
}

#gm-demo {
  background: rgba(0, 0, 0, 0.2);
}
.gm-demo-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.gm-demo-info {
  flex: 1;
  min-width: 260px;
}
.gm-demo-info h2 {
  margin-bottom: 14px;
}
.gm-demo-info p {
  color: var(--c-text-muted);
  font-size: 0.93rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.gm-demo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.gm-demo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.gm-demo-feature svg {
  color: var(--c-accent);
  flex-shrink: 0;
}
.gm-demo-frame {
  flex: 1.5;
  min-width: 280px;
}
.gm-demo-frame-wrap {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: #000;
  aspect-ratio: 16/9;
}
.gm-demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#gm-review {
  background: rgba(0, 0, 0, 0.15);
}
.gm-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}
.gm-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #243d52, #1b2c3d);
  border: 2px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-accent);
  flex-shrink: 0;
}
.gm-author-info h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 3px;
}
.gm-author-info p {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}
.gm-author-link {
  margin-left: auto;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.gm-content-box {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.gm-content-box h1,
.gm-content-box h2,
.gm-content-box h3,
.gm-content-box h4 {
  margin: 1.4em 0 0.6em;
  color: #fff;
}
.gm-content-box h1 {
  font-size: 1.5rem;
}
.gm-content-box h2 {
  font-size: 1.25rem;
}
.gm-content-box h3 {
  font-size: 1.08rem;
}
.gm-content-box p {
  color: var(--c-text);
  margin-bottom: 1em;
  line-height: 1.75;
}
.gm-content-box ul,
.gm-content-box ol {
  padding-left: 22px;
  margin-bottom: 1em;
}
.gm-content-box ul {
  list-style: disc;
}
.gm-content-box ol {
  list-style: decimal;
}
.gm-content-box li {
  margin-bottom: 0.45em;
  color: var(--c-text);
  line-height: 1.65;
}
.gm-content-box a {
  color: var(--c-accent);
  text-decoration: underline;
}
.gm-content-box a:hover {
  color: var(--c-accent2);
}
.gm-content-box table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
}
.gm-content-box table th,
.gm-content-box table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.gm-content-box table th {
  background: var(--c-bg-card2);
  color: #fff;
  font-weight: 600;
}
.gm-content-box table td {
  color: var(--c-text);
}
.gm-content-box table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.gm-content-box blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 10px 18px;
  margin: 1em 0;
  background: rgba(219, 252, 79, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.gm-content-box strong {
  color: #fff;
  font-weight: 700;
}
.gm-content-box em {
  color: var(--c-accent);
}
.gm-content-box img {
  border-radius: var(--radius-sm);
  margin: 1em auto;
}
.gm-content-box hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.5em 0;
}
.gm-content-placeholder {
  color: var(--c-text-muted);
  font-style: italic;
  font-size: 0.93rem;
  background: rgba(219, 252, 79, 0.04);
  border: 1px dashed rgba(219, 252, 79, 0.2);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}

#gm-faq {
  background: rgba(0, 0, 0, 0.1);
}
.gm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.gm-faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.gm-faq-item.open {
  border-color: rgba(219, 252, 79, 0.3);
}
.gm-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  user-select: none;
}
.gm-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(219, 252, 79, 0.1);
  border: 1px solid rgba(219, 252, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-accent);
  font-size: 0.9rem;
  transition: transform var(--transition);
}
.gm-faq-item.open .gm-faq-icon {
  transform: rotate(45deg);
  background: var(--c-accent);
  color: var(--c-text-dark);
}
.gm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
}
.gm-faq-item.open .gm-faq-answer {
  max-height: 400px;
}
.gm-faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

#gm-footer {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 24px;
}
.gm-footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
.gm-footer-brand {
  flex: 1.5;
  min-width: 220px;
}
.gm-footer-logo {
  margin-bottom: 14px;
}
.gm-footer-logo img {
  height: 36px;
  width: auto;
}
.gm-footer-desc {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 280px;
}
.gm-footer-col {
  flex: 1;
  min-width: 140px;
}
.gm-footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gm-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gm-footer-col ul li a {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.gm-footer-col ul li a:hover {
  color: var(--c-accent);
}
.gm-footer-payment {
  margin-bottom: 24px;
}
.gm-footer-payment h4,
.gm-footer-providers h4 {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gm-payment-logos,
.gm-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gm-payment-badge,
.gm-provider-badge {
  background: var(--c-bg-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.gm-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gm-footer-legal {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  opacity: 0.65;
  line-height: 1.6;
  max-width: 700px;
}
.gm-footer-copy {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-align: right;
  flex-shrink: 0;
}

#gm-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: linear-gradient(90deg, var(--c-header), #1e3245);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.gm-widget-text {
  font-size: 0.9rem;
  color: var(--c-text);
}
.gm-widget-text strong {
  color: var(--c-accent);
}
.gm-widget-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.gm-widget-close:hover {
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .gm-nav ul {
    gap: 2px;
  }
  .gm-nav ul li a {
    padding: 6px 8px;
    font-size: 0.82rem;
  }
}
@media (max-width: 860px) {
  .gm-nav {
    display: none;
  }
  .gm-burger {
    display: flex;
  }
  .gm-online-badge {
    display: none;
  }
  .gm-slider-item {
    width: calc(50% - 10px);
  }
  .gm-adv-card {
    flex: 1 1 calc(50% - 10px);
  }
  .gm-demo-inner {
    flex-direction: column;
  }
  .gm-footer-col {
    min-width: 130px;
  }
  .gm-header-right .gm-btn-primary {
    display: none;
  }
}
@media (max-width: 600px) {
  .gm-section {
    padding: 40px 0;
  }
  .gm-hero-content {
    padding: 52px 0;
  }
  .gm-slider-item {
    width: calc(100% - 0px);
  }
  .gm-adv-card {
    flex: 1 1 100%;
  }
  .gm-hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .gm-hero-btns .gm-btn {
    width: 100%;
    justify-content: center;
  }
  .gm-footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .gm-footer-bottom {
    flex-direction: column;
  }
  .gm-footer-copy {
    text-align: left;
  }
  #gm-widget {
    padding: 10px 48px 10px 16px;
  }
  .gm-widget-text {
    font-size: 0.82rem;
  }
  .gm-content-box {
    padding: 18px 16px;
  }
  .gm-info-table td {
    padding: 10px 12px;
  }
}
.wp-content {
  display: none;
}
.wp-block-navigation {
  display: none;
}
.entry-meta {
  display: none;
}
.post-thumbnail {
  display: none;
}
