:root {
  --bg-color: #0a0e17;
  --sidebar-bg: #141a29;
  --card-bg: #1a233a;
  --accent-color: #ff4b91;
  --accent-hover: #e01b5c;
  --cyan-accent: #00b4ff;
  --text-main: #ffffff;
  --text-muted: #8b92a5;
  --border-color: #1a233a;
  --card-border: #1a3c63;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --font-family: 'Inter', -apple-system, sans-serif;
  --sidebar-width: 280px;
  /* Единые отступы контента (оригинал по скрину — «широкие» поля; точные px без макета не восстановить) */
  --main-padding-x: clamp(20px, 2.5vw, 48px);
  --main-padding-bottom: 48px;
  --block-gap-y: 40px;
  --slots-grid-gap: 12px;
  /* Как на оригинале: hero и сетки не на всю ширину main — колонка по центру */
  --content-max-width: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); background-color: var(--bg-color); color: var(--text-main); display: flex; min-height: 100vh; overflow-x: hidden; }
body.menu-open { overflow: hidden; touch-action: none; }
a { text-decoration: none; color: inherit; transition: color 0.2s, background 0.2s; }
a.hidden-link { cursor: pointer; }
.layout-wrapper { display: flex; width: 100%; }

/* --- SIDEBAR --- */
.sidebar {
  width: var(--sidebar-width); background-color: var(--sidebar-bg); display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; height: 100vh; z-index: 100; padding: 24px 20px;
}
.logo-container { margin-bottom: 24px; text-align: left; }
.logo-container .seven { font-size: 38px; font-weight: 900; color: var(--accent-color); text-transform: uppercase; letter-spacing: -2px; line-height: 0.9; }
.logo-container .casino { font-size: 14px; font-weight: 800; color: var(--text-main); letter-spacing: 3px; }

.welcome-banner-sm {
  background: linear-gradient(135deg, #026bb5, #003666);
  border-radius: 8px; padding: 12px; display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  position: relative; border: 1px solid #148bef;
}
.wb-icon { width: 32px; height: 32px; }
.welcome-banner-sm .wb-text { font-size: 12px; font-weight: 900; text-transform: uppercase; line-height: 1.2; color: #fff; letter-spacing: 0.5px;}

.nav-menu { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.nav-item { display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; color: var(--text-muted); cursor: pointer; }
.nav-item svg { width: 22px; height: 22px; fill: var(--text-muted); }
.nav-item:hover { background-color: rgba(255, 255, 255, 0.05); color: var(--text-main); }
.nav-item:hover svg { fill: var(--text-main); }
.nav-item.active { background-color: transparent; color: var(--text-main); }
.nav-item.active svg { fill: #0084ff; /* Active home icon color if it differs, or default */ }

.section-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; margin-bottom: 12px; }
.popular-games-mini { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.mini-game-card { display: flex; align-items: center; gap: 12px; padding: 8px 12px; border-radius: 8px; background-color: #1a233a; }
.mini-game-card:hover { background-color: #24304d; }
.mini-game-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.mini-game-info { flex: 1; }
.mini-name { font-size: 12px; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.mini-prov { font-size: 11px; color: var(--text-muted); }
.mini-play { width: 24px; height: 24px; background-color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mini-play svg { width: 10px; height: 10px; fill: #fff; margin-left: 2px; }

.sidebar-footer { margin-top: 32px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.lang-select { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.sb-icons { display: flex; gap: 16px; }
.sb-icons svg { width: 18px; height: 18px; fill: var(--text-muted); cursor: pointer; }

/* --- MAIN CONTENT --- */
.main-content { flex: 1; margin-left: var(--sidebar-width); min-width: 0; display: flex; flex-direction: column; }
.top-header {
  height: 80px;
  /* Ближе к сайдбару слева, кнопки — у правого края main */
  padding-left: clamp(12px, 1.5vw, 28px);
  padding-right: var(--main-padding-x);
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  background-color: var(--bg-color);
  z-index: 50;
}
.top-header .search-bar { flex-shrink: 0; }
.top-header .auth-buttons { flex-shrink: 0; }

/* Mobile header + overlay (desktop скрыты) */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 8px 14px;
  padding-top: max(8px, env(safe-area-inset-top));
  background: rgba(10, 14, 23, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 120;
}
.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.mobile-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  flex: 1;
  min-width: 0;
}
.mobile-logo .seven {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(255, 75, 145, 0.45);
}
.mobile-logo .casino {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.35em;
  margin-top: 2px;
}
.btn-mobile-login {
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(20, 26, 41, 0.95);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-overlay.nav-overlay--visible {
  display: block;
  opacity: 1;
}

.games-scroll-wrap {
  width: 100%;
}

.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  background: rgba(12, 16, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  justify-content: space-around;
  align-items: flex-end;
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 4px 2px 0;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}
.bottom-nav__item--join {
  position: relative;
  color: #fff;
  margin-top: -20px;
}
.bottom-nav__join {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff6aa8 0%, var(--accent-color) 45%, #d81f6a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 75, 145, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.bottom-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
}
.bottom-nav__icon svg { fill: currentColor; }
.bottom-nav__icon--777 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.65);
}
.bottom-nav__icon--spade {
  font-size: 20px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
}
.bottom-nav__item--join .bottom-nav__label {
  color: rgba(255, 255, 255, 0.75);
}
.bottom-nav__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8b92a5;
  text-transform: capitalize;
}

.content-column {
  width: 100%;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.search-bar { display: flex; align-items: center; background-color: transparent; border-radius: 20px; padding: 8px 16px; width: 300px; border: 1px solid #1a233a; }
.search-bar svg { width: 18px; height: 18px; fill: #555c6d; margin-right: 12px; }
.search-bar input { background: none; border: none; color: var(--text-main); font-size: 13px; outline: none; width: 100%; font-weight: 600; font-family: inherit;}
.search-bar input::placeholder { color: #555c6d; }

.auth-buttons { display: flex; gap: 16px; }
.btn { height: 40px; padding: 0 32px; border-radius: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; letter-spacing: 0.5px;}
.btn-signup { background-color: var(--accent-color); color: #fff; }
.btn-signup:hover { background-color: var(--accent-hover); }
.btn-login { background-color: #1a233a; color: #fff; border: 1px solid #24304d; }
.btn-login:hover { background-color: #24304d; }

.main-container { padding: 0 var(--main-padding-x) var(--main-padding-bottom); }

/* HERO — фон: banner.webp (текст только на десктопе) */
.hero-section__mobile-hit {
  display: none;
}
.hero-section {
  position: relative;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(8, 12, 22, 0.88) 0%, rgba(8, 12, 22, 0.42) 48%, rgba(8, 12, 22, 0.18) 100%),
    url('banner.webp') center center / cover no-repeat;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.35);
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 75% 25%, rgba(255, 45, 106, 0.07) 0%, transparent 52%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.12) 0%, rgba(5, 8, 18, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 40px var(--main-padding-x) 36px;
  min-height: 420px;
}
.hero-content {
  flex: 1;
  min-width: 0;
  max-width: 520px;
  padding-bottom: 8px;
}
.hero-subtitle {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.hero-pct-row {
  position: relative;
  display: inline-block;
  margin: 0 0 4px;
  line-height: 0.82;
}
.hero-pct {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ff6a9a 0%, #ff2d6a 35%, #c4154a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 8px 24px rgba(255, 45, 106, 0.35));
  text-shadow: none;
}
.hero-pct-symbol {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}
.hero-flower {
  position: absolute;
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.hero-flower--1 { top: 8%; right: -8%; transform: rotate(18deg); }
.hero-flower--2 { bottom: 18%; left: -2%; transform: rotate(-25deg); opacity: 0.95; }
.hero-up-to {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.hero-up-to strong { font-weight: 900; }
.hero-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 20px;
  letter-spacing: 0.03em;
}
.btn-hero {
  position: relative;
  overflow: visible;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0px, rgba(0, 0, 0, 0.04) 1px, transparent 1px, transparent 3px),
    linear-gradient(180deg, #ff6aa8 0%, var(--accent-color) 45%, #c9185a 100%);
  color: #fff;
  min-height: 52px;
  padding: 0 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 24px rgba(255, 75, 145, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-hero-flower {
  position: absolute;
  top: -8px;
  left: -2px;
  font-size: 1.15rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 2;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 75, 145, 0.5);
}
.hero-terms--mobile { display: none; max-width: 100%; }
.hero-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.hero-pay-icon {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}
.hero-terms {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  max-width: 380px;
  line-height: 1.4;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: var(--block-gap-y);
  margin-top: 0;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(0, 180, 255, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #121722 0%, #0a0d14 48%, #080a10 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 4px 16px rgba(0, 0, 0, 0.25);
}
.feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  position: relative;
  transition: background 0.2s ease;
}
.feature-box::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(0, 180, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.06) 65%,
    transparent 100%
  );
}
.feature-box:last-child::after { display: none; }
.feature-box:hover {
  background: rgba(255, 255, 255, 0.02);
}
.feature-box .f-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.feature-box p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(235, 238, 245, 0.92);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 0;
}

/* GAMES ROW & ORNAMENTAL CARDS */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; margin-top: 0; }
.hero-features + .section-header { margin-top: 4px; }
.section-title { font-size: 16px; font-weight: 900; color: #fff; text-transform: uppercase; display: flex; align-items: center; gap: 10px; letter-spacing: 0.5px;}
.section-title span.icon { font-size: 16px; }
.section-flame {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ff7a2e' d='M12 2c0 0 3 4 3 8a3 3 0 01-6 0c0-2 1-4 2-5.5C10 6 9 8 9 10a4 4 0 008 0c0-2-1-4-2-5.5C10 6 12 2 12 2z'/%3E%3Cpath fill='%23ffb347' d='M12 14c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.view-all { display: flex; gap: 12px; align-items: center;}
.btn-view-all {
  font-size: 11px;
  font-weight: 900;
  padding: 0;
  background: none;
  border: none;
  color: var(--cyan-accent);
  letter-spacing: 0.08em;
}
.btn-view-all:hover { text-decoration: underline; color: #4dc8ff; }
.nav-arrows { display: flex; gap: 8px; }
.nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 180, 255, 0.12);
  border: 1px solid rgba(0, 180, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: inherit;
  font: inherit;
}
.nav-arrow:hover { background: rgba(0, 180, 255, 0.22); border-color: var(--cyan-accent); }
.nav-arrow svg { fill: var(--cyan-accent); width: 10px; height: 10px;}

.games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--slots-grid-gap); margin-bottom: var(--block-gap-y); }

/* 1-to-1 Frame for Games */
.game-card {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 6px;
  background: linear-gradient(145deg, #0f1628 0%, #0a0e18 100%);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 4px;
  border: 1px solid rgba(30, 60, 100, 0.85);
  box-shadow:
    inset 0 0 0 1px rgba(0, 180, 255, 0.12),
    0 0 0 1px rgba(0, 100, 180, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
/* Four small corner squares to mimic a complex border overlay */
.game-card::before, .game-card::after { content: ""; position: absolute; width: 6px; height: 6px; background-color: #1e4575; z-index: 5; }
.game-card::before { top: 2px; left: 2px; box-shadow: 100% 0 0 0 #1e4575; } 
.game-card::after { bottom: 2px; right: 2px; box-shadow: -100% 0 0 0 #1e4575; }
.gc-corner-fix { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 5;}
.gc-corner-fix::before { content: ""; position: absolute; width: 6px; height: 6px; background-color: #1e4575; top: 2px; right: 2px; }
.gc-corner-fix::after { content: ""; position: absolute; width: 6px; height: 6px; background-color: #1e4575; bottom: 2px; left: 2px; }

.game-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(0, 200, 255, 0.35),
    0 0 20px rgba(0, 180, 255, 0.2),
    0 0 0 1px rgba(0, 100, 180, 0.35);
}
.game-img-wrap { flex: 1; position: relative; overflow: hidden; border-radius: 2px; min-height: 0; }
.game-card img { width: 100%; height: 100%; object-fit: cover; }

.game-label {
  flex-shrink: 0;
  background: linear-gradient(180deg, #0a1528 0%, #060b14 100%);
  padding: 10px 8px 12px;
  text-align: center;
  border-top: 1px solid rgba(0, 180, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 4;
}
.game-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-label .prov-text {
  font-size: 10px;
  font-weight: 700;
  color: #6b7a94;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* COLLECTIONS */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: var(--block-gap-y); }
.collection-card { background-color: #141a29; border-radius: 16px; overflow: hidden; padding-bottom: 14px;}
.collection-img-wrap {
  position: relative;
  height: 128px;
  margin: 14px 14px 0 14px;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(30, 45, 75, 0.35) 0%, #0a0d14 55%);
  border: 1px solid rgba(0, 180, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  box-sizing: border-box;
}
.collection-img-wrap img.main-c-img {
  width: auto;
  max-width: 88%;
  max-height: 100px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}
.badge-popular { position: absolute; top: 8px; left: 8px; background-color: var(--accent-color); color: #fff; font-size: 10px; font-weight: 900; padding: 4px 8px; border-radius: 6px; z-index: 4; letter-spacing: 0.5px; }

.c-games-preview { position: absolute; bottom: 8px; left: 8px; display: flex; align-items: center; gap: 4px; z-index: 5;}
.c-games-preview img { width: 28px; height: 28px; border-radius: 6px; border: 2px solid rgba(20, 26, 41, 0.95); object-fit: cover; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); }
.c-games-preview .more-count { width: 28px; height: 28px; border-radius: 6px; background: #0d121c; border: 2px solid rgba(20, 26, 41, 0.95); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: #fff; }

.collection-info { padding: 12px 16px 0; text-align: center; }
.c-title { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 4px; letter-spacing: 0.5px; text-transform: uppercase;}
.c-desc { font-size: 13px; color: var(--text-muted); font-weight: 500;}

/* PAYMENTS & PROVIDERS STRIP */
.providers-strip { margin: 20px 0 var(--block-gap-y); display: flex; flex-direction: column; gap: 24px; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: var(--block-gap-y);}
.p-row { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; align-items: center;}
.p-row img { height: 26px; filter: grayscale(100%); opacity: 0.6; }
.p-provs { font-weight: 900; font-size: 20px; color: #555c6d; letter-spacing: -0.5px; }

/* SEO & FOOTER */
.seo-content { border: 1px solid var(--border-color); border-radius: 12px; padding: 32px; margin-bottom: var(--block-gap-y); background-color: var(--sidebar-bg);}
.seo-content h1 { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 20px;}
.seo-content h2 { font-size: 20px; font-weight: 800; color: #fff; margin: 24px 0 16px;}
.seo-content h3 { font-size: 18px; font-weight: 700; color: var(--accent-color); margin: 20px 0 12px;}
.seo-content h4 { font-size: 15px; color: #fff; margin: 16px 0 8px;}
.seo-content p, .seo-content li { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin-bottom: 12px;}
.seo-content table { width: 100%; border-collapse: collapse; margin: 20px 0; border: 1px solid var(--border-color);}
.seo-content th, .seo-content td { padding: 12px; border: 1px solid var(--border-color); color: var(--text-muted); font-size: 13px; text-align: left;}
.seo-content th { background-color: rgba(255,255,255,0.02); color: #fff; font-weight: 700;}

.main-footer { padding: 32px var(--main-padding-x) 24px; }
.footer-navs { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: var(--block-gap-y); }
.f-about .seven { font-size: 28px; font-weight: 900; color: var(--accent-color); letter-spacing: -1px;}
.f-about p { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 500;}
.f-col-title { font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 20px; text-transform: uppercase;}
.f-col-links { list-style: none; }
.f-col-links li { margin-bottom: 14px; }
.f-col-links a { font-size: 13px; color: var(--text-muted); font-weight: 600;}
.footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 24px; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.eighteen-plus { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--text-muted); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;}

@media (max-width: 1200px) { .games-grid:not(.games-grid--slots-scroll) { grid-template-columns: repeat(4, 1fr); } }

/* Планшет / мобильный layout как на макете */
@media (max-width: 900px) {
  .mobile-header { display: flex; }
  .top-header { display: none; }
  .bottom-nav { display: flex; }
  .main-content {
    margin-left: 0;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .sidebar {
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    z-index: 200;
  }
  .sidebar.sidebar--open {
    transform: translateX(0);
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.55);
  }

  .games-grid:not(.games-grid--slots-scroll) { grid-template-columns: repeat(3, 1fr); }

  .games-scroll-wrap {
    overflow: hidden;
  }
  .games-grid--slots-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    margin-bottom: var(--block-gap-y);
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .games-grid--slots-scroll::-webkit-scrollbar { display: none; }
  .games-grid--slots-scroll .game-card {
    flex: 0 0 42vw;
    max-width: 158px;
    min-width: 132px;
    scroll-snap-align: start;
    aspect-ratio: 2/3;
  }

  .section-header .view-all .btn-view-all { display: none; }

  /* В оригинале на мобиле нет полоски из 3 USP — только развёрнутый hero */
  .hero-features {
    display: none;
  }
  .hero-features + .section-header {
    margin-top: 22px;
  }

  .hero-inner {
    display: none;
  }
  .hero-section__mobile-hit {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 4;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-section {
    border-radius: 0 0 14px 14px;
    min-height: min(92vh, 640px);
    margin-bottom: 8px;
    margin-left: -14px;
    margin-right: -14px;
    width: calc(100% + 28px);
    background: url('mob-banner.webp') center center / cover no-repeat;
    box-shadow: none;
  }
  .hero-section::after {
    display: none;
  }

  .main-container { padding-left: 0; padding-right: 0; padding-bottom: calc(var(--main-padding-bottom) + 8px); }
  .content-column {
    max-width: 100%;
    padding: 0 14px;
  }
  .games-scroll-wrap {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
  }

  .footer-navs { grid-template-columns: 1fr 1fr; }
  .f-about { grid-column: 1 / -1; }

  .main-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .games-grid:not(.games-grid--slots-scroll) { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: 1fr;}
}
