:root {
  --color-bg: #0a0a14;
  --color-surface: #14142a;
  --color-surface-light: #1e1e3a;
  --color-primary: #e94560;
  --color-primary-hover: #ff6b6b;
  --color-gold: #FFD700;
  --color-text: #eaeaea;
  --color-text-muted: #8a8aa0;
  --font: 'Roboto', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --header-h: 4rem;
  --container-max: 1280px;
  --pad: 1rem;
}

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

/* Roboto - локальные шрифты (400, 500, 700) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/roboto-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.header__logo img {
  height: 2.2rem;
  width: auto;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  order: 3;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-surface);
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  z-index: 99;
}

.header__nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header__menu a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
}

.header__menu-icon {
  flex-shrink: 0;
  display: block;
}

.header__menu a:hover .header__menu-icon,
.header__menu a.header__menu-link--active .header__menu-icon {
  filter: brightness(0) invert(48%) sepia(79%) saturate(2476%) hue-rotate(320deg) brightness(98%) contrast(97%);
}

.header__menu a:hover {
  color: var(--color-primary);
}

.header__menu a.header__menu-link--active {
  color: var(--color-primary);
  font-weight: 600;
}

.header__actions {
  display: flex;
  gap: 0.5rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-wrap {
  padding: 0.75rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.breadcrumb-wrap--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item a {
  color: var(--color-text-muted);
}

.breadcrumb__item a:hover {
  color: var(--color-primary);
}

.breadcrumb__item--current .breadcrumb__link--current {
  color: var(--color-text);
  pointer-events: none;
  cursor: default;
}

.breadcrumb__sep {
  color: var(--color-text-muted);
  opacity: 0.6;
  user-select: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 60%, rgba(233,69,96,0.08) 100%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__info {
  flex: 1;
}

.hero__title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.hero__subtitle {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--color-gold);
  font-weight: 500;
}

.hero__text {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 32rem;
}

.hero__bonus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: var(--color-surface-light);
  border: 1px solid rgba(233,69,96,0.3);
  border-radius: var(--radius);
}

.hero__bonus-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__bonus-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
}

.hero__bonus-amount {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.hero__bonus-card .btn {
  width: 100%;
  max-width: 14rem;
}

.hero__bonus-card .btn--outline {
  margin-top: 0.25rem;
}

/* ---------- Categories / Pills ---------- */
.categories {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.categories__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--color-surface-light);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

.categories__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.categories__arrow svg {
  width: 14px;
  height: 14px;
}

.categories__scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
}

.categories__scroll::-webkit-scrollbar {
  display: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--color-surface-light);
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}

.pill:hover {
  background: rgba(233,69,96,0.15);
  color: #fff;
  border-color: rgba(233,69,96,0.3);
}

.pill--active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.pill--active:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.pill__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.pill__label {
  line-height: 1;
}

/* ---------- Section title ---------- */
.section__title {
  margin: 0 0 1.25rem;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ---------- Games panels / tabs ---------- */
.games {
  padding: 2.5rem 0;
}

.games__panel {
  display: none;
}

.games__panel--active {
  display: block;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  overflow: hidden;
  gap: 0.75rem;
}

.games__grid > :nth-child(n+5) {
  display: none;
}

.game-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  color: var(--color-text);
  transition: transform 0.2s;
}

.game-card:hover {
  transform: translateY(-3px);
  color: var(--color-text);
}

.game-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg);
}

.game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s;
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card__play {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.game-card__title {
  display: block;
  padding: 0.5rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Content ---------- */
.content {
  padding: 2.5rem 0;
  background: var(--color-surface);
}

.content__text h1,
.content__text h2,
.content__text h3 {
  color: var(--color-text);
  line-height: 1.3;
}

.content__text h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.content__text h1:first-child {
  margin-top: 0;
}

.content__text h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
}

.content__text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.4rem;
  color: var(--color-text);
}

.content__text p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  margin: 0;
  padding: 1rem 2.5rem 1rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

.faq-item h3:hover {
  background: rgba(233, 69, 96, 0.08);
  color: var(--color-primary);
}

.faq-item h3::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-text-muted);
  transition: transform 0.25s;
}

.faq-item.is-open h3::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.is-open .faq-answer {
  max-height: 800px;
}

.faq-answer [itemprop="text"] {
  padding: 0 1rem 1rem;
}

.faq-answer [itemprop="text"] p {
  margin: 0;
  padding-top: 0;
}

.faq-answer [itemprop="text"] p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.footer {
  padding: 2.5rem 0 1.5rem;
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer__logo {
  display: block;
  flex-shrink: 0;
}

.footer__logo img {
  height: 2rem;
  width: auto;
  opacity: 0.85;
}

.footer__about {
  flex: 1;
}

.footer__about p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ---------- Page content (privacy, terms) ---------- */
.page-content {
  padding: 2rem 0 3rem;
}

.page-content h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.page-content__updated {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.page-content__lead {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  max-width: 42rem;
}

/* ---------- CTA Block ---------- */
.cta-block {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.cta-block__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

.cta-block__info {
  flex: 1;
}

.cta-block__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.cta-block__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cta-block__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(233,69,96,0.25);
  border-radius: var(--radius-sm);
  background: rgba(233,69,96,0.06);
  flex-shrink: 0;
}

.cta-block__bonus-label {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-block__bonus-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
}

.cta-block__bonus-amount {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.cta-block__offer .btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

/* ---------- Content blocks (advantages, stats, bonus, trust) ---------- */
.content-block {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.content-block__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.content-block__title--center {
  width: 100%;
  text-align: center;
}

/* Advantages grid */
.block-advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.block-advantages .content-block__title {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}

.block-advantages__item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.block-advantages__icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233,69,96,0.2);
  border-radius: 6px;
  font-size: 1.1rem;
  color: var(--color-gold);
}

.block-advantages__text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.block-advantages__text span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Stats row */
.block-stats {
  display: flex;
  flex-direction: column;
}

.block-stats .block-stats__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
}

.block-stats__item {
  text-align: center;
  padding: 0.75rem 1rem;
  min-width: 80px;
}

.block-stats__num {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
}

.block-stats__label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bonus highlight */
.block-bonus {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid rgba(233,69,96,0.35);
  background: linear-gradient(135deg, rgba(233,69,96,0.08) 0%, rgba(233,69,96,0.02) 100%);
  border-radius: var(--radius);
}

.block-bonus__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.block-bonus__label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.block-bonus .btn {
  display: inline-flex;
}

/* Trust / security */
.block-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.block-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.block-trust__item::before {
  content: "✓";
  color: #4ade80;
  font-weight: 700;
}

/* Features list */
.block-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.block-features__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.block-features__item:last-child {
  border-bottom: none;
}

.block-features__item::before {
  content: "•";
  color: var(--color-primary);
  font-weight: 700;
}

/* ---------- Reviews block ---------- */
.reviews-block {
  margin: 1.5rem 0;
}

.reviews-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(233, 69, 96, 0.2);
}

.review-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.review-card__rating {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-card__author {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.review-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* ---------- Breakpoint: 480px ---------- */
@media (min-width: 480px) {
  .games__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .games__grid > :nth-child(n+5) {
    display: block;
  }

  .games__grid > :nth-child(n+7) {
    display: none;
  }

  .reviews-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .block-advantages {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Breakpoint: 768px ---------- */
@media (min-width: 768px) {
  :root {
    --pad: 1.5rem;
  }

  .header__burger {
    display: none;
  }

  .header__nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    border: none;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .header__menu {
    flex-direction: row;
    gap: 1.5rem;
  }

  .header__menu a {
    padding: 0.25rem 0;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__bonus-card {
    min-width: 280px;
    flex-shrink: 0;
  }

  .games__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .games__grid > :nth-child(n+7) {
    display: block;
  }

  .games__grid > :nth-child(n+9) {
    display: none;
  }

  .footer__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .reviews-block__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .cta-block__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .cta-block__offer {
    min-width: 220px;
    align-items: center;
  }

  .cta-block__offer .btn {
    width: auto;
  }

  .block-advantages {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Breakpoint: 992px ---------- */
@media (min-width: 992px) {
  :root {
    --pad: 2rem;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__bonus-card {
    min-width: 320px;
    padding: 2rem 2.5rem;
  }

  .hero__bonus-value {
    font-size: 2.4rem;
  }

  .games__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .games__grid > :nth-child(n+9) {
    display: block;
  }

  .games__grid > :nth-child(n+11) {
    display: none;
  }
}

/* ---------- Breakpoint: 1200px ---------- */
@media (min-width: 1200px) {
  .games__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .games__grid > :nth-child(n+11) {
    display: block;
  }

  .games__grid > :nth-child(n+13) {
    display: none;
  }

  .hero__title {
    font-size: 2.6rem;
  }
}
