*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-primary: #0a0f16;
  --bg-card: #111a25;
  --bg-card-hover: #162030;
  --bg-accent-subtle: rgba(0, 212, 170, 0.06);
  --text-primary: #e8ecf1;
  --text-secondary: #9ba8b9;
  --text-on-accent: #000000;
  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.15);
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-sm: 8px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --warning-bg: rgba(255, 180, 50, 0.12);
  --warning-text: #ffb840;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
/* ===== RESPONSIBLE PLAY TOPBAR ===== */
.topbar {
  background: var(--warning-bg);
  padding: 10px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--warning-text);
  border-bottom: 1px solid rgba(255,180,50,0.15);
}
.topbar strong { margin-right: 8px; }
/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs span { margin: 0 6px; opacity: 0.4; }
/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(10, 15, 22, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo em { font-style: normal; color: var(--accent); }
.nav-desktop { display: flex; gap: 28px; align-items: center;margin: 0 8px; }
.nav-desktop a { color: var(--text-secondary); font-size: 15px; font-weight: 500; }
.nav-desktop a:hover { color: var(--text-primary); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: var(--font);
}
a.btn { color: #000; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,212,170,0.25); opacity: 1; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
a.btn-outline { color: var(--accent); }
.btn-outline:hover { background: var(--accent-dim); }
.btn-tg {
  background: #229ED9;
  border-color: #229ED9;
  color: #fff;
}
a.btn-tg { color: #fff; }
.btn-tg:hover { background: #1a8abf; box-shadow: 0 4px 20px rgba(34,158,217,0.3); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
/* burger */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; position: relative; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  z-index: 1000;
  flex-direction: column;
  padding: 80px 24px 24px;
  overflow-y: auto;
  display: none;
}
.mobile-nav.active { display: flex; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mnav-link {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mnav-link:hover { opacity: 1; color: var(--accent); }
.mobile-cta {
  margin-top: 24px;
  justify-content: center;
  flex-shrink: 0;
}
/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
}
.hero-top {
  display: flex;
  gap: 48px;
  align-items: center;
}
.hero-text {
  max-width: 100%;
  flex-shrink: 0;
}
/* Hero Infographic */
.hero-infographic {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.info-card-hand {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.info-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hand-board {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.card-item {
  width: 52px;
  height: 72px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.1);
}
.card-item span { font-size: 14px; margin-top: 2px; }
.card-spade { background: #1a2332; color: #e8ecf1; }
.card-club { background: #1a2332; color: #e8ecf1; }
.card-heart { background: #1a2332; color: #f87171; }
.card-heart span { color: #f87171; }
.card-back {
  background: linear-gradient(135deg, #162030, #1e2d40);
  color: var(--text-secondary);
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hand-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
}
.hand-label { color: var(--text-secondary); font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; }
.hand-value { color: var(--text-primary); font-weight: 600; font-size: 14px; }
.hand-bar-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hand-bar-label { font-size: 11px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.hand-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.hand-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.hand-bar-pct { font-size: 18px; font-weight: 800; color: var(--accent); min-width: 44px; text-align: right; }
.hand-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  letter-spacing: 0.5px;
}
.info-floating-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.float-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.fc-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 4px;
}
.fc-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
@media (max-width: 900px) {
  .hero-infographic { display: none; }
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-actions-row { display: flex; gap: 14px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.benefit-num {
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-disclaimer {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.7;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 14px;
  color: var(--text-secondary);
}
/* ===== PLATFORMS ===== */
.platforms-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 22px 10px 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.platform-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-border { border-top: 1px solid var(--border); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}
/* ===== WHAT IS ===== */
.what-is-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.what-is-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 16px;
}
.what-is-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.what-is-sidebar h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon img { width: 20px; height: 20px; }
.info-item-text strong { display: block; font-size: 15px; font-weight: 600; }
.info-item-text span { font-size: 14px; color: var(--text-secondary); }
/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(0,212,170,0.3); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon img { width: 24px; height: 24px; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.feature-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.feature-tag {
  padding: 4px 12px;
  background: var(--accent-dim);
  border-radius: 20px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
/* ===== GAME TYPES ===== */
.game-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.game-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.game-type-card:hover { border-color: rgba(0,212,170,0.3); }
.game-type-abbr {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.game-type-name {
  font-size: 14px;
  color: var(--text-secondary);
}
/* ===== PLATFORM RATING ===== */
.rating-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.rating-big {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.rating-number {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.rating-stars {
  margin: 12px 0 8px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.rating-stars img { width: 20px; height: 20px; }
.rating-label { font-size: 15px; color: var(--text-secondary); }
.rating-bars { display: flex; flex-direction: column; gap: 14px; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rating-row-label { font-size: 15px; color: var(--text-secondary); width: 160px; flex-shrink: 0; }
.rating-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}
.rating-row-value {
  font-size: 15px;
  font-weight: 600;
  width: 36px;
  text-align: right;
}
/* ===== PRICING ===== */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.price-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.price-table-header h3 { font-size: 18px; font-weight: 600; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.price-row:last-child { border-bottom: none; }
.price-row .amount { font-weight: 600; }
.price-row .fuel { color: var(--text-secondary); }
.price-bonus {
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.pricing-info p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.pricing-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.pricing-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.perk-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
/* ===== ADV / DISADV ===== */
.advdis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.adv-card, .dis-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.adv-card h3, .dis-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.adv-card h3 img, .dis-card h3 img { width: 22px; height: 22px; }
.adv-list, .dis-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.adv-list li, .dis-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.adv-list li img, .dis-list li img { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
/* ===== BONUSES ===== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.bonus-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-icon img { width: 24px; height: 24px; }
.bonus-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.bonus-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
/* ===== INSTALL ===== */
.install-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}
.install-tab {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  font-family: var(--font);
  transition: 0.2s;
}
.install-tab.active {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
}
.install-content { display: none; }
.install-content.active { display: block; }
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.install-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.install-step-num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.install-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.install-step p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.review-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.review-name { font-size: 15px; font-weight: 600; }
.review-role { font-size: 14px; color: var(--text-secondary); }
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-stars img { width: 16px; height: 16px; }
/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
}
.blog-card:hover {
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-2px);
  opacity: 1;
}
.blog-thumb {
  width: 100%;
  aspect-ratio: 400/220;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
}
.faq-question img { width: 20px; height: 20px; transition: transform 0.3s; }
.faq-item.open .faq-question img { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 28px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,212,170,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  margin: 0 24px;
  max-width: 1072px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { color: var(--text-secondary); font-size: 17px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.contact-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.contact-card p { color: var(--text-secondary); font-size: 15px; margin-bottom: 16px; }
/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 80px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.footer-links h4 { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 4px 0;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.footer-disclaimer a { color: var(--text-secondary); text-decoration: underline; }
.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 0.5;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .what-is-content { grid-template-columns: 1fr; }
  .rating-container { grid-template-columns: 1fr; }
  .rating-big { max-width: 280px; margin: 0 auto; }
  .pricing-layout { grid-template-columns: 1fr; }
  .game-types-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .burger { display: block; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; padding-top: 28px; }
  .hero-stat strong { font-size: 22px; }
  .hero-benefit { font-size: 16px; }
  .hero-actions-row { flex-wrap: wrap; }
  .btn-lg { padding: 14px 32px; font-size: 16px; }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 15px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .advdis-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .game-types-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; gap: 24px; }
  .cta-section { padding: 36px 20px; margin: 0 16px; }
  .cta-section h2 { font-size: 22px; }
  .rating-row-label { width: 100px; font-size: 14px; }
  .rating-container { gap: 24px; }
  .install-tabs { flex-wrap: wrap; }
  .container { padding: 0 16px; }
  .info-floating-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fc-val { font-size: 18px; }
  .float-card { padding: 12px; }
  .footer-bottom { font-size: 13px; line-height: 1.8; }
}
/* SVG inline icons */
.icon-svg { display: inline-block; }