:root {
  --bg: #030604;
  --panel: #07110b;
  --panel-2: #0b1710;
  --green: #25c53f;
  --green-dark: #0b7d21;
  --gold: #f2c85b;
  --gold-dark: #9d7420;
  --text: #ffffff;
  --muted: #aeb9b1;
  --border: rgba(55,255,91,.18);
  --border-gold: rgba(242,200,91,.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 4%, rgba(26,123,46,.22), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(157,116,32,.1), transparent 20%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.section-shell {
  width: min(1500px, calc(100% - 40px));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(3,6,4,.86);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1500px, calc(100% - 40px));
  min-height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.logo { display: inline-flex; align-items: center; min-width: 180px; }
.logo-image {
  width: auto;
  height: 64px;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
.logo-word {
  position: relative;
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 0 18px rgba(242,200,91,.28);
}
.logo-q { color: var(--green); position: relative; }
.logo-q::before {
  content: "в™›";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.main-nav a {
  color: #ecf1ed;
  font-size: 15px;
  transition: .2s;
}
.main-nav a:hover { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 50px; height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(8,16,11,.8);
  color: #fff;
  font-size: 30px;
}
.btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  transition: .2s;
}
.btn-green {
  background: linear-gradient(180deg,#2df052,#0f8c28);
  color: white;
  box-shadow: 0 12px 35px rgba(37,197,63,.23);
}
.btn-green:hover { transform: translateY(-2px); }
.btn-outline, .btn-dark {
  border: 1px solid rgba(242,200,91,.5);
  background: rgba(4,8,6,.72);
}
.btn-outline:hover, .btn-dark:hover { border-color: var(--green); color: var(--green); }
.btn-large { min-height: 60px; padding-inline: 32px; font-size: 16px; gap: 10px; }
.menu-toggle {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(0,0,0,.25);
  padding: 12px;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  height: 420px;
  min-height: 0;
  margin-top: 20px;
  padding: 0;
  display: block;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #050805;
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.hero-background-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.94) 0%,
      rgba(0,0,0,.78) 30%,
      rgba(0,0,0,.28) 56%,
      rgba(0,0,0,.02) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 48%;
  max-width: 620px;
  height: 100%;
  padding: 32px 0 26px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  margin-bottom: 13px;
  border: 1px solid rgba(242,200,91,.48);
  border-radius: 8px;
  color: #f6df95;
  background: rgba(0,0,0,.3);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(38px,4vw,62px);
  line-height: .98;
  letter-spacing: -1.8px;
}

.hero h1 span {
  color: var(--green);
  text-shadow: 0 0 22px rgba(37,197,63,.4);
}

.hero-subtitle {
  max-width: 470px;
  margin-bottom: 20px;
  color: #d8ddd9;
  font-size: 16px;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-buttons .btn {
  min-height: 50px;
}

.button-icon {
  color: var(--gold);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 9px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(242,200,91,.45);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  color: var(--gold);
  font-size: 16px;
}

.feature strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.feature p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

/* Телефон, подарок, рулетка и jackpot уже находятся на картинке баннера */
.hero-visual,
.hero-jackpot {
  display: none;
}

/* SHARED SECTION HEAD */
.popular-section,.all-games-section {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: radial-gradient(circle at top left,rgba(37,197,63,.1),transparent 28%),linear-gradient(180deg,rgba(7,17,11,.93),rgba(3,6,4,.97));
}
.section-head,.all-games-head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 22px;
}
.section-kicker { margin-bottom: 7px; color: var(--gold); font-size: 17px; font-weight: 900; }
.section-head h2,.all-games-head h2 { font-size: 32px; line-height: 1; text-transform: uppercase; letter-spacing: -.7px; }
.all-games-head h2 span { margin-left: 10px; color: var(--green); font-size: 15px; text-transform: none; }
.section-actions { display: flex; align-items: center; gap: 10px; }
.slider-btn {
  width: 43px; height: 43px; border: 1px solid rgba(37,197,63,.42); border-radius: 50%;
  background: rgba(0,0,0,.32); color: var(--green); font-size: 29px;
}
.all-games-link {
  min-height: 43px; padding: 0 17px; display: inline-flex; align-items: center;
  border: 1px solid rgba(37,197,63,.42); border-radius: 10px; color: var(--green); font-weight: 800;
}

/* POPULAR */
.popular-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 17px; }
.game-card {
  position: relative; min-height: 350px; overflow: hidden;
  display: flex; align-items: flex-end;
  border: 1px solid rgba(242,200,91,.2); border-radius: 18px;
  background-size: cover; background-position: center;
  box-shadow: inset 0 -120px 90px rgba(0,0,0,.78),0 18px 48px rgba(0,0,0,.35);
  transition: .23s;
}
.game-card:hover { transform: translateY(-7px); border-color: rgba(37,197,63,.65); }
.game-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.8)),radial-gradient(circle at top,rgba(255,255,255,.14),transparent 38%);
}
.game-label,.game-badge {
  position: absolute; z-index: 3; top: 13px; left: 13px;
  padding: 6px 9px; border-radius: 7px;
  background: linear-gradient(180deg,#2df052,#0f8c28);
  font-size: 10px; font-weight: 900; text-transform: uppercase;
}
.provider { position: absolute; z-index: 3; top: 15px; right: 13px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.game-content { position: relative; z-index: 2; width: 100%; padding: 0 16px 16px; }
.game-content h3 { min-height: 52px; margin-bottom: 12px; font-size: 21px; line-height: 1.1; }
.play-btn,.small-play-btn {
  width: 100%; min-height: 45px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; background: linear-gradient(180deg,#2df052,#0f8c28); font-weight: 900;
}
.cover-purple { background-image: linear-gradient(145deg,#6c4aff,#2a1b54 55%,#050505); }
.cover-pink { background-image: linear-gradient(135deg,#ff5ecb,#ff9e32 48%,#342060); }
.cover-red { background-image: linear-gradient(135deg,#150305,#3b0715 45%,#050505); }
.cover-gold { background-image: linear-gradient(145deg,#94602d,#27160d 52%,#050505); }
.cover-blue { background-image: linear-gradient(145deg,#2e91b8,#134b50 50%,#142515); }
.cover-green { background-image: linear-gradient(145deg,#168044,#0d2d1b 52%,#050505); }
.cover-orange { background-image: linear-gradient(145deg,#dd6b20,#4a1d0b 55%,#050505); }
.cover-live { background-image: conic-gradient(from 45deg,#c22135,#e4b64d,#196b33,#255fc7,#c22135); }

/* ALL GAMES */
.games-search { width: 330px; }
.games-search input {
  width: 100%; min-height: 50px; padding: 0 17px;
  border: 1px solid var(--border); border-radius: 12px;
  outline: none; background: rgba(0,0,0,.34); color: #fff;
}
.games-search input:focus { border-color: rgba(37,197,63,.7); box-shadow: 0 0 0 3px rgba(37,197,63,.1); }
.games-layout { display: grid; grid-template-columns: 210px 1fr; gap: 22px; }
.providers-panel {
  height: max-content; padding: 13px; border: 1px solid var(--border); border-radius: 14px; background: rgba(0,0,0,.22);
}
.provider-filter {
  width: 100%; min-height: 41px; margin-bottom: 7px; padding: 0 13px;
  display: flex; align-items: center; border: 0; border-radius: 8px;
  background: transparent; color: var(--muted); text-align: left;
}
.provider-filter:hover,.provider-filter.active { background: rgba(37,197,63,.15); color: #fff; }
.category-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 17px; }
.category-tab {
  min-height: 41px; padding: 0 17px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 9px;
  background: rgba(0,0,0,.28); color: #dfe6e1; font-weight: 800;
}
.category-tab:hover,.category-tab.active {
  border-color: rgba(37,197,63,.62); background: linear-gradient(180deg,#2df052,#0f8c28); color: #fff;
}
.games-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 15px; }
.small-game-card {
  position: relative; min-height: 205px; overflow: hidden; display: flex; align-items: flex-end;
  border: 1px solid rgba(242,200,91,.17); border-radius: 14px;
  background-size: cover; background-position: center;
  box-shadow: inset 0 -80px 60px rgba(0,0,0,.82),0 12px 34px rgba(0,0,0,.3);
  transition: .2s;
}
.small-game-card:hover { transform: translateY(-5px); border-color: rgba(37,197,63,.6); }
.small-game-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.78)),radial-gradient(circle at top,rgba(255,255,255,.13),transparent 35%);
}
.favorite {
  position: absolute; z-index: 3; top: 9px; right: 9px;
  width: 29px; height: 29px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(0,0,0,.45);
}
.small-game-info { position: relative; z-index: 2; width: 100%; padding: 11px; }
.small-game-info h3 { min-height: 37px; margin-bottom: 9px; font-size: 14px; line-height: 1.15; }
.small-game-meta { display: flex; justify-content: space-between; gap: 7px; margin-bottom: 9px; color: var(--muted); font-size: 10px; }
.small-play-btn { min-height: 35px; font-size: 13px; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 23px; }
.load-more-btn {
  min-height: 50px; padding: 0 32px;
  border: 1px solid rgba(37,197,63,.58); border-radius: 11px;
  background: rgba(37,197,63,.09); color: #fff; font-weight: 900;
}
.load-more-btn:hover { background: linear-gradient(180deg,#2df052,#0f8c28); }
.load-more-btn.is-hidden { display: none; }
.empty-games { grid-column: 1/-1; padding: 40px; border: 1px solid var(--border); border-radius: 13px; color: var(--muted); text-align: center; }

/* PROMO */
.promo-section {
  margin-top: 24px; display: grid; grid-template-columns: 1.05fr 1fr 1.05fr; gap: 20px;
}
.promo-card {
  position: relative; overflow: hidden; min-height: 470px; padding: 25px;
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: 18px;
  background: radial-gradient(circle at top right,rgba(37,197,63,.1),transparent 30%),linear-gradient(180deg,rgba(7,17,11,.96),rgba(3,6,4,.98));
}
.promo-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 17px; }
.eyebrow { display: block; margin-bottom: 8px; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.gold-text { color: var(--gold); }
.promo-card h2 { margin-bottom: 9px; font-size: 27px; line-height: 1.1; }
.promo-card p { color: var(--muted); font-size: 14px; line-height: 1.45; }
.status-badge {
  flex: 0 0 auto; padding: 6px 9px; border: 1px solid rgba(37,197,63,.4); border-radius: 99px;
  background: rgba(37,197,63,.11); color: var(--green); font-size: 10px; font-weight: 900; text-transform: uppercase;
}
.status-badge.hot { background: rgba(211,45,45,.14); border-color: rgba(255,81,81,.4); color: #ff6969; }
.status-badge.active { color: #6aff82; }

.wheel-area { position: relative; flex: 1; min-height: 265px; display: grid; place-items: center; }
.bonus-wheel {
  position: relative; width: 245px; aspect-ratio: 1; border-radius: 50%;
  border: 8px solid #d0a443;
  background: repeating-conic-gradient(from -15deg,#155923 0 30deg,#0b3215 30deg 60deg);
  box-shadow: inset 0 0 0 8px #6f5119,0 0 42px rgba(242,200,91,.18);
  transition: transform 3.2s cubic-bezier(.17,.67,.1,1);
}
.bonus-wheel::after { content:""; position:absolute; inset:21px; border:2px solid rgba(242,200,91,.34); border-radius:50%; }
.wheel-center {
  position: absolute; z-index: 3; left: 50%; top: 50%;
  width: 84px; height: 84px; transform: translate(-50%,-50%);
  display: grid; place-items: center; border: 5px solid #d0a443; border-radius: 50%;
  background: radial-gradient(circle,#1a261d,#060806); color: var(--gold); font-weight: 900;
}
.wheel-pointer { position: absolute; z-index: 5; top: 2px; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 28px; }
.wheel-text { position: absolute; z-index: 2; color: #fff; font-size: 11px; font-weight: 900; }
.wt1{top:25px;left:50%;transform:translateX(-50%)} .wt2{top:60px;right:27px} .wt3{bottom:60px;right:25px}
.wt4{bottom:27px;left:50%;transform:translateX(-50%)} .wt5{bottom:60px;left:27px} .wt6{top:60px;left:27px}
.spin-result { min-height: 22px; margin-top: 10px; text-align: center; color: var(--gold)!important; font-weight: 800; }

.jackpot-card {
  border-color: rgba(242,200,91,.34);
  background: radial-gradient(circle at 50% 20%,rgba(242,200,91,.14),transparent 34%),linear-gradient(180deg,rgba(16,13,7,.98),rgba(4,5,4,.99));
}
.jackpot-value {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--gold); text-shadow: 0 0 22px rgba(242,200,91,.3);
}
.jackpot-value span { font-size: clamp(42px,4vw,62px); font-weight: 900; letter-spacing: -2px; }
.jackpot-value small { margin-top: 17px; font-size: 22px; font-weight: 900; }
.jackpot-progress { margin-bottom: 24px; }
.progress-line { height: 9px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.07); }
.progress-line span { display: block; width: 74%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#9d7420,#f2c85b); }
.progress-copy { display: flex; justify-content: space-between; margin-top: 9px; color: var(--muted); font-size: 12px; }
.progress-copy strong { color: #fff; }

.tournament-prize {
  margin: 22px 0 17px; padding: 17px; border: 1px solid rgba(242,200,91,.18); border-radius: 13px; background: rgba(242,200,91,.05);
}
.tournament-prize span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 12px; }
.tournament-prize strong { color: var(--gold); font-size: 28px; }
.countdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 17px; }
.countdown div { padding: 11px 5px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: rgba(0,0,0,.25); text-align: center; }
.countdown strong { display: block; font-size: 22px; }
.countdown span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.leader-preview { margin-bottom: 17px; }
.leader-row {
  display: grid; grid-template-columns: 33px 1fr auto; align-items: center; gap: 9px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.rank {
  width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(242,200,91,.11); color: var(--gold); font-size: 11px; font-weight: 900;
}
.player { font-size: 13px; }
.leader-row strong { color: var(--green); font-size: 12px; }
.promo-btn {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  margin-top: auto; border: 0; border-radius: 10px; font-weight: 900; transition: .2s;
}
.green-btn { background: linear-gradient(180deg,#2df052,#0f8c28); color: #fff; }
.gold-btn { background: linear-gradient(180deg,#f7d97d,#b78320); color: #171006; }
.promo-btn:hover { transform: translateY(-2px); }

/* TRUST */
.trust-section {
  margin-top: 24px; padding: 22px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
  border: 1px solid var(--border); border-radius: 18px; background: rgba(7,17,11,.78);
}
.trust-item { display: flex; gap: 13px; padding: 12px; }
.trust-item > span {
  flex: 0 0 auto; color: var(--gold); font-size: 26px; font-weight: 900; opacity: .75;
}
.trust-item h3 { margin-bottom: 5px; font-size: 16px; }
.trust-item p { color: var(--muted); font-size: 13px; line-height: 1.4; }

/* FOOTER */
.site-footer { margin-top: 26px; border-top: 1px solid rgba(255,255,255,.06); background: #020402; }
.footer-inner {
  width: min(1500px,calc(100% - 40px));
  margin: auto; padding: 54px 0 38px;
  display: grid; grid-template-columns: 1.35fr repeat(3,1fr) 1.05fr; gap: 35px;
}
.footer-logo { margin-bottom: 18px; }
.footer-brand p,.footer-support p { max-width: 290px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 50%; color: var(--green); font-size: 11px; font-weight: 900;
}
.footer-column h3,.footer-support h3 { margin-bottom: 16px; font-size: 15px; color: var(--gold); text-transform: uppercase; }
.footer-column { display: flex; flex-direction: column; gap: 11px; }
.footer-column a { color: var(--muted); font-size: 14px; }
.footer-column a:hover { color: var(--green); }
.support-btn {
  min-height: 44px; margin-top: 17px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(37,197,63,.55); border-radius: 9px; color: var(--green); font-weight: 800;
}
.age-badge {
  width: 48px; height: 48px; margin-top: 17px; display: grid; place-items: center;
  border: 2px solid #d2d7d3; border-radius: 50%; font-weight: 900;
}
.footer-bottom {
  width: min(1500px,calc(100% - 40px)); margin: auto; padding: 20px 0;
  display: flex; justify-content: space-between; gap: 20px;
  border-top: 1px solid rgba(255,255,255,.06); color: #79827c; font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 1250px) {
  .main-nav { gap: 18px; }
  .popular-grid { grid-template-columns: repeat(3,1fr); }
  .games-grid { grid-template-columns: repeat(4,1fr); }
  .promo-section { grid-template-columns: 1fr 1fr; }
  .tournament-card { grid-column: 1/-1; }
  .footer-inner { grid-template-columns: 1.4fr repeat(2,1fr); }
}
@media (max-width: 980px) {
  .hero {
    height: 390px;
  }

  .hero-content {
    width: 58%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute; top: 88px; left: 20px; right: 20px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px; border: 1px solid var(--border); border-radius: 14px; background: #061008;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .header-actions .btn { display: none; }
  .games-layout { grid-template-columns: 1fr; }
  .providers-panel { display: flex; gap: 8px; overflow-x: auto; }
  .provider-filter { width: auto; white-space: nowrap; margin-bottom: 0; }
  .trust-section { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .section-shell,.header-inner,.footer-inner,.footer-bottom { width: min(100% - 24px,1500px); }

  .hero {
    height: 520px;
    padding: 0;
  }

  .hero-background-image {
    object-position: 72% center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.9) 0%,
        rgba(0,0,0,.7) 62%,
        rgba(0,0,0,.42) 100%
      );
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding: 28px 22px;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
  .section-head,.all-games-head { align-items: flex-start; flex-direction: column; }
  .section-actions { width: 100%; overflow-x: auto; }
  .popular-grid {
    display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; padding-bottom: 6px;
  }
  .game-card { min-width: 245px; min-height: 330px; scroll-snap-align: start; }
  .games-search { width: 100%; }
  .games-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .promo-section { grid-template-columns: 1fr; }
  .tournament-card { grid-column: auto; }
  .trust-section { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand,.footer-support { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero {
    height: 500px;
    border-radius: 14px;
  }

  .hero-content {
    padding: 22px 16px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-features {
    gap: 12px;
  }

  .feature {
    width: 100%;
  }
  .logo { min-width: 145px; }
  .logo-word { font-size: 34px; }
  .header-inner { gap: 10px; }
  .icon-btn { display: none; }
  .popular-section,.all-games-section { padding: 20px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .small-game-card { min-height: 180px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-column,.footer-brand,.footer-support { grid-column: auto; }
}