:root {
  --clr-bg: #1c1c1c;
  --clr-surface: #242424;
  --clr-surface2: #2d2d2d;
  --clr-accent: #98c453;
  --clr-accent-dark: #7aaa35;
  --clr-text: #e8e8e8;
  --clr-text-muted: #a0a0a0;
  --clr-border: #383838;
  --clr-white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 4px 20px rgba(152, 196, 83, 0.25);
  --transition: 0.25s ease;
  --font-main: "Open Sans", Arial, sans-serif;
  --font-head: "Roboto", Arial, 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);
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-accent-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-white);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.x9f2k {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-login {
  background: var(--clr-surface2);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn-login:hover {
  background: var(--clr-border);
  color: var(--clr-white);
}

.btn-signup {
  background: var(--clr-accent);
  color: #121212;
  box-shadow: var(--shadow-accent);
}
.btn-signup:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(152, 196, 83, 0.4);
}

.btn-hero {
  background: var(--clr-accent);
  color: #121212;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-accent);
}
.btn-hero:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(152, 196, 83, 0.45);
}

.sec-title {
  text-align: center;
  margin-bottom: 36px;
}
.sec-title h2 {
  margin-bottom: 8px;
}
.sec-title p {
  color: var(--clr-text-muted);
  font-size: 15px;
}

.sec-divider {
  width: 50px;
  height: 3px;
  background: var(--clr-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

section,
.fp-section {
  padding: 72px 0;
}

.fp-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.fp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  background: var(--clr-accent);
  color: #121212;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#b7a3header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hdr-logo img {
  height: 42px;
  width: auto;
}

.hdr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hdr-nav a {
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.hdr-nav a:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.06);
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-right: 8px;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 6px var(--clr-accent);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 18, 18, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 20px 40px;
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  color: var(--clr-white);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
}
.mob-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--clr-text);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

#m3xhero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-surface);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/fban.jpg") center/cover no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 28, 28, 0.95) 40%,
    rgba(28, 28, 28, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--clr-white);
}
.hero-content h1 span {
  color: var(--clr-accent);
}
.hero-content p {
  font-size: 17px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta-item {
  text-align: center;
}
.hero-meta-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--clr-accent);
  font-family: var(--font-head);
}
.hero-meta-item span {
  font-size: 12px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#k4qtable {
  padding: 72px 0;
}
.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fp-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.fp-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.fp-table tr:last-child {
  border-bottom: none;
}
.fp-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.fp-table td {
  padding: 13px 20px;
  font-size: 14px;
  line-height: 1.5;
}
.fp-table td:first-child {
  width: 38%;
  color: var(--clr-text-muted);
  font-weight: 600;
  border-right: 1px solid var(--clr-border);
  white-space: nowrap;
}
.fp-table td:last-child {
  color: var(--clr-text);
}
.fp-table .td-accent {
  color: var(--clr-accent);
  font-weight: 700;
}
.fp-table .td-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

#v2xshots {
  padding: 72px 0;
}
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: all var(--transition);
  aspect-ratio: 16/9;
}
.shot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.shot-item:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 0 20px rgba(152, 196, 83, 0.2);
}
.shot-item:hover img {
  transform: scale(1.04);
}

.shots-slider {
  display: none;
  position: relative;
  overflow: hidden;
}
.shots-slider-track {
  display: flex;
  transition: transform 0.35s ease;
}
.shots-slider-track .shot-item {
  flex: 0 0 85%;
  margin-right: 12px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--clr-accent);
}

#r5xtourn {
  padding: 72px 0;
  background: var(--clr-surface);
}
.tourn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tourn-card {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.tourn-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.tourn-img {
  height: 140px;
  background: linear-gradient(135deg, #2d2d2d 0%, #383838 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.tourn-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(28, 28, 28, 0.8));
}
.tourn-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tourn-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  font-family: var(--font-head);
}
.tourn-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
  flex: 1;
}
.tourn-prize {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-accent);
  font-family: var(--font-head);
}
.tourn-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tourn-timer {
  display: flex;
  gap: 6px;
  font-size: 12px;
}
.timer-unit {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 4px 8px;
  text-align: center;
  min-width: 42px;
}
.timer-unit strong {
  display: block;
  font-size: 16px;
  color: var(--clr-white);
  font-family: var(--font-head);
}
.timer-unit span {
  font-size: 9px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
}

.tourn-slider-track .tourn-card {
  flex: 0 0 calc(85% - 8px);
  margin-right: 16px;
}

#e6xvideo {
  padding: 72px 0;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#p7xdemo {
  padding: 72px 0;
  background: var(--clr-surface);
}
.demo-wrap {
  position: relative;
  padding-bottom: 62%;
  height: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: #0a0a0a;
  box-shadow: var(--shadow);
}
.demo-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--clr-text-muted);
  font-size: 15px;
}
.demo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

#w8xreview {
  padding: 72px 0;
}
.review-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.review-content-box {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 40px;
}
.review-content-box h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--clr-white);
}
.review-content-box h2 {
  font-size: 1.4rem;
  margin: 28px 0 12px;
  color: var(--clr-white);
}
.review-content-box h3 {
  font-size: 1.15rem;
  margin: 22px 0 10px;
  color: var(--clr-accent);
}
.review-content-box p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--clr-text);
}
.review-content-box a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.review-content-box ul,
.review-content-box ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.review-content-box li {
  margin-bottom: 8px;
  line-height: 1.65;
  color: var(--clr-text);
}
.review-content-box table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.review-content-box table th,
.review-content-box table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  text-align: left;
  font-size: 14px;
}
.review-content-box table th {
  background: var(--clr-surface2);
  color: var(--clr-white);
  font-weight: 600;
}
.review-content-box blockquote {
  border-left: 3px solid var(--clr-accent);
  padding-left: 16px;
  margin: 20px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.review-content-box strong {
  color: var(--clr-white);
}
.review-content-box em {
  color: var(--clr-text-muted);
}
.review-content-box img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 24px;
}
.sidebar-box h3 {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--clr-white);
}
.author-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-surface2);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-accent);
  font-family: var(--font-head);
}
.author-name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 15px;
}
.author-role {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.author-bio {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.author-link {
  font-size: 13px;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: #f5a623;
  font-size: 20px;
}
.rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-accent);
  font-family: var(--font-head);
}
.rating-label {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.rating-rows {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.rating-row span {
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.rating-bar {
  flex: 1;
  height: 5px;
  background: var(--clr-border);
  border-radius: 3px;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  background: var(--clr-accent);
  border-radius: 3px;
}
.rating-val {
  color: var(--clr-white);
  font-weight: 600;
  font-size: 13px;
  min-width: 24px;
  text-align: right;
}

/* ── FAQ ─────────────────────────────────────────────────── */
#q9xfaq {
  padding: 72px 0;
  background: var(--clr-surface);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--clr-accent);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  color: var(--clr-white);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-head);
}
.faq-q:hover {
  color: var(--clr-accent);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  transition: all var(--transition);
  color: var(--clr-text-muted);
}
.faq-item.open .faq-icon {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #121212;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s ease;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 600px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
#t1xfooter {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-logo img {
  height: 38px;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links ul li a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer-links ul li a:hover {
  color: var(--clr-accent);
}

.footer-providers h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}
.prov-logos,
.pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.prov-tag,
.pay-tag {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.pay-tag {
  color: var(--clr-text);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 780px;
}

/* ── WIDGET ──────────────────────────────────────────────── */
#b2xwidget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #1a2a10 0%, #242424 100%);
  border-top: 2px solid var(--clr-accent);
  z-index: 900;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.widget-text {
  display: flex;
  flex-direction: column;
}
.widget-text strong {
  font-size: 14px;
  color: var(--clr-white);
}
.widget-text span {
  font-size: 12px;
  color: var(--clr-accent);
}
.widget-close {
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  margin-left: auto;
}
.widget-close:hover {
  color: var(--clr-white);
}

body.widget-open {
  padding-bottom: 68px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-up.delay-1 {
  animation-delay: 0.1s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.2s;
}
.fade-in-up.delay-3 {
  animation-delay: 0.35s;
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.shine {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  background-size: 400px 100%;
  animation: shimmer 2.8s infinite linear;
}

@media (max-width: 1024px) {
  .review-inner {
    grid-template-columns: 1fr;
  }
  .review-sidebar {
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hdr-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hdr-inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .online-count span {
    display: none;
  }

  .shots-grid {
    display: none;
  }
  .shots-slider {
    display: block;
  }

  .tourn-grid {
    display: none;
  }
  .tourn-slider {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid > :first-child {
    grid-column: auto;
  }

  .review-sidebar {
    grid-template-columns: 1fr;
  }

  #m3xhero {
    min-height: 420px;
  }
  .hero-meta {
    gap: 18px;
  }

  section,
  .fp-section {
    padding: 52px 0;
  }

  #b2xwidget {
    flex-wrap: wrap;
  }
  .widget-text strong {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-hero {
    width: 100%;
    justify-content: center;
  }
  .tourn-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .review-content-box {
    padding: 24px 16px;
  }
}

.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.wp-block-column {
  flex: 1;
  min-width: 200px;
}
.entry-content {
  display: block;
}
.elementor-section {
  display: block;
}
.wp-site-blocks {
  display: block;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wp-content-dir {
  display: none;
  visibility: hidden;
}
.yoast-seo-meta-tag {
  display: none;
}

.tourn-slider {
  display: none !important;
}

@media (max-width: 768px) {
  .tourn-grid {
    display: none !important;
  }
  .tourn-slider {
    display: block !important;
  }
}
