/* ============================================================
   Chicken Road France — rakoone.fr
   ============================================================ */

:root {
  --bg: #1a0a11;
  --bg-head: #24101a;
  --card: #24101a;
  --card-2: #351826;
  --line: #55253a;
  --line-hot: #7a3550;
  --txt: #f6ece7;
  --muted: #c3a4a6;
  --dim: #96707c;
  --copy: #e3cdc8;
  --accent: #d33a2c;
  --accent-hot: #ee5238;
  --gold-1: #fdcc06;
  --gold-2: #ffea00;
  --gold-soft: #fcd93a;
  --green: #00b67a;
  --star-off: #4a2231;
  --ink: #20090f;
  --head-grad: linear-gradient(90deg, #7a2436 0%, #c0392b 100%);
  --gold-grad: linear-gradient(180deg, #fdcc06 0%, #ffea00 100%);
  --gold-grad-hot: linear-gradient(180deg, #ffea00 0%, #fdcc06 100%);
}

/* ---------- base ---------- */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
}
body {
  margin: 0;
  height: 100%;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--txt);
  -webkit-text-size-adjust: 100%;
}
article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}
figure {
  margin: 0;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
svg {
  transform: translateZ(0);
}
svg:not(:root) {
  overflow: hidden;
}
a {
  background-color: transparent;
  cursor: pointer;
}
b,
strong {
  font-weight: bolder;
}
button {
  overflow: visible;
  margin: 0;
  text-transform: none;
  font: inherit;
}
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[data-b64] {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}

h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: normal;
  margin: 0 auto 32px;
}
h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  margin: 0 auto 32px;
}
h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  margin: 0 auto 28px;
}
h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  margin: 0 auto 20px;
}
h2[id],
h3[id] {
  scroll-margin-top: 86px;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.page {
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  padding: 66px 0 0;
}
@media only screen and (max-width: 767px) {
  .page {
    padding: 54px 0 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--accent);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 4px 24px 0 var(--accent-hot);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes slideLeftRight {
  0% {
    left: -16px;
  }
  100% {
    left: calc(100% + 16px);
  }
}

/* ============================================================
   Шапка
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 66px;
  background: var(--bg-head);
  border-bottom: 1px solid var(--line);
  z-index: 99;
}
.topbar__row {
  max-width: 1142px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  max-height: 40px;
  height: 40px;
  width: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li {
  font-size: 16px;
  margin: 0 2px;
}
.nav__list li [data-b64] {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--txt);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
@media only screen and (min-width: 1025px) {
  .nav__list li [data-b64]:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
}
.topbar__act {
  display: flex;
  align-items: center;
}
.navcheck {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.navtoggle {
  width: 38px;
  height: 38px;
  display: none;
  cursor: pointer;
  border-radius: 6px;
  background: var(--card-2);
  border: 1px solid var(--line);
  padding: 11px 5px;
  margin-left: 8px;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.navtoggle span {
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 4px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}

.cta-bonus {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  margin-left: 10px;
  border: none;
  border-radius: 10px;
  white-space: nowrap;
  background: var(--gold-grad);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.cta-bonus > span {
  position: relative;
  z-index: 1;
}
.cta-bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  z-index: 0;
  width: 32px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: slideLeftRight 2s infinite;
}
.cta-bonus:hover {
  background: var(--gold-grad-hot);
  color: var(--ink);
}

/* Мобильное меню — выпадающая панель на всю ширину */
@media only screen and (max-width: 1023px) {
  .topbar__row {
    gap: 12px;
    justify-content: flex-start;
  }
  .brand {
    order: 1;
  }
  .topbar__act {
    order: 2;
    margin-left: auto;
  }
  .navtoggle {
    display: flex;
    order: 3;
  }
  .nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 16px;
    background: var(--bg-head);
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    overflow-y: auto;
    z-index: 40;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
  }
  .nav__list li {
    margin: 0;
  }
  .nav__list li [data-b64] {
    padding: 14px 12px;
    font-size: 18px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .navcheck:checked ~ .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .navcheck:checked ~ .navtoggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .navcheck:checked ~ .navtoggle span:nth-child(2) {
    opacity: 0;
  }
  .navcheck:checked ~ .navtoggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media only screen and (max-width: 767px) {
  .topbar {
    height: 54px;
  }
  .topbar__row {
    padding: 0 12px;
  }
  .brand img {
    max-height: 32px;
    height: 32px;
  }
  .cta-bonus {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
  .nav {
    top: 54px;
  }
}

/* ============================================================
   Первый экран
   ============================================================ */
.intro {
  width: 100%;
  margin: 0 0 56px;
}
.intro__frame {
  position: relative;
}
.intro__art {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vh - 66px);
  height: calc(100dvh - 66px);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}
.intro__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.intro__art:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: -4px;
}
.intro__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  max-width: 680px;
  width: 100%;
  padding: 36px 34px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  text-align: center;
  margin-bottom: env(safe-area-inset-bottom, 0px);
}
.intro__h1 {
  margin: 0;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.2;
  color: var(--txt);
  white-space: nowrap;
}
.intro__lead {
  max-width: 540px;
  margin: 12px auto 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--copy);
}
.intro__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.btn-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 46px;
  padding: 12px 28px;
  border-radius: 10px;
  background: #cbb0ac;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: var(--ink);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.btn-demo:hover {
  background: #e0c7c3;
}
.btn-play {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 274px;
  height: 46px;
  padding: 10px;
  border-radius: 10px;
  background: var(--gold-grad);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--ink);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.btn-play span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-play::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  z-index: 0;
  width: 32px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: slideLeftRight 2s infinite;
}
.btn-play:hover {
  background: var(--gold-grad-hot);
}
@media only screen and (max-width: 991px) {
  .intro__card {
    bottom: 28px;
    padding: 30px 24px;
    max-width: min(640px, calc(100% - 32px));
  }
}
@media only screen and (max-width: 767px) {
  .intro {
    margin: 0 0 40px;
  }
  .intro__art {
    height: calc(100vh - 54px);
    height: calc(100dvh - 54px);
  }
  .intro__card {
    bottom: 16px;
    padding: 26px 18px;
    max-width: calc(100% - 24px);
    gap: 14px;
  }
  .intro__h1 {
    font-size: 34px;
  }
  .intro__lead {
    font-size: 15px;
    margin-top: 10px;
  }
  .intro__btns {
    flex-direction: column-reverse;
    width: 100%;
  }
  .btn-demo,
  .btn-play {
    width: 100%;
  }
}
@media only screen and (max-width: 380px) {
  .intro__h1 {
    font-size: 29px;
  }
}

/* ============================================================
   Демо-плеер
   ============================================================ */
body.modal-open {
  overflow: hidden;
}
.player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  background: var(--bg);
}
.player.active {
  display: block;
}
.player iframe {
  display: block;
  width: 100%;
  height: calc(100% - 72px);
  border: none;
  background: var(--bg);
}
.player__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #000;
  background: var(--gold-grad);
  color: #000;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
}
.player__foot {
  height: 72px;
  padding: 8px 16px 18px;
  background: var(--bg);
}
.player__foot .btn-play {
  width: 100%;
  height: 46px;
  animation: pulse 2s infinite;
}
@media only screen and (min-width: 768px) {
  .player__foot {
    display: flex;
    justify-content: center;
  }
  .player__foot .btn-play {
    width: 360px;
  }
}

/* Попап с оффером поверх демо */
.upsell {
  position: absolute;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(26, 10, 17, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.upsell.is-visible {
  opacity: 1;
  visibility: visible;
}
.upsell__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 28px 24px 22px;
  border-radius: 14px;
  border: 1px solid var(--gold-1);
  background: var(--card);
  box-shadow: 0 0 0 1px rgba(253, 204, 6, 0.25), 0 20px 60px rgba(0, 0, 0, 0.6);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s ease-in-out;
}
.upsell.is-visible .upsell__card {
  transform: none;
}
.upsell__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--card-2);
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.upsell__close:hover {
  color: #fff;
}
.upsell__logo {
  display: block;
  width: 120px;
  height: 79px;
  margin: 0 auto 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.upsell__label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card-2);
  font-size: 11px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.upsell__title {
  margin: 12px 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: #fff;
}
.upsell__text {
  margin: 0;
  font-size: 15px;
  line-height: 155%;
  color: var(--copy);
}
.upsell__bonus {
  margin: 12px 0 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--gold-soft);
}
.upsell__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 160%;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.upsell__continue {
  margin-top: 14px;
  padding: 4px 8px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  text-decoration: underline;
  color: var(--muted);
  cursor: pointer;
}
.upsell__continue:hover {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .upsell__card {
    padding: 22px 16px 18px;
  }
  .upsell__logo {
    width: 96px;
    height: 63px;
  }
  .upsell__title {
    font-size: 19px;
  }
}

/* ============================================================
   Оффер
   ============================================================ */
.pick {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 0;
}
.pick__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: var(--txt);
}
.pick__intro {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 150%;
  color: var(--muted);
}
.pick__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pick__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.pick__row:hover {
  background: var(--card-2);
  border-color: var(--line-hot);
}
.pick__row--1 {
  border-color: var(--gold-1);
  box-shadow: 0 0 0 1px rgba(253, 204, 6, 0.35), 0 4px 24px rgba(253, 204, 6, 0.12);
}
.pick__row--1:hover {
  border-color: var(--gold-2);
}
.pick__rank {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--card-2);
  font-weight: 700;
  font-size: 18px;
  color: var(--txt);
}
.pick__row--1 .pick__rank {
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--ink);
}
.pick__logo {
  flex: 0 0 150px;
  width: 150px;
  height: 99px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: var(--bg);
}
.pick__info {
  flex: 1 1 auto;
  min-width: 0;
}
.pick__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--txt);
}
.pick__medal {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card-2);
  font-size: 11px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.pick__row--1 .pick__medal {
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--ink);
}
.pick__bonus {
  margin-top: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--gold-soft);
}
.pick__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 140%;
  color: var(--muted);
}
.pick__flag svg {
  flex: 0 0 auto;
  width: 20px;
  height: 15px;
  border-radius: 2px;
}
.pick__btn {
  position: relative;
  overflow: hidden;
  flex: 0 0 200px;
  width: 200px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: 0.3s ease-in-out;
}
.pick__btn:hover {
  background: var(--accent-hot);
}
.pick__btn--top {
  background: var(--gold-grad);
  color: var(--ink);
}
.pick__btn--top > span {
  position: relative;
  z-index: 1;
}
.pick__btn--top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  z-index: 0;
  width: 32px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: slideLeftRight 2s infinite;
}
.pick__btn--top:hover {
  background: var(--gold-grad-hot);
  color: var(--ink);
}
.pick__btn:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}
.pick__terms {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: var(--dim);
}
@media only screen and (max-width: 1200px) {
  .pick {
    padding: 40px 16px 0;
  }
}
@media only screen and (max-width: 767px) {
  .pick {
    padding: 32px 16px 0;
  }
  .pick__title {
    font-size: 22px;
  }
  .pick__intro {
    font-size: 14px;
  }
  .pick__row {
    flex-wrap: wrap;
    gap: 12px 14px;
    padding: 14px;
  }
  .pick__rank {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .pick__logo {
    flex-basis: 104px;
    width: 104px;
    height: 69px;
  }
  .pick__info {
    flex: 1 1 140px;
  }
  .pick__name {
    font-size: 16px;
  }
  .pick__bonus {
    font-size: 14px;
  }
  .pick__btn {
    flex-basis: 100%;
    width: 100%;
  }
}

/* ============================================================
   Лента выигрышей
   ============================================================ */
.feed {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 0;
}
@media only screen and (max-width: 1200px) {
  .feed {
    padding: 24px 16px 0;
  }
}
.feed__box {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
}
.feed__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--card-2);
}
.feed__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
  background: rgba(0, 182, 122, 0.15);
  border: 1px solid rgba(0, 182, 122, 0.4);
  font-size: 11px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.feed__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.6);
  animation: winsPulse 1.6s ease-out infinite;
}
@keyframes winsPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.6);
  }
  100% {
    box-shadow: 0 0 0 7px rgba(0, 182, 122, 0);
  }
}
.feed__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--txt);
}
.feed__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feed__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--line);
}
.feed__item:last-child {
  border-bottom: none;
}
.feed__item.is-new {
  animation: winIn 0.5s ease-out;
}
@keyframes winIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(253, 204, 6, 0.12);
  }
  60% {
    background: rgba(253, 204, 6, 0.12);
  }
  100% {
    opacity: 1;
    transform: none;
    background: transparent;
  }
}
.feed__avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8e2437 0%, #d33a2c 100%);
}
.feed__avatar--2 {
  background: linear-gradient(135deg, #1f8a70 0%, #00b67a 100%);
}
.feed__avatar--3 {
  background: linear-gradient(135deg, #b86a2a 0%, #e09a52 100%);
}
.feed__avatar--4 {
  background: linear-gradient(135deg, #6e2233 0%, #a83248 100%);
}
.feed__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 14px;
  line-height: 140%;
  color: var(--muted);
}
.feed__nick {
  color: #fff;
}
.feed__amount {
  color: var(--gold-soft);
  font-size: 15px;
}
.feed__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.feed__casino {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.feed__casino:hover {
  color: var(--gold-2);
  border-bottom-color: rgba(255, 234, 0, 0.5);
}
.feed__casino img {
  width: 28px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.feed__time {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 140%;
  color: var(--dim);
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .feed__head {
    padding: 12px 14px;
  }
  .feed__title {
    font-size: 15px;
  }
  .feed__item {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 14px;
  }
  .feed__body {
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .feed__time {
    flex-basis: auto;
    margin-left: auto;
    align-self: flex-start;
  }
}

/* ============================================================
   Оглавление
   ============================================================ */
.plan {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 0 0;
}
@media only screen and (max-width: 1200px) {
  .plan {
    padding: 32px 16px 0;
  }
}
.plan__box {
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
}
.plan__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  color: var(--txt);
  cursor: pointer;
}
.plan__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
.plan__name svg {
  width: 20px;
  height: 20px;
  color: var(--gold-soft);
}
.plan__switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease-in-out;
}
.plan__head:hover .plan__switch {
  color: var(--gold-2);
}
.plan__switch svg {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
  transition: transform 0.35s ease-in-out;
}
.plan.is-collapsed .plan__switch svg {
  transform: rotate(0deg);
}
.plan__body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease-in-out;
}
.plan.is-collapsed .plan__body {
  grid-template-rows: 0fr;
}
.plan__list {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 14px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  counter-reset: plan;
}
.plan__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  counter-increment: plan;
}
.plan__list li::before {
  content: counter(plan, decimal-leading-zero);
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold-soft);
}
.plan__list a {
  font-size: 16px;
  line-height: 140%;
  color: var(--txt);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.plan__list a:hover {
  color: var(--gold-2);
  border-bottom-color: rgba(255, 234, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .plan__box {
    padding: 16px;
  }
  .plan__list {
    grid-template-columns: 1fr;
  }
  .plan__list a {
    font-size: 15px;
  }
}

/* ============================================================
   Таблицы
   ============================================================ */
.specs {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 0;
}
@media only screen and (max-width: 1200px) {
  .specs {
    padding: 24px 16px 0;
  }
}
.specs__title {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--txt);
}
.tbl {
  width: 100%;
  margin: 0 0 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.tbl table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}
.tbl th,
.tbl td {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  color: var(--txt);
  border: 1px solid var(--line);
  border-top: none;
  background: var(--card);
}
.tbl th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--card-2);
}
.tbl td:first-child {
  font-weight: 600;
  color: #fff;
}
.tbl tbody tr:hover td {
  background: var(--card-2);
}
.tbl tr:last-child td {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .specs__title {
    font-size: 26px;
  }
  .tbl th,
  .tbl td {
    padding: 10px 12px;
    font-size: 14px;
  }
  .tbl table.tbl--wide {
    min-width: 640px;
  }
}

/* ============================================================
   Контентные секции
   ============================================================ */
.sect {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto 56px;
}
@media only screen and (max-width: 1200px) {
  .sect {
    padding: 0 16px;
  }
}
.sect h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--txt);
}
.sect h3 {
  margin: 26px 0 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--txt);
}
.sect > p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--copy);
}
.sect h2 + p,
.sect h3 + p {
  margin-top: 14px;
}
.sect > ul,
.sect > ol {
  margin: 0 0 16px;
  padding: 0 0 0 20px;
}
.sect > ul > li,
.sect > ol > li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--copy);
}
.sect strong {
  color: #fff;
}
.sect--tight {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .sect {
    margin-bottom: 40px;
  }
  .sect h2 {
    font-size: 26px;
  }
  .sect h3 {
    font-size: 20px;
  }
}

/* ============================================================
   Плитки других частей
   ============================================================ */
.sect .series__intro {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 150%;
  color: var(--muted);
}
.series__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.series__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.3s ease-in-out;
}
.series__card:hover {
  border-color: var(--line-hot);
}
.series__media {
  position: relative;
}
.series__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.series__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(253, 204, 6, 0.5);
  background: rgba(26, 10, 17, 0.85);
  font-size: 11px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.series__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.series__card .series__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: var(--txt);
}
.series__text {
  flex: 1 1 auto;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 150%;
  color: var(--copy);
}
.series__actions {
  display: flex;
  gap: 10px;
}
.series__play,
.series__demo {
  flex: 1 1 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.series__play {
  background: var(--accent);
  color: #fff;
}
.series__play:hover {
  background: var(--accent-hot);
}
.series__demo {
  background: #cbb0ac;
  color: var(--ink);
}
.series__demo:hover {
  background: #e0c7c3;
}
@media only screen and (max-width: 1024px) {
  .series__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .series__body {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .series__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Плюсы и минусы
   ============================================================ */
.balance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.balance__col {
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
}
.balance__col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 18px;
}
.balance__col h3::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}
.balance__col--up h3::before {
  background-color: rgba(0, 182, 122, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' fill='none' stroke='%2300b67a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.balance__col--down h3::before {
  background-color: rgba(224, 82, 82, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='%23e05a5a' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.balance__col ul {
  margin: 0;
  padding-left: 20px;
}
.balance__col li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--copy);
}
@media only screen and (max-width: 767px) {
  .balance {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Отзывы
   ============================================================ */
.avis__summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 24px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
}
.avis__word {
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: #fff;
}
.avis__count {
  font-size: 14px;
  line-height: 140%;
  color: var(--muted);
}
.avis__count strong {
  color: #fff;
}
.stars {
  display: inline-flex;
  gap: 3px;
}
.stars__i {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00b67a;
  border-radius: 3px;
}
.stars__i.is-empty {
  background: var(--star-off);
}
.stars__i.is-half {
  background: linear-gradient(90deg, #00b67a 50%, var(--star-off) 50%);
}
.stars__i svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}
.stars--sm {
  gap: 2px;
}
.stars--sm .stars__i {
  width: 20px;
  height: 20px;
}
.stars--sm .stars__i svg {
  width: 13px;
  height: 13px;
}
.avis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.avis__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 0.3s ease-in-out;
}
.avis__card:hover {
  border-color: var(--line-hot);
}
.avis__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
img.avis__avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.avis__who {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.avis__name {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #fff;
}
.avis__city {
  font-size: 12px;
  line-height: 140%;
  color: var(--dim);
}
.avis__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.avis__date {
  font-size: 12px;
  color: var(--dim);
}
.avis__lead {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}
.avis__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 14px;
  line-height: 150%;
  color: var(--copy);
}
.avis__ok {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
.avis__ok svg {
  width: 14px;
  height: 14px;
}
@media only screen and (max-width: 1024px) {
  .avis__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .avis__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .avis__summary {
    padding: 14px 16px;
  }
  .avis__word {
    font-size: 18px;
  }
  .avis__card {
    padding: 16px;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.qa__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qa__item {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.3s ease-in-out;
}
.qa__item.is-open {
  border-color: rgba(253, 204, 6, 0.6);
}
.qa__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  color: var(--txt);
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.qa__q:hover {
  color: var(--gold-2);
}
.qa__q:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: -2px;
  border-radius: 12px;
}
.qa__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--card-2);
  color: #fff;
  transition: transform 0.35s ease-in-out, background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.qa__icon svg {
  width: 14px;
  height: 14px;
}
.qa__item.is-open .qa__icon {
  transform: rotate(180deg);
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--ink);
}
.qa__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-in-out;
}
.qa__item.is-open .qa__a {
  grid-template-rows: 1fr;
}
.qa__a-inner {
  overflow: hidden;
}
.qa__a p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 16px;
  line-height: 155%;
  color: var(--copy);
}
@media only screen and (max-width: 767px) {
  .qa__q {
    padding: 14px 16px;
  }
  .qa__a p {
    padding: 0 16px 16px;
    font-size: 15px;
  }
}

/* ============================================================
   Эксперт
   ============================================================ */
.expert__card {
  display: flex;
  gap: 22px;
  padding: 24px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  margin-top: 20px;
}
.expert__photo {
  flex: 0 0 120px;
  width: 120px;
  height: 118px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.expert__body {
  flex: 1 1 auto;
  min-width: 0;
}
.expert__name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.expert__role {
  display: block;
  margin: 2px 0 12px;
  font-size: 13px;
  color: var(--dim);
}
.expert__body p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.expert__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
}
.expert__tags li {
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--card-2);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.expert__quote {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold-1);
  border-radius: 0 10px 10px 0;
  background: rgba(253, 204, 6, 0.06);
  color: var(--copy);
  font-style: italic;
}
@media only screen and (max-width: 639px) {
  .expert__card {
    flex-direction: column;
    padding: 18px;
    gap: 14px;
  }
  .expert__photo {
    width: 96px;
    height: 94px;
  }
}

/* ============================================================
   Дата обновления
   ============================================================ */
.stamp {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto 64px;
}
@media only screen and (max-width: 1200px) {
  .stamp {
    padding: 0 16px;
  }
}
.stamp__box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-1);
}
.stamp__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(253, 204, 6, 0.12);
  color: var(--gold-1);
}
.stamp__icon svg {
  width: 24px;
  height: 24px;
}
.stamp__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 10px;
}
.stamp__label {
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stamp__date {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.stamp__note {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.stamp__ok {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.35);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.stamp__ok svg {
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 767px) {
  .stamp {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 639px) {
  .stamp__box {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px 12px;
    padding: 14px 16px;
  }
  .stamp__ok {
    grid-column: 2;
    justify-self: start;
  }
}

/* ============================================================
   Подвал
   ============================================================ */
.sitefoot {
  padding: 56px 0 0;
  background: var(--bg-head);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sitefoot__main {
  margin-bottom: 32px;
}
.sitefoot__row {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sitefoot__info .brand img {
  max-height: 100px;
  max-width: 230px;
  height: auto;
  width: auto;
}
.sitefoot__links {
  display: flex;
  align-items: flex-start;
  margin-left: 20px;
}
.footlinks + .footlinks {
  margin-left: 120px;
}
.footlinks__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footlinks__list li {
  font-size: 16px;
}
.footlinks__list li + li {
  margin-top: 16px;
}
.footlinks__list li a,
.footlinks__list li [data-b64] {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footlinks__list li a:hover,
.footlinks__list li [data-b64]:hover {
  color: var(--gold-1);
}
.sitefoot__social {
  max-width: 1110px;
  width: 100%;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 -4px;
  padding: 0;
  row-gap: 10px;
}
.social li {
  display: flex;
  margin: 0 4px;
}
.social li a {
  display: flex;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.social li a:hover {
  transform: scale(1.1);
}
.social li img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.sitefoot__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sitefoot__apps [data-b64] {
  display: inline-flex;
  border-radius: 7px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  cursor: pointer;
}
.sitefoot__apps [data-b64]:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.sitefoot__apps img {
  height: 40px;
  width: auto;
  border-radius: 7px;
  border: 1px solid #5a3140;
}
.sitefoot__badges {
  max-width: 1110px;
  width: 100%;
  margin: 40px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.sitefoot__images {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.sitefoot__images a {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.3s ease-in-out;
}
.sitefoot__images a:hover {
  opacity: 1;
}
.sitefoot__images img {
  height: auto;
  max-height: 56px;
  width: auto;
}
.sitefoot__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 32px;
}
body.bar-open .sitefoot__bottom {
  padding-bottom: 108px;
}
.copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .sitefoot {
    padding: 56px 16px 0;
  }
}
@media only screen and (max-width: 767px) {
  .sitefoot {
    padding: 36px 16px 0;
  }
  .sitefoot__row {
    flex-direction: column;
  }
  .sitefoot__info .brand img {
    max-width: 119px;
    max-height: 52px;
  }
  .sitefoot__links {
    margin: 24px 0 0;
    flex-direction: row;
    gap: 32px;
  }
  .footlinks + .footlinks {
    margin: 0;
  }
  .footlinks__list li {
    font-size: 15px;
  }
  .footlinks__list li + li {
    margin-top: 10px;
  }
  .sitefoot__social {
    margin-top: 24px;
    gap: 16px 20px;
  }
  .sitefoot__main {
    margin-bottom: 20px;
  }
  .sitefoot__badges {
    margin-top: 24px;
    padding-top: 20px;
  }
  .sitefoot__images {
    gap: 14px 18px;
  }
  .sitefoot__images img {
    max-height: 36px;
  }
  .sitefoot__images img[width='96'] {
    width: 72px;
  }
  .sitefoot__images img[width='102'] {
    width: 86px;
  }
  .sitefoot__bottom {
    padding-bottom: 24px;
  }
  body.bar-open .sitefoot__bottom {
    padding-bottom: 100px;
  }
}

/* ============================================================
   Плашка снизу
   ============================================================ */
.bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  padding: 0 16px 12px;
  transform: translateY(115%);
  transition: transform 0.4s ease-in-out;
  pointer-events: none;
}
.bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.bar__inner {
  position: relative;
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--gold-1);
  background: var(--card);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(253, 204, 6, 0.25);
}
.bar__logo {
  flex: 0 0 84px;
  width: 84px;
  height: 55px;
  border-radius: 6px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.bar__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bar__label {
  font-size: 11px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.bar__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--txt);
}
.bar__bonus {
  font-size: 14px;
  line-height: 140%;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar__btn {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: 180px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: var(--gold-grad);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: 0.3s ease-in-out;
}
.bar__btn > span {
  position: relative;
  z-index: 1;
}
.bar__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  z-index: 0;
  width: 32px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: slideLeftRight 2s infinite;
}
.bar__btn:hover {
  background: var(--gold-grad-hot);
  color: var(--ink);
}
.bar__close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--card-2);
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.bar__close:hover {
  color: #fff;
  border-color: var(--line-hot);
}
@media only screen and (max-width: 767px) {
  .bar {
    padding: 0 8px 8px;
  }
  .bar__inner {
    gap: 10px;
    padding: 10px 12px;
  }
  .bar__logo {
    flex-basis: 56px;
    width: 56px;
    height: 37px;
  }
  .bar__label {
    display: none;
  }
  .bar__name {
    font-size: 14px;
  }
  .bar__bonus {
    font-size: 12px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .bar__btn {
    width: 96px;
    height: 40px;
    font-size: 14px;
  }
  .bar__close {
    position: absolute;
    top: -12px;
    right: -2px;
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}

/* ============================================================
   Кнопка наверх
   ============================================================ */
.gotop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 70;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--gold-1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s, background 0.2s ease, color 0.2s ease,
    bottom 0.3s ease;
}
.gotop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease, bottom 0.3s ease;
}
.gotop:hover {
  background: var(--gold-1);
  color: var(--ink);
}
.gotop svg {
  width: 22px;
  height: 22px;
}
body.bar-open .gotop {
  bottom: 112px;
}
@media only screen and (max-width: 767px) {
  .gotop {
    right: 12px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  body.bar-open .gotop {
    bottom: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .qa__a,
  .qa__icon,
  .bar,
  .gotop {
    transition: none !important;
  }
  .feed__dot,
  .feed__item.is-new,
  .btn-play::before,
  .cta-bonus::before,
  .pick__btn--top::before,
  .bar__btn::before,
  .upsell__btn::before {
    animation: none;
  }
}

/* Золотая кнопка в попапе демо */
.upsell__btn {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  background: var(--gold-grad);
  font-weight: 700;
  color: var(--ink);
  transition: 0.3s ease-in-out;
}
.upsell__btn > span {
  position: relative;
  z-index: 1;
}
.upsell__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  z-index: 0;
  width: 32px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
  animation: slideLeftRight 2s infinite;
}
.upsell__btn:hover {
  background: var(--gold-grad-hot);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}
