@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
  --c-bg: #0a0b0e;
  --c-nav: #111111;
  --c-btn-primary: #e65100;
  --c-btn-secondary: #ff5722;
  --c-text: #e8e8e8;
  --c-text-muted: #9a9a9a;
  --c-accent: #ff6d3a;
  --c-gold: #ffd54f;
  --c-border: #1e2130;
  --c-card: #13151d;
  --c-card-hover: #181b26;
  --radius: 10px;
  --radius-lg: 16px;
  --font-main: 'Orbitron', sans-serif;
  --transition: 0.25s 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.7;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  line-height: 1.3;
  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(1rem, 2vw, 1.35rem); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--c-text); }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem auto;
  font-size: 0.9rem;
}
table th, table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  text-align: left;
}
table th {
  background: var(--c-nav);
  color: var(--c-gold);
  font-weight: 700;
}
table tr:nth-child(even) { background: #0e1018; }
table tr:hover { background: var(--c-card-hover); }

.xb29k-wrap { max-width: 1280px; 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);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #e65100, #bf360c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff6d3a, #e65100);
  box-shadow: 0 6px 22px rgba(230, 81, 0, 0.55);
  color: #fff;
}
.btn-secondary {
  background: linear-gradient(135deg, #ff5722, #e64a19);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #ff7043, #ff5722);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--c-btn-secondary);
  border: 2px solid var(--c-btn-secondary);
}
.btn-outline:hover {
  background: var(--c-btn-secondary);
  color: #fff;
}
.btn-demo {
  background: transparent;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  font-size: 0.75rem;
}
.btn-demo:hover {
  background: var(--c-card);
  color: #fff;
  border-color: var(--c-btn-secondary);
}
.btn-sm { padding: 7px 16px; font-size: 0.72rem; }
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }

.xk3r-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.xk3r-section-title h2 { margin-bottom: 0.5rem; }
.xk3r-section-title p { color: var(--c-text-muted); font-size: 0.88rem; max-width: 600px; margin: 0 auto; }

.xk3r-section-title .section-badge {
  display: inline-block;
  background: rgba(255, 87, 34, 0.15);
  color: var(--c-btn-secondary);
  border: 1px solid rgba(255, 87, 34, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.x7f2a-section {
  padding: 70px 0;
}
.x7f2a-section-alt {
  padding: 70px 0;
  background: #0d0e14;
}

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

.x4n7m-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-nav);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.x4n7m-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.x4n7m-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.x4n7m-logo img {
  height: 50px;
  width: auto;
}
.x4n7m-logo-text {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
}
.x4n7m-logo-text span { color: var(--c-btn-secondary); }

.x4n7m-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.x4n7m-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
}
.x4n7m-nav a:hover, .x4n7m-nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.x4n7m-nav-icon { width: 16px; height: 16px; flex-shrink: 0; }

.x4n7m-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.x4n7m-winner-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 87, 34, 0.08);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.7rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  max-width: 220px;
}
.x4n7m-winner-ticker .winner-dot {
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: xb8k2-pulse 1.5s infinite;
}
.x4n7m-winner-ticker .winner-name { color: var(--c-gold); font-weight: 700; }
.x4n7m-winner-ticker .winner-amount { color: #4caf50; font-weight: 700; }

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

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

.x4n7m-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-nav);
  z-index: 999;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.x4n7m-mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.x4n7m-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--c-text);
  border: 1px solid var(--c-border);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.x4n7m-mobile-menu a:hover { background: var(--c-card); border-color: var(--c-btn-secondary); }
.x4n7m-mobile-menu-btns {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.x4n7m-mobile-menu-btns .btn { flex: 1; justify-content: center; }

.xh5f0-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.xh5f0-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/money-train-3-hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.xh5f0-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,14,0.92) 45%, rgba(10,11,14,0.3) 100%);
}

.xh5f0-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}

.xh5f0-hero-content { max-width: 580px; }

.xh5f0-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 87, 34, 0.15);
  border: 1px solid rgba(255, 87, 34, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-btn-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.xh5f0-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--c-btn-secondary);
  border-radius: 50%;
  animation: xb8k2-pulse 1.5s infinite;
}

.xh5f0-hero h1 {
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.xh5f0-hero h1 span { color: var(--c-btn-secondary); }

.xh5f0-hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-family: var(--font-main);
}

.xh5f0-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.xh5f0-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.xh5f0-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.xh5f0-stat-label {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

.xh5f0-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.xh5f0-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  animation: xf3t1-bounce 2s infinite;
}
.xh5f0-hero-scroll svg { width: 20px; height: 20px; }

@keyframes xf3t1-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.xf7a2-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.xf7a2-feature-card {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 240px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.xf7a2-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-btn-primary), var(--c-btn-secondary));
  opacity: 0;
  transition: opacity var(--transition);
}
.xf7a2-feature-card:hover { transform: translateY(-5px); border-color: rgba(255, 87, 34, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.xf7a2-feature-card:hover::before { opacity: 1; }

.xf7a2-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 87, 34, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 87, 34, 0.2);
}
.xf7a2-icon svg { width: 26px; height: 26px; color: var(--c-btn-secondary); }

.xf7a2-feature-card h3 { font-size: 0.9rem; margin-bottom: 8px; color: #fff; }
.xf7a2-feature-card p { font-size: 0.8rem; color: var(--c-text-muted); margin: 0; line-height: 1.6; }

.xl8n3-leaderboard {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.xl8n3-leaderboard-header {
  background: var(--c-nav);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
}
.xl8n3-leaderboard-header h3 { font-size: 0.95rem; color: #fff; margin: 0; }
.xl8n3-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: #4caf50;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.xl8n3-live-badge span {
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  animation: xb8k2-pulse 1.5s infinite;
}

.xl8n3-table { width: 100%; overflow-x: auto; }
.xl8n3-table table { margin: 0; }
.xl8n3-table table th { background: rgba(255, 87, 34, 0.08); color: var(--c-text-muted); font-size: 0.68rem; }
.xl8n3-rank-1 td:first-child { color: var(--c-gold); font-weight: 800; }
.xl8n3-rank-2 td:first-child { color: #c0c0c0; font-weight: 700; }
.xl8n3-rank-3 td:first-child { color: #cd7f32; font-weight: 700; }
.xl8n3-amount { color: #4caf50; font-weight: 700; }

.xg4p7-demo-wrapper {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.xg4p7-demo-top {
  background: var(--c-nav);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
  gap: 12px;
}
.xg4p7-demo-top h3 { font-size: 0.9rem; margin: 0; }
.xg4p7-demo-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.xg4p7-demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.xg4p7-demo-bottom {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.xg4p7-demo-info { font-size: 0.75rem; color: var(--c-text-muted); }
.xg4p7-demo-info strong { color: var(--c-gold); }

.xs9r1-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.xs9r1-game-card {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 240px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.xs9r1-game-card:hover { transform: translateY(-4px); border-color: rgba(255, 87, 34, 0.3); }
.xs9r1-game-thumb {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.xs9r1-game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.xs9r1-game-card:hover .xs9r1-game-thumb img { transform: scale(1.05); }
.xs9r1-game-info { padding: 18px; }
.xs9r1-game-info h3 { font-size: 0.85rem; margin-bottom: 6px; }
.xs9r1-game-info p { font-size: 0.75rem; color: var(--c-text-muted); margin-bottom: 14px; line-height: 1.5; }
.xs9r1-game-btns { display: flex; gap: 8px; }

.xr6m2-review {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.xr6m2-review h2, .xr6m2-review h3, .xr6m2-review h4 { color: #fff; margin: 1.5rem 0 0.75rem; }
.xr6m2-review h2 { font-size: 1.4rem; border-bottom: 1px solid var(--c-border); padding-bottom: 0.75rem; }
.xr6m2-review h3 { font-size: 1.1rem; color: var(--c-gold); }
.xr6m2-review p { color: var(--c-text); line-height: 1.8; }
.xr6m2-review ul, .xr6m2-review ol { color: var(--c-text); }
.xr6m2-review ul li, .xr6m2-review ol li { margin-bottom: 0.5rem; line-height: 1.7; }
.xr6m2-review a { color: var(--c-btn-secondary); }
.xr6m2-review a:hover { color: var(--c-accent); text-decoration: underline; }
.xr6m2-review table { font-size: 0.85rem; }
.xr6m2-review strong { color: #fff; }
.xr6m2-review blockquote {
  border-left: 3px solid var(--c-btn-secondary);
  padding: 12px 20px;
  background: rgba(255, 87, 34, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  color: var(--c-text);
  font-style: italic;
}

.xq5t9-faq {margin: 0 auto; }
.xq5t9-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.xq5t9-faq-item.open { border-color: rgba(255, 87, 34, 0.3); }
.xq5t9-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.xq5t9-faq-question h3 { font-size: 0.88rem; font-weight: 600; color: #fff; margin: 0; flex: 1; }
.xq5t9-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.xq5t9-faq-icon svg { width: 14px; height: 14px; color: var(--c-btn-secondary); transition: transform var(--transition); }
.xq5t9-faq-item.open .xq5t9-faq-icon svg { transform: rotate(45deg); }
.xq5t9-faq-item.open .xq5t9-faq-icon { background: rgba(255, 87, 34, 0.2); }
.xq5t9-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.xq5t9-faq-item.open .xq5t9-faq-answer { max-height: 600px; }
.xq5t9-faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}

.xa3k6-author {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.xa3k6-author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 87, 34, 0.4);
}
.xa3k6-author-info { flex: 1; }
.xa3k6-author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.xa3k6-author-title {
  font-size: 0.75rem;
  color: var(--c-btn-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.xa3k6-author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.xa3k6-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--c-text-muted);
}
.xa3k6-meta-item svg { width: 13px; height: 13px; color: var(--c-btn-secondary); }
.xa3k6-author-bio { font-size: 0.8rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }
.xa3k6-author-links { display: flex; gap: 8px; flex-wrap: wrap; }
.xa3k6-author-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.xa3k6-author-link:hover { border-color: var(--c-btn-secondary); color: var(--c-btn-secondary); }
.xa3k6-author-link svg { width: 13px; height: 13px; }
.xa3k6-author-dates {
  margin-top: 12px;
  font-size: 0.68rem;
  color: var(--c-text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.xft2c-footer {
  background: var(--c-nav);
  border-top: 1px solid var(--c-border);
  padding: 50px 0 0;
}
.xft2c-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.xft2c-footer-col { flex: 1 1 180px; min-width: 160px; }
.xft2c-footer-logo-img { height: 50px; width: auto; margin-bottom: 12px; }
.xft2c-footer-col-link {display: block;width: fit-content;}
.xft2c-footer-tagline { font-size: 0.72rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 16px; }

.xft2c-footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.xft2c-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xft2c-footer-links a {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.xft2c-footer-links a:hover { color: var(--c-btn-secondary); }
.xft2c-footer-links a svg { width: 12px; height: 12px; flex-shrink: 0; }

.xft2c-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.xft2c-badge-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.65rem;
  color: var(--c-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.xft2c-badge-18 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-btn-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xft2c-social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.xft2c-social-link {
  width: 34px;
  height: 34px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.xft2c-social-link:hover { background: var(--c-btn-secondary); border-color: var(--c-btn-secondary); }
.xft2c-social-link svg { width: 15px; height: 15px; color: var(--c-text-muted); }
.xft2c-social-link:hover svg { color: #fff; }

.xft2c-footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  margin-top: 0;
}
.xft2c-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.xft2c-copyright {
  font-size: 0.68rem;
  color: var(--c-text-muted);
  text-align: center;
  line-height: 1.8;
}
.xft2c-legal {
  font-size: 0.65rem;
  color: #555;
  text-align: center;
  margin-top: 8px;
  line-height: 1.7;
}
.xft2c-flag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: var(--c-text-muted);
}
.xft2c-flag img {height: 20px;width: auto;}

.xw9k1-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  background: var(--c-nav);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  max-width: 280px;
  transition: transform var(--transition);
  animation: xw9k1-slide-in 0.5s ease 1s both;
}
.xw9k1-widget:hover { transform: translateY(-3px); }

@keyframes xw9k1-slide-in {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.xw9k1-widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--c-btn-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}
.xw9k1-widget-logo { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.xw9k1-widget-text { flex: 1; }
.xw9k1-widget-title { font-size: 0.72rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 2px; }
.xw9k1-widget-bonus { font-size: 0.65rem; color: var(--c-gold); font-weight: 600; margin-bottom: 6px; }

.xp4r8-page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}
.xp4r8-page-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
}
.xp4r8-page-content h2 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: var(--c-btn-secondary); }
.xp4r8-page-content h3 { font-size: 1rem; margin: 1.2rem 0 0.5rem; }
.xp4r8-page-content p { color: var(--c-text-muted); line-height: 1.8; font-size: 0.88rem; }
.xp4r8-page-content ul, .xp4r8-page-content ol { color: var(--c-text-muted); font-size: 0.88rem; }
.xp4r8-page-content a { color: var(--c-btn-secondary); }

.xft2c-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.xft2c-payment-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.65rem;
  color: var(--c-text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.xst0p-scroll-top {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 900;
  width: 40px;
  height: 40px;
  background: var(--c-nav);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.xst0p-scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.xst0p-scroll-top:hover { background: var(--c-btn-secondary); border-color: var(--c-btn-secondary); }
.xst0p-scroll-top svg { width: 18px; height: 18px; color: var(--c-text); }
.xst0p-scroll-top:hover svg { color: #fff; }

@media (max-width: 1024px) {
  .x4n7m-nav { display: none; }
  .x4n7m-winner-ticker { display: none; }
  .x4n7m-burger { display: flex; }
  .xf7a2-feature-card { flex: 1 1 calc(50% - 8px); }
  .xs9r1-game-card { flex: 1 1 calc(50% - 8px); }
}

@media (max-width: 768px) {
  .xh5f0-hero { min-height: 100svh; }
  .xh5f0-hero-bg::after { background: linear-gradient(180deg, rgba(10,11,14,0.88) 0%, rgba(10,11,14,0.75) 100%); }
  .xh5f0-hero-stats { gap: 16px; }
  .xf7a2-feature-card { flex: 1 1 100%; }
  .xs9r1-game-card { flex: 1 1 100%; }
  .xa3k6-author { flex-direction: column; padding: 24px 20px; }
  .xr6m2-review { padding: 24px 20px; }
  .xw9k1-widget { display: none; }
  .x7f2a-section, .x7f2a-section-alt { padding: 50px 0; }
  .xft2c-footer-grid {flex-direction: column;}
}

@media (max-width: 480px) {
  .x4n7m-header-inner { height: 58px; }
  .xh5f0-hero-btns { flex-direction: column; }
  .xh5f0-hero-btns .btn { width: 100%; }
  .xft2c-footer-grid { gap: 24px; }
  .xg4p7-demo-top, .xg4p7-demo-bottom { flex-direction: column; align-items: flex-start; }
   .xr6m2-review { padding: 20px 16px; }
}
@media (max-width: 420px) {
.x4n7m-header-right .btn-primary{display: none;}
}
.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 1rem; }
.elementor-widget-wrap { position: relative; }
.wp-caption { max-width: 100%; }
.aligncenter { margin: 0 auto; display: block; }
.screen-reader-text { position: absolute; clip: rect(0,0,0,0); width: 1px; height: 1px; overflow: hidden; }
.entry-content { max-width: 100%; }
.site-main { flex: 1; }
.xz1q9-hidden { display: none !important; }
.xz1q9-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.xd3r8-fade-in { animation: xd3r8-fadeIn 0.6s ease both; }
@keyframes xd3r8-fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.xm4n1-shimmer { background: linear-gradient(90deg, var(--c-card) 25%, var(--c-card-hover) 50%, var(--c-card) 75%); background-size: 200% 100%; animation: xm4n1-shimmer 1.5s infinite; }
@keyframes xm4n1-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
