/* ── Шрифты ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Artegra';
  src: url('../fonts/0.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Artegra';
  src: url('../fonts/1.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'PT Sans';
  src: url('../fonts/2.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PT Sans';
  src: url('../fonts/4.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Сброс и базовые ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* Скролл-бар */
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: var(--c-green-700); border-radius: 2px; }
::-webkit-scrollbar-thumb { background: var(--c-green-100); border-radius: 2px; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-bg-nav);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 40px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-green-200);
  letter-spacing: 2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-green-100);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--c-bg-hover); color: var(--c-white); }

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

/* ── КНОПКИ ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn-login {
  background: transparent;
  color: var(--c-green-200);
  border: 1.5px solid var(--c-green-400);
}
.btn-login:hover { background: var(--c-green-600); color: var(--c-white); }

.btn-register {
  background: var(--btn-cta-bg);
  color: #3a1a00;
  box-shadow: var(--btn-cta-shadow);
}
.btn-register:hover { background: var(--c-yellow-400); box-shadow: 0px 6px 0px 0px var(--c-orange-400); }
.btn-register:active { box-shadow: none; transform: translateY(3px); }

.btn-green {
  background: linear-gradient(to bottom, var(--c-green-200), var(--c-green-600));
  color: var(--c-white);
  box-shadow: 0px 4px 0px 0px var(--c-green-700);
}
.btn-green:hover { background: var(--c-green-300); }

.btn-outline {
  background: transparent;
  color: var(--c-green-200);
  border: 1.5px solid var(--c-green-400);
  border-radius: var(--r-pill);
}
.btn-outline:hover { background: var(--c-bg-hover); }

/* ── HERO FULLWIDTH ──────────────────────────────────────── */
.hero-fullwidth {
  position: relative;
  width: 100%;
  height: 420px;
  /* Тёмный фон с радиальными зелёными свечениями — имитация header-bg */
  background:
    radial-gradient(ellipse 55% 45% at 50% 110%, #08ae8b28 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 20% 80%, #056b5420 0%, transparent 50%),
    radial-gradient(ellipse 30% 25% at 80% 80%, #056b5420 0%, transparent 50%),
    radial-gradient(ellipse 60% 30% at 50% 0%, #012f23 0%, transparent 70%),
    linear-gradient(180deg, #030d0a 0%, #051510 40%, #030d0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
/* Сетка-узор поверх фона */
.hero-fullwidth::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,174,139,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,174,139,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
/* Точечный свет сверху по центру */
.hero-fullwidth::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, #08ae8b14 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Кнопки по центру сверху */
.hero-top-content {
  position: relative;
  z-index: 3;
  padding-top: 36px;
}
.hero-btns-center {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Персонаж Eva — по центру снизу */
.hero-char-center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  pointer-events: none;
  z-index: 2;
}
.hero-char-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.hero-char-fade {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 130px;
  background: linear-gradient(to top, var(--c-bg) 0%, transparent 100%);
  z-index: 3;
}

/* ── PROMO ROW ────────────────────────────────────────────── */
.promo-row-section {
  padding: 16px 0 0;
}
.promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.promo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-decoration: none;
}
.promo-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-green-400);
  box-shadow: 0 4px 20px rgba(8,174,139,.15);
}

.promo-cashback {
  background: linear-gradient(120deg, #011a14 0%, #022b1f 100%);
  border-color: #08ae8b28;
}
.promo-bonus {
  background: linear-gradient(120deg, #180f00 0%, #2b1a00 100%);
  border-color: #f5a62328;
}
.promo-wheel {
  background: linear-gradient(120deg, #0a0818 0%, #160f2e 100%);
  border-color: #7b5ea728;
}

.promo-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(8,174,139,.3));
}
.promo-bonus img { filter: drop-shadow(0 0 8px rgba(245,166,35,.3)); }
.promo-wheel img { filter: drop-shadow(0 0 8px rgba(123,94,167,.3)); }

.promo-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.promo-card-label {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 500;
}
.promo-card-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-green-200);
  line-height: 1.1;
}
.promo-bonus .promo-card-value { color: #f5a623; }
.promo-wheel .promo-card-value { color: #a084d8; font-size: 18px; }

.promo-arrow {
  font-size: 18px;
  color: var(--c-muted);
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.promo-card:hover .promo-arrow { transform: translateX(4px); color: var(--c-green-200); }

/* ── FEATURES BAR ───────────────────────────────────────── */
.features-bar {
  padding: 80px 0 28px;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-card)40 100%);
  border-bottom: 1px solid var(--c-border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  overflow: visible;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px 16px;
  background: linear-gradient(180deg, #091e14 0%, #04110c 100%);
  border-radius: 24px;
  border: 1px solid var(--c-border);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  min-height: 96px;
  overflow: visible;
  text-align: center;
  text-decoration: none;
}
.feature-item:hover {
  border-color: var(--c-green-400);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(8,174,139,.15);
}
.feature-item img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: -68px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 16px rgba(8,174,139,.25));
  transition: filter .2s, transform .2s;
}
.feature-item:hover img {
  filter: drop-shadow(0 6px 24px rgba(8,174,139,.45));
  transform: translateY(-4px) scale(1.05);
}
.feature-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-green-50);
  line-height: 1.3;
  text-align: center;
}

/* ── REVIEW SECTION ─────────────────────────────────────── */
.review-section { padding: 40px 0; }
.review-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.review-rating-block {
  background: linear-gradient(135deg, #091e14 0%, #04110c 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.rating-score {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--c-green-200);
  line-height: 1;
}
.rating-stars { font-size: 20px; color: #f5a623; letter-spacing: 2px; margin-bottom: 4px; }
.rating-source { font-size: 12px; color: var(--c-muted); }
.rating-details {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--c-muted);
}
.rating-row span {
  font-weight: 700;
  color: var(--c-green-200);
}
.rating-bar-wrap {
  width: 100%;
  height: 4px;
  background: var(--c-border);
  border-radius: 2px;
  margin-top: 3px;
}
.rating-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--c-green-300);
}

.review-pros-cons {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros h3, .cons h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.pros h3 { color: var(--c-green-200); }
.cons h3 { color: #f55a5a; }
.pros ul li, .cons ul li {
  font-size: 13px;
  color: var(--c-green-50);
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.pros ul li::before { content: '✓'; position: absolute; left: 0; color: var(--c-green-300); font-weight: 700; }
.cons ul li::before { content: '✗'; position: absolute; left: 0; color: #f55a5a; font-weight: 700; }
.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }

/* Info cards row */
.info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.info-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.info-label { font-size: 11px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .4px; }
.info-value { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--c-white); line-height: 1.2; }

/* ── БОНУСЫ SECTION ──────────────────────────────────────── */
.bonuses-section { padding: 40px 0; background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-card)20 100%); }
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.bonus-card {
  border-radius: var(--r-xl);
  padding: 22px 18px;
  border: 1px solid var(--c-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.bonus-1st { background: linear-gradient(135deg, #011a14 0%, #023322 100%); border-color: #08ae8b35; }
.bonus-2nd { background: linear-gradient(135deg, #150e00 0%, #2a1c00 100%); border-color: #f5a62335; }
.bonus-3rd { background: linear-gradient(135deg, #100a1a 0%, #1e1030 100%); border-color: #a084d835; }
.bonus-cashback { background: linear-gradient(135deg, #001018 0%, #001a2e 100%); border-color: #4a90d935; }
.bonus-dep {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c-muted);
}
.bonus-amount {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}
.bonus-1st .bonus-amount { color: var(--c-green-200); }
.bonus-2nd .bonus-amount { color: #f5a623; }
.bonus-3rd .bonus-amount { color: #a084d8; }
.bonus-cashback .bonus-amount { color: #4a90d9; }
.bonus-fs { font-size: 13px; color: var(--c-muted); }
.bonus-min { font-size: 11px; color: var(--c-muted); margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--c-border); }
.bonus-note {
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.5;
}
.bonuses-cta { text-align: center; }

/* ── ЛОЯЛЬНОСТЬ ─────────────────────────────────────────── */
.loyalty-section { padding: 40px 0; }
.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.loyalty-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 14px 10px;
  text-align: center;
  transition: border-color .2s;
}
.loyalty-card:hover { border-color: var(--c-green-400); }
.loyalty-level { font-size: 11px; color: var(--c-muted); margin-bottom: 4px; }
.loyalty-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}
.loyalty-cashback {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-green-200);
}
.loyalty-cashback.zero { color: var(--c-muted); }

/* ── ПЛАТЕЖИ ─────────────────────────────────────────────── */
.payments-section { padding: 40px 0; border-top: 1px solid var(--c-border); }
.payments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.payments-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-green-100);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}
.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-tag {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-green-50);
}
.payment-limits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.limit-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 12px;
  text-align: center;
}
.limit-label { font-size: 11px; color: var(--c-muted); text-transform: uppercase; }
.limit-value { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--c-white); }

/* ── ИГРОВЫЕ ТАБЫ ───────────────────────────────────────── */
.games-section { padding: 32px 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: var(--c-green-300);
  border-radius: 2px;
}

.games-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.games-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-border);
  background: var(--c-bg-card);
  color: var(--c-green-100);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  flex-shrink: 0;
}
.tab-btn img { width: 20px; height: 20px; object-fit: contain; }
.tab-btn:hover, .tab-btn.active {
  background: var(--c-green-600);
  border-color: var(--c-green-400);
  color: var(--c-white);
}

/* ── СЕТКА ИГР ──────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.game-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.game-card:hover { transform: scale(1.04); border-color: var(--c-green-300); z-index: 2; }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .2s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-overlay .btn-play {
  background: var(--btn-cta-bg);
  color: #3a1a00;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.game-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  font-size: 11px;
  color: var(--c-green-50);
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  text-align: center;
}

/* "Горячая" метка */
.game-card .badge-hot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
}

/* Кнопка "смотреть все" */
.games-footer {
  margin-top: 20px;
  text-align: center;
}

/* ── SEO ТЕКСТ ──────────────────────────────────────────── */
.seo-section {
  padding: 48px 0;
  border-top: 1px solid var(--c-border);
}
.seo-content { max-width: 860px; }
.seo-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-green-200);
  margin: 28px 0 12px;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-green-50);
  margin-bottom: 12px;
}
.seo-content a { color: var(--c-green-200); text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--c-bg-nav);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-green-200);
}
.footer-desc { font-size: 13px; color: var(--c-muted); line-height: 1.6; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-green-100);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 13px; color: var(--c-muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--c-green-200); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 12px; color: #4cbfa750; line-height: 1.5; max-width: 700px; }
.footer-18 {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--c-muted);
  flex-shrink: 0;
}

/* ── АДАПТИВ ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-cards { grid-template-columns: repeat(2, 1fr); }
  .loyalty-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .section-title { font-size: 18px; }
  .hero-fullwidth { height: 380px; }
  .hero-char-center { width: 300px; height: 300px; }
  .promo-row { grid-template-columns: 1fr; gap: 8px; }
  .promo-card-value { font-size: 18px; }
  .promo-wheel .promo-card-value { font-size: 15px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-rating-block { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 20px; }
  .rating-score { font-size: 48px; }
  .review-pros-cons { grid-template-columns: 1fr; gap: 16px; }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-cards { grid-template-columns: repeat(2, 1fr); }
  .loyalty-grid { grid-template-columns: repeat(3, 1fr); }
  .payments-grid { grid-template-columns: 1fr; }
  .payment-limits { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero-fullwidth { height: 340px; }
  .hero-top-content { padding-top: 24px; }
  .hero-char-center { width: 260px; height: 260px; }
  .promo-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 9px 16px; font-size: 14px; }
  .header-inner { height: 56px; }
  .hero-fullwidth { height: 300px; }
  .hero-top-content { padding-top: 20px; }
  .hero-btns-center { gap: 10px; }
  .hero-char-center { width: 220px; height: 220px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: 1fr 1fr; }
  .loyalty-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-limits { grid-template-columns: 1fr 1fr; }
  .features-bar { padding-top: 70px; }
  .feature-item img { width: 88px; height: 88px; margin-top: -56px; }
}
