:root {
  --c-bg: #181819;
  --c-surface: #1e1f21;
  --c-surface2: #242527;
  --c-header: #232323;
  --c-border: #2e2f31;
  --c-accent: #eb880c;
  --c-accent-hover: #d4790a;
  --c-accent-glow: rgba(235, 136, 12, 0.25);
  --c-btn-dark: #2a2b2d;
  --c-btn-dark-hover: #333436;
  --c-text: #e8e8ea;
  --c-text-muted: #9a9ba0;
  --c-text-dim: #6b6c71;
  --c-white: #ffffff;
  --c-success: #22c55e;
  --c-danger: #ef4444;
  --c-gold: #f5c842;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 24px rgba(235, 136, 12, 0.18);
  --font-main: "Montserrat", "Inter", Arial, sans-serif;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.x-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.x-section {
  padding: 64px 0;
}
.x-section--sm {
  padding: 40px 0;
}

.x-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 28px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.x-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  border-radius: 2px;
}
.x-title-icon {
  width: 32px;
  height: 32px;
  background: var(--c-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-dark:hover {
  background: var(--c-btn-dark-hover);
  color: var(--c-white);
  border-color: #444;
  text-decoration: none;
}
.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(235, 136, 12, 0.3);
}
.btn-accent:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 6px 20px rgba(235, 136, 12, 0.45);
  color: var(--c-white);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-accent:active {
  transform: translateY(0);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}
.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

header.x-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.x-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.x-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.x-logo img {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
}
.x-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.x-nav a {
  color: var(--c-text-muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.x-nav a:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.07);
}
.x-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.x-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: var(--c-surface2);
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  white-space: nowrap;
}
.x-online-dot {
  width: 7px;
  height: 7px;
  background: var(--c-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.x-online-count {
  color: var(--c-success);
  font-weight: 700;
}

.x-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
}
.x-burger span {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.x-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.x-burger.active span:nth-child(2) {
  opacity: 0;
}
.x-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.x-mob-menu {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
  gap: 8px;
}
.x-mob-menu.open {
  display: flex;
}
.x-mob-menu a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.x-mob-menu a:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--c-border);
}

.x-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.x-hero-bg {
  position: absolute;
  inset: 0;
  background: url("/xban.jpg") center/cover no-repeat;
}
.x-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(24, 24, 25, 0.93) 0%,
    rgba(24, 24, 25, 0.65) 55%,
    rgba(24, 24, 25, 0.2) 100%
  );
}
.x-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.x-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(235, 136, 12, 0.12);
  border: 1px solid rgba(235, 136, 12, 0.35);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.x-hero h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.18;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.x-hero h1 span {
  color: var(--c-accent);
}
.x-hero p {
  font-size: 16px;
  color: rgba(232, 232, 234, 0.82);
  line-height: 1.65;
  margin-bottom: 28px;
}
.x-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.x-hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.x-hero-stat {
  display: flex;
  flex-direction: column;
}
.x-hero-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}
.x-hero-stat span {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 3px;
}

.x-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}
.x-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: auto;
}
.x-table th,
.x-table td {
  padding: 12px 18px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.x-table th {
  background: var(--c-surface2);
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.x-table tbody tr {
  transition: background var(--transition);
}
.x-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.x-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.x-table tbody tr:nth-child(even):hover {
  background: rgba(255, 255, 255, 0.04);
}
.x-table td {
  color: var(--c-text);
}
.x-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.x-table td strong {
  color: var(--c-white);
}
.x-table td a {
  color: var(--c-accent);
}
.x-table .btn {
  color: var(--c-white);
}

.x-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 600;
}
.x-badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.x-badge-orange {
  background: rgba(235, 136, 12, 0.14);
  color: var(--c-accent);
  border: 1px solid rgba(235, 136, 12, 0.25);
}
.x-badge-blue {
  background: rgba(59, 130, 246, 0.14);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.x-mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.x-mirrors-timestamp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  background: var(--c-surface2);
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--c-border);
}
.x-mirrors-timestamp .dot {
  width: 7px;
  height: 7px;
  background: var(--c-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.x-tours-grid {
  display: flex;
  gap: 20px;
}
.x-tour-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.x-tour-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
}
.x-tour-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    var(--shadow-glow);
  border-color: rgba(235, 136, 12, 0.3);
}
.x-tour-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
}
.x-tour-desc {
  font-size: 13.5px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.x-tour-prize {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-accent);
}
.x-tour-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.x-timer-blocks {
  display: flex;
  gap: 5px;
  align-items: center;
}
.x-timer-block {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 8px;
  text-align: center;
  min-width: 36px;
}
.x-timer-block .num {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  display: block;
}
.x-timer-block .lbl {
  font-size: 9px;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}
.x-timer-sep {
  color: var(--c-text-dim);
  font-weight: 700;
  font-size: 14px;
}

.x-tours-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.x-tours-slider-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--c-border);
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.x-tours-slider-nav button.active {
  background: var(--c-accent);
  width: 20px;
  border-radius: 4px;
}

.x-app-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.x-app-table-col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.x-app-btns-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  flex-shrink: 0;
}
.x-app-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  text-decoration: none;
  color: var(--c-text);
  transition: all var(--transition);
  cursor: pointer;
}
.x-app-dl-btn:hover {
  border-color: var(--c-accent);
  background: rgba(235, 136, 12, 0.07);
  color: var(--c-white);
  transform: translateX(3px);
  text-decoration: none;
}
.x-app-dl-btn-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}
.x-app-dl-btn-text {
  display: flex;
  flex-direction: column;
}
.x-app-dl-btn-text small {
  font-size: 10.5px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.x-app-dl-btn-text strong {
  font-size: 14px;
  font-weight: 700;
}

.x-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  background: #000;
  aspect-ratio: 16/9;
}
.x-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.x-demo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  background: #000;
}
.x-demo-wrap iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

.x-review {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}
.x-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.x-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), #f5a623);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-white);
  flex-shrink: 0;
}
.x-review-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.x-review-author-info strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}
.x-review-author-info span {
  font-size: 12.5px;
  color: var(--c-text-muted);
}
.x-review-author-info a {
  font-size: 12px;
  color: var(--c-accent);
}
.x-review-content {
  line-height: 1.8;
  color: var(--c-text);
}
.x-review-content h2,
.x-review-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  margin: 28px 0 12px;
  line-height: 1.3;
}
.x-review-content h3 {
  font-size: 17px;
}
.x-review-content p {
  margin-bottom: 16px;
}
.x-review-content ul,
.x-review-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.x-review-content li {
  margin-bottom: 7px;
  color: var(--c-text);
}
.x-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.x-review-content table th,
.x-review-content table td {
  padding: 11px 16px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.x-review-content table th {
  background: var(--c-surface2);
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.x-review-content a {
  color: var(--c-accent);
}
.x-review-content strong {
  color: var(--c-white);
  font-weight: 600;
}
.x-review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding-left: 18px;
  margin: 20px 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.x-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.x-faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.x-faq-item.open {
  border-color: rgba(235, 136, 12, 0.35);
}
.x-faq-q {
  padding: 17px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-white);
  user-select: none;
  transition: background var(--transition);
}
.x-faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.x-faq-icon {
  width: 24px;
  height: 24px;
  background: var(--c-surface2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 15px;
  color: var(--c-text-muted);
}
.x-faq-item.open .x-faq-icon {
  background: var(--c-accent);
  color: var(--c-white);
  transform: rotate(45deg);
}
.x-faq-a {
  padding: 0 22px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s ease;
}
.x-faq-item.open .x-faq-a {
  max-height: 400px;
  padding: 4px 22px 18px;
}

footer.x-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.x-footer-top {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.x-footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 180px;
}
.x-footer-logo {
  max-height: 40px;
  border-radius: 6px;
}
.x-footer-tagline {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 230px;
}
.x-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 160px;
}
.x-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-dim);
  margin-bottom: 6px;
}
.x-footer-col a {
  font-size: 13.5px;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.x-footer-col a:hover {
  color: var(--c-accent);
  text-decoration: none;
}
.x-footer-payments {
  margin-bottom: 28px;
}
.x-footer-payments-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-dim);
  margin-bottom: 12px;
}
.x-footer-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.x-footer-logo-badge {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.x-footer-logo-badge:hover {
  border-color: var(--c-accent);
  color: var(--c-white);
  background: rgba(235, 136, 12, 0.07);
  text-decoration: none;
}
.x-footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.x-footer-copy {
  font-size: 12.5px;
  color: var(--c-text-dim);
  line-height: 1.6;
  max-width: 680px;
}
.x-footer-copy strong {
  color: var(--c-text-muted);
}

.x-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1a1a1b, #232323);
  border-top: 2px solid var(--c-accent);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  animation: widgetSlide 0.5s ease 1s both;
}
@keyframes widgetSlide {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.x-widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.x-widget-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}
.x-widget-text span {
  font-size: 12px;
  color: var(--c-text-muted);
}
.x-widget-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.x-widget-bonus {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(235, 136, 12, 0.12);
  border: 1px solid rgba(235, 136, 12, 0.3);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 600;
  white-space: nowrap;
}
.x-widget-close {
  background: transparent;
  border: none;
  color: var(--c-text-dim);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.x-widget-close:hover {
  color: var(--c-text);
}

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

.x-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 0;
}

.x4k9z {
  display: none;
}
.wp-block-group {
  display: contents;
}
.wp-content-area {
  position: relative;
}
.elementor-hidden {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.wpcf7-hidden {
  display: none;
}
.entry-meta {
  display: none;
}

@media (max-width: 991px) {
  .x-nav {
    display: none;
  }
  .x-burger {
    display: flex;
  }
  .x-app-grid {
    flex-direction: column;
  }
  .x-app-btns-col {
    min-width: 100%;
  }
  .x-footer-top {
    gap: 28px;
  }
  .x-review {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .x-section {
    padding: 44px 0;
  }
  .x-hero {
    min-height: 420px;
  }
  .x-hero p {
    font-size: 14.5px;
  }
  .x-header-inner {
    height: 60px;
  }
  .x-online {
    display: none;
  }
  .x-tours-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .x-tour-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
  .x-tours-slider-nav {
    display: flex;
  }
  .x-demo-wrap iframe {
    height: 400px;
  }
  .x-footer-col {
    min-width: 130px;
  }
  .x-app-grid {
    flex-direction: column;
  }
  .x-app-table-col {
    width: 100%;
  }
  .x-app-table-col .card {
    padding: 12px;
  }
  .x-app-table-col .x-table {
    min-width: 0;
  }
  .x-app-table-col .x-table td:first-child {
    white-space: normal;
  }
  .x-app-btns-col {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .x-wrap {
    padding: 0 14px;
  }
  .x-hero {
    min-height: 380px;
  }
  .x-hero h1 {
    font-size: 26px;
  }
  .x-hero-btns {
    flex-direction: column;
  }
  .x-widget {
    padding: 12px 14px;
    gap: 10px;
  }
  .x-widget-bonus {
    display: none;
  }
  .x-footer-bottom {
    flex-direction: column;
  }
  .x-table th,
  .x-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
