:root {
  --c-primary: #006633;
  --c-primary-dark: #004d26;
  --c-primary-light: #00863d;
  --c-accent: #ffb800;
  --c-accent-dark: #e6a600;
  --c-bg: #f4f5f7;
  --c-white: #ffffff;
  --c-text: #1a1a1a;
  --c-text-muted: #666;
  --c-border: #e0e0e0;
  --c-red: #e53935;
  --c-badge-new: #2196f3;
  --c-badge-hot: #f44336;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --header-h: 64px;
  --font: 'Lato', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--c-text); background: var(--c-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 38px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.header-nav a:hover { background: #f0f4f0; color: var(--c-primary); }
.header-nav a svg { width: 10px; height: 10px; fill: currentColor; opacity: .6; }
.header-spacer { flex: 1; }
.btn-play-header { display: none; }
.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}
.header-icons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s;
  color: var(--c-text-muted);
  font-size: 12px;
  font-weight: 700;
}
.header-icons button:hover { background: #f0f0f0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-register {
  background: var(--c-primary-light);
  color: var(--c-white) !important;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-register:hover { background: var(--c-primary); transform: translateY(-1px); }
.btn-login {
  background: none;
  color: var(--c-primary) !important;
  border: 2px solid var(--c-primary);
  padding: 7px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-login:hover { background: var(--c-primary); color: var(--c-white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-white);
  z-index: 99;
  overflow-y: auto;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: #f0f4f0; color: var(--c-primary); }
.mobile-menu .btn-register, .mobile-menu .btn-login {
  display: block;
  text-align: center;
  margin-top: 8px;
  width: 100%;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--c-primary-dark);
  overflow: hidden;
}
.hero-banner {
  display: block;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,40,20,.55) 0%, transparent 60%);
  display: flex;
  align-items: center;
}
.hero-overlay .container {
  width: 100%;
}
.hero-content {
  padding: 40px 0;
  max-width: 520px;
}
.hero-content h1 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-accent);
  color: var(--c-text) !important;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 16px rgba(255,184,0,.4);
}
.hero-cta:hover { background: var(--c-accent-dark); transform: translateY(-2px); }

/* hero without overlay (page heroes) */
.hero-page {
  position: relative;
  background: var(--c-primary-dark);
}
.hero-page .hero-banner { max-height: 320px; }
.hero-page .hero-overlay {
  background: linear-gradient(90deg, rgba(0,40,20,.7) 0%, rgba(0,40,20,.3) 100%);
}

/* ── JACKPOT BADGE ───────────────────────────────────── */
.jackpot-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}
.jackpot-badge .label {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.jackpot-badge .amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1.2;
}

/* ── TABS ────────────────────────────────────────────── */
.tabs-wrapper {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.tabs {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--c-primary); }
.tab-btn.is-active { color: var(--c-primary); border-bottom-color: var(--c-primary); }

/* ── FILTER BAR ──────────────────────────────────────── */
.filter-bar {
  background: var(--c-white);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-bar .container { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; width: 100%; }
.search-wrap {
  position: relative;
  flex-shrink: 0;
}
.search-wrap input {
  width: 220px;
  padding: 9px 16px 9px 40px;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .15s;
}
.search-wrap input:focus { border-color: var(--c-primary); }
.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: var(--c-text-muted);
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 18px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.chip:hover, .chip.is-active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }

/* ── SECTION ─────────────────────────────────────────── */
.section { padding: 28px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-text);
}
.section-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-link:hover { text-decoration: underline; }

/* ── GAME CARDS ──────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.game-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  position: relative;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.game-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-primary-dark);
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.game-card:hover .game-card-img img { transform: scale(1.06); }
.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c-white);
}
.game-badge--new { background: var(--c-badge-new); }
.game-badge--hot { background: var(--c-badge-hot); }
.game-badge--jackpot { background: var(--c-accent); color: var(--c-text); }
.game-card-actions {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity .2s;
}
.game-card:hover .game-card-actions { opacity: 1; }
.btn-play-icon, .btn-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-play-icon { background: var(--c-accent); }
.btn-info-icon { background: rgba(255,255,255,.9); }
.btn-play-icon svg, .btn-info-icon svg { width: 14px; height: 14px; }
.btn-play-icon svg { fill: var(--c-text); }
.btn-info-icon svg { fill: var(--c-text-muted); }
.game-card-body {
  padding: 10px 12px 12px;
}
.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-meta {
  font-size: 11px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.game-card-rtp {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-primary);
}

/* ── MORE GAMES BUTTON ───────────────────────────────── */
.more-games-wrap { text-align: center; padding: 24px 0 8px; }
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  font-size: 14px;
  font-weight: 700;
  background: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-more:hover { background: var(--c-primary); color: var(--c-white); }
.btn-more svg { width: 14px; height: 14px; fill: currentColor; }

/* ── BONUS CARD ──────────────────────────────────────── */
.bonus-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-left: 5px solid var(--c-accent);
}
.bonus-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.bonus-subtitle { font-size: 15px; color: var(--c-text-muted); margin-bottom: 16px; }
.bonus-items { display: flex; flex-direction: column; gap: 10px; }
.bonus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.bonus-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--c-primary-light);
  color: var(--c-white) !important;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 16px rgba(0,134,61,.3);
  white-space: normal;
  text-align: center;
  max-width: 100%;
  border: none;
  cursor: pointer;
}
.btn-cta-large:hover { background: var(--c-primary); transform: translateY(-2px); }

/* ── PROMO TABLE ─────────────────────────────────────── */
.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.promo-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.promo-card-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.promo-card-label { font-size: 13px; color: var(--c-text-muted); }

/* ── REGISTRATION STEPS ──────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--c-text-muted); }

/* ── BENEFITS LIST ───────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit-item {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.benefit-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.benefit-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }

/* ── SEO CONTENT BLOCK ───────────────────────────────── */
.seo-block {
  background: var(--c-white);
  padding: 48px 0;
}
.seo-inner { max-width: 900px; }
.seo-block h1 { font-size: 28px; font-weight: 900; margin-bottom: 20px; color: var(--c-text); line-height: 1.3; }
.seo-block h2 { font-size: 22px; font-weight: 900; margin: 36px 0 14px; color: var(--c-text); line-height: 1.3; padding-top: 8px; border-top: 2px solid var(--c-border); }
.seo-block h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--c-text); }
.seo-block p { font-size: 15px; line-height: 1.8; color: #333; margin-bottom: 14px; }
.seo-block ul, .seo-block ol {
  margin: 12px 0 16px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.seo-block ul { list-style: disc; }
.seo-block ol { list-style: decimal; }
.seo-block li { margin-bottom: 6px; }
.seo-block strong { font-weight: 700; color: var(--c-text); }
.seo-block a { color: var(--c-primary); text-decoration: underline; }
.seo-block a:hover { color: var(--c-primary-dark); }

.table-wrap { overflow-x: auto; margin: 16px 0 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.seo-block table {
  min-width: 480px;
  font-size: 14px;
  background: var(--c-white);
}
.seo-block th {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
}
.seo-block td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.seo-block tr:last-child td { border-bottom: none; }
.seo-block tr:nth-child(even) td { background: #fafafa; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
details.faq-item {
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
details.faq-item[open] { border-color: var(--c-primary); }
summary.faq-q {
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--c-primary);
  flex-shrink: 0;
  line-height: 1;
}
details.faq-item[open] summary.faq-q::after { content: '−'; }
.faq-a { padding: 0 18px 14px; font-size: 14px; line-height: 1.7; color: #444; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #f0f1f2;
  border-top: 1px solid var(--c-border);
  padding: 40px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.footer-info p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.footer-info .hotline {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-primary);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color .15s;
}
.footer-links a:hover { color: var(--c-primary); }
.app-badges { display: flex; flex-direction: column; gap: 10px; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-text);
  color: var(--c-white) !important;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 12px;
  transition: background .15s;
}
.app-badge:hover { background: var(--c-primary-dark); }
.app-badge svg { width: 20px; height: 20px; fill: var(--c-white); flex-shrink: 0; }
.app-badge span { display: flex; flex-direction: column; }
.app-badge .small { font-size: 9px; opacity: .8; }
.app-badge .big { font-size: 13px; font-weight: 700; line-height: 1.2; }
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.payment-pill {
  padding: 5px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  background: var(--c-white);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 900;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 12px; color: var(--c-text-muted); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.social-link:hover { background: var(--c-primary); border-color: var(--c-primary); }
.social-link svg { width: 16px; height: 16px; fill: var(--c-text-muted); }
.social-link:hover svg { fill: var(--c-white); }

/* ── REVEAL ANIMATION ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .promo-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .header-nav, .header-icons, .header-actions { display: none; }
  .hamburger { display: flex; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .promo-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bonus-card { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  /* hero stacked layout on mobile */
  .hero { overflow: visible; }
  .hero-banner { max-height: 220px; }
  .hero-overlay {
    position: relative;
    inset: auto;
    background: var(--c-primary-dark);
    display: block;
  }
  .hero-overlay .container { width: 100%; }
  .hero-content {
    padding: 20px 0 28px;
    max-width: 100%;
  }
  .hero-content h1 { font-size: 20px; }
  .hero-content p { font-size: 14px; margin-bottom: 16px; }
  .hero-cta { padding: 12px 24px; font-size: 14px; }
  .btn-cta-large { padding: 14px 24px; font-size: 15px; }

  /* hero-page (inner pages) */
  .hero-page .hero-banner { max-height: 180px; }
  .hero-page .hero-overlay { background: var(--c-primary-dark); }

  /* sticky header play button (mobile only) */
  .btn-play-header {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    margin-right: 8px;
    padding: 7px 14px;
    background: var(--c-accent);
    color: var(--c-text) !important;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-play-header:hover { background: var(--c-accent-dark); }

  /* mobile menu play button */
  .mobile-menu .btn-play-mobile {
    display: block;
    margin: 12px 16px;
    padding: 10px 20px;
    background: var(--c-accent);
    color: var(--c-text) !important;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .mobile-menu .btn-play-mobile:hover { background: var(--c-accent-dark); }
}
@media (max-width: 520px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .search-wrap input { width: 100%; }
  .filter-bar .container { flex-direction: column; align-items: flex-start; }
  .seo-block h1 { font-size: 22px; }
  .seo-block h2 { font-size: 19px; }
}
