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

:root {
  --color-bg: #0b0f19;
  --color-header: #141821;
  --color-card: #181d2b;
  --color-card-hover: #1e2436;
  --color-border: #242b3d;
  --color-red: #ff2e63;
  --color-red-hover: #e8224f;
  --color-green: #22c55e;
  --color-green-hover: #16a34a;
  --color-text: #e8eaf0;
  --color-text-muted: #8b92a9;
  --color-text-dim: #5a6176;
  --color-accent: #3b82f6;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow-red: 0 0 24px rgba(255,46,99,0.25);
  --shadow-glow-green: 0 0 24px rgba(34,197,94,0.25);
  --transition: 0.22s ease;
  --font: 'Inter', sans-serif;
}

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

html { background: var(--color-bg); scroll-behavior: smooth; font-size: 16px; }

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

a { color: var(--color-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-red-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.b3x9k { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.f7m2p { display: flex; align-items: center; }
.q1r8t { display: flex; flex-direction: column; }
.w5n6j { flex-wrap: wrap; }

.zp4x2 { display: none; }
.lk7a3 { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--red { background: var(--color-red); color: #fff; }
.btn--red:hover { background: var(--color-red-hover); box-shadow: var(--shadow-glow-red); color: #fff; }
.btn--green { background: var(--color-green); color: #fff; }
.btn--green:hover { background: var(--color-green-hover); box-shadow: var(--shadow-glow-green); color: #fff; }
.btn--outline { background: transparent; color: var(--color-text); border: 1.5px solid var(--color-border); }
.btn--outline:hover { border-color: var(--color-red); color: var(--color-red); background: rgba(255,46,99,0.07); }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--icon { padding: 10px 18px; }
.btn--full { width: 100%; }

.m9e1c { height: 4px; background: linear-gradient(90deg, var(--color-red) 0%, #ff6b35 50%, var(--color-green) 100%); }

.hdr-outer { background: var(--color-header); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--color-border); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.hdr-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr-logo img { height: 44px; width: auto; object-fit: contain; }
.hdr-logo-text { font-size: 20px; font-weight: 800; color: var(--color-text); letter-spacing: -0.5px; }
.hdr-logo-text span { color: var(--color-red); }

.hdr-nav { display: flex; align-items: center; gap: 4px; }
.hdr-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.hdr-nav a:hover { color: var(--color-text); background: rgba(255,255,255,0.05); }
.hdr-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

.hdr-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger-btn {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; padding: 4px;
}
.burger-btn span {
  display: block; width: 22px; height: 2px; background: var(--color-text);
  border-radius: 2px; transition: all 0.25s ease;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--color-header); z-index: 99; overflow-y: auto;
  flex-direction: column; padding: 20px;
  border-top: 1px solid var(--color-border);
}
.mob-menu.active { display: flex; animation: fadeDown 0.22s ease; }
.mob-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition), background var(--transition);
}
.mob-menu a:hover { color: var(--color-text); background: rgba(255,255,255,0.04); }
.mob-menu a svg { width: 18px; height: 18px; }
.mob-menu-btns { display: flex; gap: 10px; margin-top: 20px; }
.mob-menu-btns .btn { flex: 1; justify-content: center; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-section {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/avatrix-title-img.webp');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,15,25,0.97) 30%, rgba(11,15,25,0.65) 70%, rgba(11,15,25,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 600px; padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,46,99,0.12); border: 1px solid rgba(255,46,99,0.3);
  color: var(--color-red); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 30px; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-red); animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; color: #fff;
}
.hero-title span { color: var(--color-red); }
.hero-subtitle { font-size: 17px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 28px; max-width: 480px; }
.hero-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-age { font-size: 12px; color: var(--color-text-dim); display: flex; align-items: center; gap: 6px; }
.hero-age svg { width: 14px; height: 14px; }

.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid var(--color-border);
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat-val { font-size: 22px; font-weight: 800; color: var(--color-red); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--color-text-dim); font-weight: 500; }

.demo-frame-wrap {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 60px 0;
}
.demo-iframe-container {
  width: 100%; background: #0a0d14;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-card), 0 0 40px rgba(255,46,99,0.1);
  position: relative;
}
.demo-iframe-container iframe {
  width: 100%; height: 380px; border: none; display: block;
}
.demo-btns { display: flex; gap: 10px; width: 100%; }
.demo-btns .btn { flex: 1; justify-content: center; }
.demo-18plus {
  font-size: 11px; color: var(--color-text-dim); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

.hero-layout {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; width: 100%;
}

.section { padding: 64px 0; }
.section-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: var(--color-text); margin-bottom: 8px;
  letter-spacing: -0.5px; line-height: 1.2;
}
.section-title span { color: var(--color-red); }
.section-subtitle { font-size: 15px; color: var(--color-text-muted); margin-bottom: 32px; line-height: 1.5; }
.section-header { margin-bottom: 32px; }

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.card--sm { padding: 20px; border-radius: var(--radius-md); }
.card--hover { transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition); }
.card--hover:hover { border-color: rgba(255,46,99,0.3); box-shadow: var(--shadow-card), 0 0 20px rgba(255,46,99,0.08); transform: translateY(-2px); }

.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.info-table {
  width: 100%; border-collapse: collapse;
  background: var(--color-card); border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--color-border);
}
.info-table th {
  background: #1a2030; color: var(--color-text-muted);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.7px; padding: 12px 20px; text-align: left;
  border-bottom: 2px solid var(--color-border);
}
.info-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--color-border);
  font-size: 14px; vertical-align: middle;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(odd) td { background: rgba(255,255,255,0.015); }
.info-table tr:hover td { background: rgba(255,255,255,0.03); }
.info-table .td-label { color: var(--color-text-muted); font-weight: 500; width: 40%; white-space: nowrap; }
.info-table .td-val { color: var(--color-text); font-weight: 500; }
.info-table .td-val strong { color: var(--color-red); font-weight: 700; }
.info-table .td-val .badge-green { color: var(--color-green); font-weight: 700; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-card { background: rgba(34,197,94,0.07); border: 1.5px solid rgba(34,197,94,0.25); border-radius: var(--radius-lg); padding: 24px; }
.cons-card { background: rgba(255,46,99,0.07); border: 1.5px solid rgba(255,46,99,0.25); border-radius: var(--radius-lg); padding: 24px; }
.pros-cons-title {
  font-size: 16px; font-weight: 700; margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.pros-card .pros-cons-title { color: var(--color-green); }
.cons-card .pros-cons-title { color: var(--color-red); }
.pros-cons-list { display: flex; flex-direction: column; gap: 10px; }
.pros-cons-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5; color: var(--color-text);
}
.pros-cons-item-icon { flex-shrink: 0; margin-top: 1px; }
.pros-cons-item-icon svg { width: 16px; height: 16px; }
.pros-card .pros-cons-item-icon svg { color: var(--color-green); }
.cons-card .pros-cons-item-icon svg { color: var(--color-red); }

.app-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.phone-frame-wrap { display: flex; justify-content: center; }
.phone-frame {
  position: relative; width: 240px;
  background: #0a0d14; border-radius: 38px;
  border: 3px solid #2a3040;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px #1a2030;
  overflow: hidden; padding: 14px 8px;
}
.phone-frame::before {
  content: ''; position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%); width: 60px; height: 6px;
  background: #2a3040; border-radius: 6px; z-index: 2;
}
.phone-frame img { border-radius: 26px; width: 100%; display: block; }
.phone-notch {
  width: 80px; height: 22px; background: #0a0d14;
  margin: 0 auto 8px; border-radius: 0 0 14px 14px;
  position: relative; z-index: 3;
}

.download-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.download-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: var(--radius-md);
  background: var(--color-card); border: 1.5px solid var(--color-border);
  color: var(--color-text); font-family: var(--font); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.download-btn:hover { border-color: var(--color-red); background: rgba(255,46,99,0.07); color: var(--color-text); }
.download-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.download-btn-text { display: flex; flex-direction: column; gap: 1px; }
.download-btn-sub { font-size: 10px; color: var(--color-text-muted); font-weight: 400; }
.download-btn-name { font-size: 14px; font-weight: 600; }

.content-block { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 36px; }

.content-block h2 { font-size: 22px; font-weight: 700; color: var(--color-text); margin: 28px 0 14px; line-height: 1.3; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 18px; font-weight: 700; color: var(--color-text); margin: 22px 0 12px; }
.content-block h4 { font-size: 16px; font-weight: 600; color: var(--color-text); margin: 18px 0 10px; }
.content-block p { font-size: 15px; line-height: 1.75; color: var(--color-text-muted); margin-bottom: 16px; }
.content-block p:last-child { margin-bottom: 0; }
.content-block ul, .content-block ol { margin: 12px 0 16px 0; padding-left: 0; }
.content-block ul { list-style: none; }
.content-block ul li {
  position: relative; padding-left: 20px; margin-bottom: 8px;
  font-size: 15px; line-height: 1.65; color: var(--color-text-muted);
}
.content-block ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-red);
}
.content-block ol { list-style: decimal; padding-left: 22px; }
.content-block ol li { margin-bottom: 8px; font-size: 15px; line-height: 1.65; color: var(--color-text-muted); }
.content-block a { color: var(--color-red); }
.content-block strong { color: var(--color-text); font-weight: 600; }
.content-block em { color: var(--color-text-muted); font-style: italic; }
.content-block table { width: 100%; border-collapse: collapse; margin: 16px 0; overflow: hidden; border-radius: var(--radius-sm); }
.content-block table th { background: #1a2030; color: var(--color-text-muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 16px; text-align: left; border-bottom: 2px solid var(--color-border); }
.content-block table td { padding: 10px 16px; border-bottom: 1px solid var(--color-border); font-size: 14px; color: var(--color-text-muted); }
.content-block table tr:last-child td { border-bottom: none; }
.content-block blockquote { border-left: 3px solid var(--color-red); padding: 12px 20px; margin: 16px 0; background: rgba(255,46,99,0.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--color-text-muted); }

.author-bar {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 28px;
}
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--color-text); }
.author-role { font-size: 12px; color: var(--color-text-muted); line-height: 1.4; margin-top: 2px; }
.author-link { font-size: 12px; color: var(--color-red); display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.author-link svg { width: 12px; height: 12px; }

.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.game-card {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.game-card:hover { border-color: rgba(255,46,99,0.35); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.game-card-logo {
  height: 120px; display: flex; align-items: center; justify-content: center;
  background: #0f1420; position: relative; overflow: hidden;
}
.game-card-logo img { width: auto; height: 80px; object-fit: contain; border-radius: 10px;}
.game-card-logo-letter {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; color: #fff;
}
.game-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.game-card-name { font-size: 15px; font-weight: 700; color: var(--color-text); }
.game-card-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; flex: 1; }
.game-card-btns { display: flex; gap: 8px; margin-top: 8px; }
.game-card-btns .btn { flex: 1; text-align: center; justify-content: center; font-size: 12px; padding: 8px 10px; }

.rtp-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  border-radius: 30px; background: rgba(34,197,94,0.12);
  color: var(--color-green); border: 1px solid rgba(34,197,94,0.2);
}

.reviews-section .card { margin-bottom: 16px; }
.review-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; margin-bottom: 14px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.review-meta { flex: 1; }
.review-name { font-size: 14px; font-weight: 600; color: var(--color-text); }
.review-date { font-size: 12px; color: var(--color-text-dim); }
.review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.review-star { color: #f59e0b; font-size: 14px; }
.review-text { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.comment-form { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; }
.comment-form-title { font-size: 18px; font-weight: 700; color: var(--color-text); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--color-text-muted); margin-bottom: 6px; letter-spacing: 0.2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  background: var(--color-bg); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font);
  font-size: 14px; color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-red); box-shadow: 0 0 0 3px rgba(255,46,99,0.1);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stars-input { display: flex; gap: 6px; }
.stars-input label { font-size: 24px; cursor: pointer; color: var(--color-text-dim); transition: color var(--transition); }
.stars-input input { display: none; }
.stars-input label:hover, .stars-input label.active { color: #f59e0b; }

.ftr-outer { background: var(--color-header); border-top: 1px solid var(--color-border); margin-top: 0; }
.ftr-top { padding: 48px 0 32px; border-bottom: 1px solid var(--color-border); }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.ftr-brand { display: flex; flex-direction: column; gap: 12px; }
.ftr-logo { display: flex; align-items: center; gap: 10px;width: fit-content; }
.ftr-logo img { height: 44px; width: auto; object-fit: contain; }
.ftr-logo-text { font-size: 18px; font-weight: 800; color: var(--color-text); }
.ftr-logo-text span { color: var(--color-red); }
.ftr-desc { font-size: 13px; color: var(--color-text-dim); line-height: 1.6; }
.ftr-col-title { font-size: 12px; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.ftr-links { display: flex; flex-direction: column; gap: 8px; }
.ftr-links a { font-size: 13.5px; color: var(--color-text-dim); transition: color var(--transition); }
.ftr-links a:hover { color: var(--color-text); }
.ftr-social { display: flex; gap: 10px; }
.ftr-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--color-text-muted);
}
.ftr-social a:hover { background: var(--color-red); border-color: var(--color-red); color: #fff; }
.ftr-social a svg { width: 16px; height: 16px; }

.ftr-mid { padding: 24px 0; border-bottom: 1px solid var(--color-border); }
.ftr-logos-row { display: flex; align-items: center; gap: 0; flex-wrap: wrap; gap: 15px;justify-content: space-between;}
.ftr-logos-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ftr-logos-group:first-child { padding-left: 0; }
.ftr-logos-sep { width: 1px; height: 40px; background: var(--color-border); flex-shrink: 0; }
.ftr-logos-label { font-size: 10px; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ftr-logos-group-wrap { display: flex; flex-direction: column; }
.payment-logo, .trust-logo {
  height: 28px; width: auto; object-fit: contain; opacity: 0.6;
  transition: opacity var(--transition); filter: grayscale(1) brightness(1.8);
}
.payment-logo:hover, .trust-logo:hover { opacity: 1; filter: none; }

.ftr-bottom { padding: 20px 0; }
.ftr-bottom-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ftr-copyright { font-size: 12px; color: var(--color-text-dim); line-height: 1.7; max-width: 600px; }
.ftr-copyright a { color: var(--color-text-dim); }
.ftr-copyright a:hover { color: var(--color-red); }
.ftr-provider { display: flex; align-items: center; gap: 8px; }
.ftr-provider-label { font-size: 11px; color: var(--color-text-dim); }
.ftr-provider img { height: 20px; width: auto; object-fit: contain; opacity: 0.5; filter: grayscale(1) brightness(1.8); transition: opacity var(--transition); }
.ftr-provider img:hover { opacity: 0.9; filter: none; }

.payment-svg { display: inline-block; height: 24px; padding: 2px 8px; border-radius: 4px; background: rgba(255,255,255,0.06); border: 1px solid var(--color-border); font-size: 11px; font-weight: 700; color: var(--color-text-muted); line-height: 20px; white-space: nowrap; }
.trust-svg { display: inline-block; height: 28px; padding: 3px 10px; border-radius: 5px; background: rgba(255,255,255,0.04); border: 1px solid var(--color-border); font-size: 10px; font-weight: 800; color: var(--color-text-muted); line-height: 22px; letter-spacing: 0.3px; }

.breadcrumbs { padding: 14px 0; }
.breadcrumbs ul { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-dim); }
.breadcrumbs li a { color: var(--color-text-dim); }
.breadcrumbs li a:hover { color: var(--color-red); }
.breadcrumbs li.active { color: var(--color-text-muted); }
.breadcrumbs-sep { color: var(--color-text-dim); font-size: 10px; }

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

.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--color-green);
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  padding: 3px 10px; border-radius: 30px; letter-spacing: 0.3px;
}
.live-dot { width: 6px; height: 6px; background: var(--color-green); border-radius: 50%; animation: pulse 1.6s infinite; }

.sep { height: 1px; background: var(--color-border); margin: 0; }

.p7k3n { display: none; visibility: hidden; }
.r2m9x { pointer-events: none; position: absolute; width: 0; height: 0; overflow: hidden; }
.wp-block-cover { display: none; }
.elementor-widget { display: none; visibility: hidden; }
.yoast-seo-section { display: none; }

.faq-section { padding: 64px 0; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--color-text);
  transition: color var(--transition); gap: 12px;
  background: none; border: none; width: 100%; text-align: left; font-family: var(--font);
}
.faq-question:hover { color: var(--color-red); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-text-dim); transition: transform 0.25s ease, color 0.25s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--color-red); }
.faq-item.open .faq-question { color: var(--color-red); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 14px; line-height: 1.7; color: var(--color-text-muted); border-top: 1px solid var(--color-border); padding-top: 16px; }
.faq-item.open .faq-answer { display: block; animation: fadeDown 0.2s ease; }

.info-page { padding: 60px 0; }
.info-page h1 { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 24px; }
.info-page h2 { font-size: 20px; font-weight: 700; color: var(--color-text); margin: 24px 0 12px; }
.info-page p { font-size: 15px; line-height: 1.75; color: var(--color-text-muted); margin-bottom: 14px; }
.info-page ul { padding-left: 20px; margin-bottom: 14px; }
.info-page ul li { font-size: 15px; line-height: 1.7; color: var(--color-text-muted); margin-bottom: 6px; }
.info-page a { color: var(--color-red); }

.d8f2l { display: none; position: absolute; z-index: -999; }
.h9j4m { overflow: hidden; max-height: 0; visibility: hidden; }

@media (max-width: 1100px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-layout { flex-direction: column; }
  .demo-frame-wrap { width: 100%; }
  .hero-content { max-width: 100%; padding: 48px 0 24px; }
}
@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .burger-btn { display: flex; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .app-section-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-section { min-height: auto; }
}
@media (max-width: 640px) {
  .section { padding: 40px 0; }
  .ftr-grid { grid-template-columns: 1fr; gap: 24px; }
  .ftr-top { padding: 32px 0 24px; }
  .card { padding: 18px; }
  .content-block { padding: 20px; }
  .comment-form { padding: 18px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .ftr-logos-group { gap: 8px; }
  .ftr-bottom-inner { flex-direction: column; }
  .hdr-actions { gap: 6px; }
  .hdr-actions .btn { padding: 8px 14px; font-size: 12px; }
  .hdr-logo-text { font-size: 16px; }
  .hero-stats { gap: 16px; }
  .demo-iframe-container iframe { height: 260px; }
  .phone-frame { width: 180px; }
  .hdr-logo img {height: 38px;}
  .demo-frame-wrap {padding: 20px 0;}
}
@media (max-width: 480px) {
  .hdr-actions .btn--outline {display: none;}
  .hdr-logo img {height: 32px;}
  .info-table td {padding: 7px 10px;}
  .info-table th {padding: 7px 10p;}

}

@media (max-width: 400px) {
  .games-grid { grid-template-columns: 1fr; }
}
