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

:root {
  --c-bg: #242630;
  --c-header: #1A1C24;
  --c-footer: #1A1C24;
  --c-primary: #00CC5F;
  --c-secondary: #3D404C;
  --c-text: #E8EAF0;
  --c-text-muted: #9498AA;
  --c-border: #2E3140;
  --c-card: #1E2030;
  --c-card-hover: #252840;
  --c-overlay: rgba(26,28,36,0.92);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.32);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.22);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font-main: 'Montserrat', Arial, sans-serif;
}

*, *::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.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #33dd7f; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

.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; }

/* ─── Layout ─────────────────────────────────── */
.xw9k2-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.xw9k2-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.xw9k2-main { flex: 1; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--c-primary);
  color: #0a1a11;
  box-shadow: 0 4px 18px rgba(0,204,95,0.32);
}
.btn--primary:hover {
  background: #1ad66b;
  color: #051108;
  box-shadow: 0 6px 24px rgba(0,204,95,0.44);
}
.btn--secondary {
  background: var(--c-secondary);
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { background: #484c5e; color: #fff; }
.btn--lg { padding: 14px 32px; font-size: 15px; }
.btn--sm { padding: 7px 14px; font-size: 12px; }
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: #0a1a11; }

/* ─── Header ─────────────────────────────────── */
.xm4r7-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.xm4r7-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.xm4r7-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.xm4r7-logo-link img { height: 40px; width: auto; }
.xm4r7-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.xm4r7-logo-text span { color: var(--c-text); }

.xm4r7-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.xm4r7-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  color: #c0c3d0;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.xm4r7-nav-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.xm4r7-nav-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.xm4r7-nav-link.active { color: var(--c-primary); }

.xm4r7-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.xm4r7-online-dot {
  width: 7px; height: 7px;
  background: var(--c-primary);
  border-radius: 50%;
  animation: xpulse 1.8s ease-in-out infinite;
}
@keyframes xpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.xm4r7-online strong { color: var(--c-primary); }

.xm4r7-header-btns { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.xm4r7-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--c-secondary);
  flex-shrink: 0;
}
.xm4r7-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.xm4r7-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.xm4r7-burger.active span:nth-child(2) { opacity: 0; }
.xm4r7-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.xm4r7-mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--c-header);
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.xm4r7-mobile-menu.open { display: flex; }
.xm4r7-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: #c0c3d0;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.xm4r7-mobile-nav-link svg { width: 18px; height: 18px; }
.xm4r7-mobile-nav-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
.xm4r7-mobile-btns { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.xm4r7-mobile-btns .btn { flex: 1; min-width: 120px; }

/* ─── Hero ───────────────────────────────────── */
.xh3b9-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-header);
}
.xh3b9-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/hero-banner.png') center/cover no-repeat;
  filter: brightness(0.45) saturate(1.2);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.xh3b9-hero:hover .xh3b9-hero-bg { transform: scale(1.06); }
.xh3b9-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,28,36,0.92) 0%, rgba(26,28,36,0.5) 60%, rgba(0,204,95,0.08) 100%);
}
.xh3b9-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.xh3b9-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,204,95,0.15);
  border: 1px solid rgba(0,204,95,0.3);
  color: var(--c-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.xh3b9-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
}
.xh3b9-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.xh3b9-hero h1 em {
  color: var(--c-primary);
  font-style: normal;
}
.xh3b9-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 500px;
}
.xh3b9-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.xh3b9-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.xh3b9-stars { display: flex; gap: 2px; }
.xh3b9-stars svg { width: 16px; height: 16px; fill: #FFB800; }
.xh3b9-rating-score { font-weight: 800; font-size: 18px; color: #FFB800; }

/* ─── Breadcrumbs ─────────────────────────────── */
.xbc4t-breadcrumbs {
  background: rgba(26,28,36,0.7);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.xbc4t-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.xbc4t-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.xbc4t-item a { color: var(--c-text-muted); }
.xbc4t-item a:hover { color: var(--c-primary); }
.xbc4t-item.active { color: var(--c-text); font-weight: 600; }
.xbc4t-sep { color: var(--c-border); font-size: 12px; }

/* ─── Section shared ──────────────────────────── */
.xsec-block {
  padding: 60px 0;
}
.xsec-block + .xsec-block {
  border-top: 1px solid var(--c-border);
}
.xsec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.xsec-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.xsec-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.xsec-head { margin-bottom: 36px; }

/* ─── Features ────────────────────────────────── */
.xft8m-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.xft8m-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.xft8m-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-primary);
  opacity: 0;
  transition: opacity var(--transition);
}
.xft8m-card:hover { transform: translateY(-4px); border-color: rgba(0,204,95,0.3); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.xft8m-card:hover::before { opacity: 1; }
.xft8m-icon {
  width: 44px; height: 44px;
  background: rgba(0,204,95,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.xft8m-icon svg { width: 22px; height: 22px; color: var(--c-primary); }
.xft8m-card-title { font-size: 14px; font-weight: 700; color: #fff; }
.xft8m-card-text { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }

/* ─── Pros / Cons ─────────────────────────────── */
.xpc6q-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.xpc6q-col {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.xpc6q-col--pros { border-top: 3px solid #00CC5F; }
.xpc6q-col--cons { border-top: 3px solid #FF4B4B; }
.xpc6q-col-title {
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.xpc6q-col--pros .xpc6q-col-title { color: var(--c-primary); }
.xpc6q-col--cons .xpc6q-col-title { color: #FF4B4B; }
.xpc6q-col-title svg { width: 20px; height: 20px; }
.xpc6q-list { display: flex; flex-direction: column; gap: 10px; }
.xpc6q-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
}
.xpc6q-item-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.xpc6q-col--pros .xpc6q-item-icon { color: var(--c-primary); }
.xpc6q-col--cons .xpc6q-item-icon { color: #FF4B4B; }

/* ─── Bonuses ─────────────────────────────────── */
.xbn5w-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.xbn5w-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.xbn5w-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.xbn5w-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,204,95,0.15);
  color: var(--c-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0,204,95,0.25);
}
.xbn5w-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,204,95,0.2) 0%, rgba(0,204,95,0.05) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.xbn5w-card-icon svg { width: 26px; height: 26px; color: var(--c-primary); }
.xbn5w-card-amount {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.xbn5w-card-amount span { font-size: 15px; color: var(--c-primary); }
.xbn5w-card-title { font-size: 15px; font-weight: 700; color: var(--c-text); }
.xbn5w-card-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; flex: 1; }
.xbn5w-card-terms { font-size: 11px; color: var(--c-text-muted); opacity: 0.7; }

/* ─── Games ───────────────────────────────────── */
.xgm3p-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.xgm3p-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.xgm3p-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.xgm3p-card-thumb {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1e2e 0%, #252a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.xgm3p-card-thumb-inner {
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: -2px;
  text-align: center;
  padding: 8px;
  line-height: 1.1;
}
.xgm3p-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.xgm3p-card:hover .xgm3p-card-overlay { opacity: 1; }
.xgm3p-card-body { padding: 12px 10px; }
.xgm3p-card-name { font-size: 12px; font-weight: 700; color: var(--c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.xgm3p-card-provider { font-size: 11px; color: var(--c-text-muted); }

/* ─── Demo ────────────────────────────────────── */
.xdm7k-demo {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.xdm7k-demo-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--c-border);
}
.xdm7k-demo-title { font-size: 15px; font-weight: 700; color: #fff; }
.xdm7k-demo-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-primary);
  font-weight: 600;
}
.xdm7k-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.xdm7k-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.xdm7k-cta { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.xdm7k-cta-text { font-size: 14px; color: var(--c-text-muted); }
.xdm7k-cta-text strong { color: var(--c-text); font-weight: 700; }

/* ─── Review content ──────────────────────────── */
.xrv2c-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.xrv2c-content h2 { font-size: 22px; font-weight: 800; color: #fff; margin: 28px 0 12px; line-height: 1.3; }
.xrv2c-content h2:first-child { margin-top: 0; }
.xrv2c-content h3 { font-size: 18px; font-weight: 700; color: var(--c-text); margin: 22px 0 10px; }
.xrv2c-content h4 { font-size: 15px; font-weight: 700; color: var(--c-text); margin: 18px 0 8px; }
.xrv2c-content p { font-size: 15px; line-height: 1.75; color: var(--c-text); margin-bottom: 16px; }
.xrv2c-content a { color: var(--c-primary); }
.xrv2c-content ul, .xrv2c-content ol { margin: 16px 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.xrv2c-content ul li { list-style: disc; font-size: 15px; line-height: 1.6; color: var(--c-text); }
.xrv2c-content ol li { list-style: decimal; font-size: 15px; line-height: 1.6; color: var(--c-text); }
.xrv2c-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); overflow: hidden; display: block; overflow-x: auto; }
.xrv2c-content thead { background: rgba(0,204,95,0.1); }
.xrv2c-content th { padding: 12px 16px; text-align: left; font-weight: 700; color: var(--c-primary); border-bottom: 1px solid var(--c-border); white-space: nowrap; }
.xrv2c-content td { padding: 10px 16px; border-bottom: 1px solid var(--c-border); color: var(--c-text); vertical-align: top; }
.xrv2c-content tr:last-child td { border-bottom: none; }
.xrv2c-content tr:hover td { background: rgba(255,255,255,0.03); }
.xrv2c-content blockquote { border-left: 3px solid var(--c-primary); padding: 14px 20px; background: rgba(0,204,95,0.06); margin: 20px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--c-text); }
.xrv2c-content strong { font-weight: 700; color: #fff; }
.xrv2c-content em { font-style: italic; color: var(--c-text-muted); }
.xrv2c-content hr { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }
.xrv2c-content img { border-radius: var(--radius-sm); max-width: 100%; height: auto; margin: 16px 0; }

/* ─── Comments ────────────────────────────────── */
.xcm9f-section { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.xcm9f-list { display: flex; flex-direction: column; gap: 16px; }
.xcm9f-comment {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.xcm9f-comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.xcm9f-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-secondary), var(--c-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.xcm9f-comment-meta { flex: 1; }
.xcm9f-comment-name { font-size: 14px; font-weight: 700; color: var(--c-text); }
.xcm9f-comment-date { font-size: 12px; color: var(--c-text-muted); }
.xcm9f-comment-stars { display: flex; gap: 2px; }
.xcm9f-comment-stars svg { width: 14px; height: 14px; fill: #FFB800; }
.xcm9f-comment-text { font-size: 14px; line-height: 1.6; color: var(--c-text); }

.xcm9f-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.xcm9f-form-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.xcm9f-form { display: flex; flex-direction: column; gap: 14px; }
.xcm9f-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.xform-field { display: flex; flex-direction: column; gap: 5px; }
.xform-label { font-size: 12px; font-weight: 600; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.xform-input, .xform-textarea, .xform-select {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--c-text);
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.xform-input:focus, .xform-textarea:focus, .xform-select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0,204,95,0.12);
}
.xform-input::placeholder, .xform-textarea::placeholder { color: rgba(255,255,255,0.25); }
.xform-textarea { resize: vertical; min-height: 110px; }
.xform-select { appearance: none; }
.xform-stars-row { display: flex; flex-direction: column; gap: 6px; }
.xform-star-label { font-size: 12px; font-weight: 600; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.xform-stars { display: flex; gap: 4px; }
.xform-stars input[type=radio] { display: none; }
.xform-stars label {
  cursor: pointer;
  font-size: 26px;
  color: var(--c-border);
  transition: color var(--transition), transform var(--transition);
}
.xform-stars label:hover,
.xform-stars label:hover ~ label,
.xform-stars input:checked ~ label { color: #FFB800; }
.xform-stars label:hover { transform: scale(1.15); }
.xcm9f-form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 15px;
}

/* ─── Author ──────────────────────────────────── */
.xau8v-author {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.xau8v-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(0,204,95,0.3);
  background: var(--c-secondary);
}
.xau8v-avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: linear-gradient(135deg, var(--c-secondary) 0%, #484c5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 26px;
  color: var(--c-text);
  border: 3px solid rgba(0,204,95,0.3);
}
.xau8v-info { flex: 1; }
.xau8v-name { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.xau8v-role { font-size: 13px; color: var(--c-primary); font-weight: 600; margin-bottom: 10px; }
.xau8v-bio { font-size: 14px; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 14px; }
.xau8v-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.xau8v-date { font-size: 12px; color: var(--c-text-muted); }
.xau8v-date strong { color: var(--c-text); }
.xau8v-links { display: flex; gap: 8px; }
.xau8v-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--c-secondary);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  transition: background var(--transition), color var(--transition);
}
.xau8v-link:hover { background: var(--c-primary); color: #0a1a11; }
.xau8v-link svg { width: 15px; height: 15px; }

/* ─── Footer ──────────────────────────────────── */
.xft9z-footer {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: 60px;
}
.xft9z-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 32px;
}
.xft9z-logo-col {}
.xft9z-logo { display: flex; align-items: center; margin-bottom: 14px; }
.xft9z-logo img { height: 36px; }
.xft9z-logo-text { font-size: 20px; font-weight: 900; color: var(--c-primary); letter-spacing: -0.02em; }
.xft9z-logo-text span { color: var(--c-text); }
.xft9z-tagline { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 16px; max-width: 240px; }
.xft9z-flag { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--c-text-muted); margin-bottom: 14px; }
.xft9z-flag-img { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; }
.xft9z-social { display: flex; gap: 8px; }
.xft9z-social-link {
  width: 34px; height: 34px;
  background: var(--c-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition);
}
.xft9z-social-link:hover { background: var(--c-primary); color: #0a1a11; }
.xft9z-social-link svg { width: 16px; height: 16px; }
.xft9z-col-title { font-size: 13px; font-weight: 700; color: var(--c-text); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.xft9z-links { display: flex; flex-direction: column; gap: 8px; }
.xft9z-link { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); }
.xft9z-link:hover { color: var(--c-text); }

.xft9z-logos-row { padding: 20px 0; border-bottom: 1px solid var(--c-border); margin-bottom: 20px; }
.xft9z-logos-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-muted); margin-bottom: 12px; }
.xft9z-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.xft9z-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.xft9z-logo-badge:hover { border-color: rgba(255,255,255,0.15); color: var(--c-text); }

.xft9z-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
}
.xft9z-copyright { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 640px; }
.xft9z-copyright a { color: rgba(255,255,255,0.45); }
.xft9z-copyright a:hover { color: var(--c-text-muted); }
.xft9z-18plus {
  background: var(--c-secondary);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--c-text);
  flex-shrink: 0;
}

/* ─── Sticky Widget ───────────────────────────── */
.xwg4b-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0a1a11 0%, #1a2e1e 100%);
  border-top: 2px solid var(--c-primary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,204,95,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.xwg4b-widget.visible { transform: translateY(0); }
.xwg4b-widget-text { flex: 1; }
.xwg4b-widget-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.xwg4b-widget-sub { font-size: 12px; color: rgba(255,255,255,0.65); }
.xwg4b-widget-sub strong { color: var(--c-primary); }
.xwg4b-widget-close {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}
.xwg4b-widget-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
body.xwg4b-visible { padding-bottom: 62px; }

/* ─── Info pages ──────────────────────────────── */
.xip3m-page { padding: 48px 0; }
.xip3m-page h1 { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 24px; }
.xip3m-page h2 { font-size: 20px; font-weight: 800; color: #fff; margin: 28px 0 10px; }
.xip3m-page h3 { font-size: 16px; font-weight: 700; color: var(--c-text); margin: 20px 0 8px; }
.xip3m-page p { font-size: 15px; line-height: 1.75; color: var(--c-text); margin-bottom: 14px; }
.xip3m-page ul { margin: 14px 0 18px 22px; }
.xip3m-page ul li { list-style: disc; font-size: 15px; line-height: 1.65; color: var(--c-text); margin-bottom: 6px; }
.xip3m-page a { color: var(--c-primary); }
.xip3m-page strong { color: #fff; font-weight: 700; }

/* ─── Sliders ─────────────────────────────────── */
.xsl7k-slider-wrap { position: relative; overflow: hidden; }
.xsl7k-slider { display: flex; gap: 16px; transition: transform 0.38s cubic-bezier(.4,0,.2,1); }
.xsl7k-controls { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.xsl7k-btn {
  width: 38px; height: 38px;
  background: var(--c-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text);
  transition: background var(--transition), transform var(--transition);
}
.xsl7k-btn:hover { background: var(--c-primary); color: #0a1a11; transform: scale(1.08); }
.xsl7k-btn svg { width: 16px; height: 16px; }
.xsl7k-dots { display: flex; gap: 6px; align-items: center; }
.xsl7k-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-border); transition: background var(--transition), transform var(--transition); }
.xsl7k-dot.active { background: var(--c-primary); transform: scale(1.4); }

/* ─── FAQ ─────────────────────────────────────── */
.xfq2r-list { display: flex; flex-direction: column; gap: 10px; }
.xfq2r-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.xfq2r-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  transition: background var(--transition);
  gap: 12px;
  user-select: none;
}
.xfq2r-question:hover { background: rgba(255,255,255,0.04); }
.xfq2r-item.open .xfq2r-question { color: var(--c-primary); }
.xfq2r-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); color: var(--c-text-muted); }
.xfq2r-item.open .xfq2r-icon { transform: rotate(180deg); color: var(--c-primary); }
.xfq2r-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}
.xfq2r-answer-inner { padding: 0 22px 18px; font-size: 14px; line-height: 1.7; color: var(--c-text-muted); }
.xfq2r-item.open .xfq2r-answer { max-height: 400px; }

/* ─── Unused / decoy styles (uniqs) ─────────────────── */
.wp-post-image { display: block; }
.entry-content .alignleft { float: left; margin-right: 24px; }
.entry-content .alignright { float: right; margin-left: 24px; }
.elementor-widget-container { padding: 0; }
.e-con-inner { display: flex; flex-direction: column; gap: 0; }
.wp-block-cover { position: relative; overflow: hidden; }
.wp-caption { max-width: 100%; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); overflow: hidden; position: absolute; height: 1px; width: 1px; }
.x7f3a-decoy { display: none; visibility: hidden; }
#wpadminbar { display: none !important; }
.wp-embed-responsive { position: relative; }
.dashicons-before::before { font-family: dashicons; }
.nf-form-cont { width: 100%; }
.frm_forms { background: none; }
.ninja-forms-field { width: 100%; }
.elementor-section { width: 100%; }
.elementor-container { max-width: 1200px; margin: 0 auto; }
.yoast-breadcrumb { font-size: 13px; color: var(--c-text-muted); }
.wpcf7-form { display: flex; flex-direction: column; gap: 12px; }
.x9q2m-ghost { width: 1px; height: 1px; opacity: 0; pointer-events: none; position: absolute; }
.pp-section-wrap { width: 100%; }
.fusion-builder-row { display: flex; flex-wrap: wrap; }
.av-layout-cell { padding: 0; }
.vc_row { margin: 0; }
.pf-widget { display: none; }

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .xm4r7-nav { display: none; }
  .xm4r7-online { display: none; }
  .xm4r7-header-btns { display: none; }
  .xm4r7-burger { display: flex; }
  .xgm3p-grid { grid-template-columns: repeat(3, 1fr); }
  .xft9z-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .xft8m-grid { grid-template-columns: repeat(2, 1fr); }
  .xpc6q-grid { grid-template-columns: 1fr; }
  .xbn5w-grid { display: none; }
  .xbn5w-slider-wrap { display: block; }
  .xgm3p-grid { display: none; }
  .xgm3p-slider-wrap { display: block; }
  .xcm9f-section { grid-template-columns: 1fr; }
  .xau8v-author { flex-direction: column; }
  .xrv2c-content { padding: 22px 18px; }
  .xft9z-top { grid-template-columns: 1fr; }
  .xcm9f-form-row { grid-template-columns: 1fr; }
  .xh3b9-hero { min-height: 360px; }
  .xh3b9-hero-content { padding: 40px 0; }
  .xsec-block { padding: 40px 0; }
}

@media (max-width: 480px) {
  .xft8m-grid { grid-template-columns: 1fr; }
  .xm4r7-header-inner { height: 60px; }
  .xwg4b-widget { flex-direction: row; padding: 10px 16px; }
  .xwg4b-widget-text .xwg4b-widget-title { font-size: 12px; }
  .xwg4b-widget-text .xwg4b-widget-sub { font-size: 11px; }
  .xh3b9-hero-actions .btn--lg { padding: 12px 20px; font-size: 13px; }
  .xbn5w-slider-wrap .xbn5w-card { min-width: calc(85vw - 40px); }
  .xgm3p-slider-wrap .xgm3p-card { min-width: 140px; }
}

/* ─── Animations ──────────────────────────────── */
@keyframes xfadein { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.xanimate { animation: xfadein 0.5s ease forwards; opacity: 0; }
.xanimate-d1 { animation-delay: 0.08s; }
.xanimate-d2 { animation-delay: 0.16s; }
.xanimate-d3 { animation-delay: 0.24s; }
.xanimate-d4 { animation-delay: 0.32s; }
.xanimate-d5 { animation-delay: 0.40s; }
.xanimate-d6 { animation-delay: 0.48s; }

@keyframes xshinein { 0% { left: -60%; } 100% { left: 110%; } }
.btn--primary::after { content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.13), transparent); transform: skewX(-20deg); animation: xshinein 2.8s ease-in-out infinite; pointer-events: none; }
.btn--primary { position: relative; overflow: hidden; }

/* ─── Utilities ───────────────────────────────── */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.text-muted { color: var(--c-text-muted); }
.text-primary { color: var(--c-primary); }
.d-none { display: none !important; }
.d-flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.fw-800 { font-weight: 800; }
.font-size-13 { font-size: 13px; }
