:root {
  --bg: #0d1424;
  --bg-2: #121b30;
  --card: #152036;
  --card-2: #1f2d4b;
  --border: #2a3a5c;
  --text: #f0f3f9;
  --muted: #a3adc4;
  --muted-2: #73809d;
  --blue: #d9b15a;
  --blue-2: #b8903f;
  --blue-soft: rgba(217, 177, 90, 0.14);
  --green: #00b67a;
  --win: #4cd96d;
  --radius: 12px;
  --container: 1110px;
  --header-h: 64px;
  --font: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: top; border: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: #eed49a; }
h1, h2, h3 { margin: 0; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
[role="button"] { cursor: pointer; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--primary { position: relative; overflow: hidden; background: var(--blue); color: #1b1206; box-shadow: 0 6px 18px rgba(217, 177, 90, 0.25); }
.btn--primary:hover { background: var(--blue-2); color: #1b1206; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(217, 177, 90, 0.45); }
.btn--primary:active { transform: translateY(0) scale(0.98); box-shadow: 0 4px 12px rgba(217, 177, 90, 0.3); }
.btn--primary::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  width: 38%;
  height: 220%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-220%) skewX(-20deg);
  animation: btnShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0% { transform: translateX(-220%) skewX(-20deg); }
  45%, 100% { transform: translateX(420%) skewX(-20deg); }
}
.btn--pulse { animation: btnPulse 2.2s ease-out infinite; }
@keyframes btnPulse {
  0% { box-shadow: 0 6px 18px rgba(240, 232, 210, 0.25), 0 0 0 0 rgba(240, 232, 210, 0.55); }
  70% { box-shadow: 0 6px 18px rgba(240, 232, 210, 0.25), 0 0 0 14px rgba(240, 232, 210, 0); }
  100% { box-shadow: 0 6px 18px rgba(240, 232, 210, 0.25), 0 0 0 0 rgba(240, 232, 210, 0); }
}
.btn--outline { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.28); color: #fff; }
.btn--outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }
.btn--sm { min-height: 38px; padding: 0 14px; font-size: 14px; border-radius: 8px; }
.btn--lg { min-height: 52px; padding: 0 28px; font-size: 16px; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.main-nav { flex: 1 1 auto; display: flex; align-items: center; justify-content: space-between; }
.main-nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav__list a,
.main-nav__list [role="button"] {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.main-nav__list a:hover,
.main-nav__list [role="button"]:hover { background: var(--card-2); color: #fff; }
.main-nav__actions { display: none; gap: 10px; }
.header__actions { display: flex; gap: 10px; margin-left: auto; }
.menu-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger { display: none; width: 42px; height: 42px; border-radius: 10px; background: var(--card-2); border: 1px solid var(--border); flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

@media (max-width: 1023px) {
  .header__inner { gap: 12px; }
  .burger { display: flex; order: 3; }
  .header__actions { margin-left: auto; order: 2; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: 24px 16px;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    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;
  }
  .main-nav__list { flex-direction: column; width: 100%; gap: 2px; }
  .main-nav__list a,
  .main-nav__list [role="button"] { padding: 14px 12px; font-size: 18px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav__actions { display: flex; width: 100%; }
  .main-nav__actions .btn { flex: 1 1 0; }
  .menu-toggle:checked ~ .main-nav { opacity: 1; visibility: visible; transform: none; transition: opacity 0.22s ease, transform 0.22s ease; }
  .menu-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 479px) {
  .header__inner { gap: 8px; padding: 0 12px; }
  .header__actions { gap: 6px; }
  .header__actions .btn--sm { min-height: 36px; padding: 0 10px; font-size: 13px; }
  .logo img { height: 30px; max-width: 150px; }
  .burger { width: 38px; height: 38px; }
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
  background: url(../images/brand/hero-desktop.webp) center top / cover no-repeat;
}
.hero__bg:focus-visible { outline-offset: -4px; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 20, 36, 0.25) 0%, rgba(13, 20, 36, 0.45) 60%, rgba(13, 20, 36, 0.9) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 16px 28px;
  display: flex;
  justify-content: center;
  pointer-events: none;}
.hero__box { pointer-events: auto; }
.hero__box {
  width: 100%;
  max-width: 640px;
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.hero h1 { font-size: 52px; margin-bottom: 12px; }
.hero__text { font-size: 17px; color: #d4d7df; margin: 0 auto 22px; max-width: 520px; }
.hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero__actions .btn { min-width: 180px; }
.hero__facts { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; margin: 22px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; font-weight: 600; }
.hero__facts li { display: flex; align-items: center; gap: 8px; }
.hero__facts li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
@media (max-width: 767px) {
  .hero__bg { background-image: url(../images/brand/hero-mobile.webp); background-position: center top; }
  .hero__inner { padding: 120px 12px 16px; }
  .hero__box { padding: 26px 18px; }
  .hero h1 { font-size: 36px; }
  .hero__text { font-size: 15px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

.section { max-width: var(--container); margin: 0 auto; padding: 48px 16px 0; }
.section-title { font-size: 32px; margin-bottom: 14px; }
.section-intro { color: var(--muted); margin-bottom: 24px; }
.sub-title { font-size: 22px; margin: 28px 0 14px; }
@media (max-width: 767px) {
  .section { padding-top: 36px; }
  .section-title { font-size: 26px; }
}

.bonuses__list { display: flex; flex-direction: column; gap: 12px; }
.bonus {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.bonus:hover { border-color: #3c3f4a; transform: translateY(-2px); }
.bonus--featured { background: linear-gradient(90deg, rgba(217, 177, 90, 0.16) 0%, var(--card) 55%); border-color: rgba(217, 177, 90, 0.55); }
.bonus__lead { display: flex; flex-direction: column; gap: 6px; padding-right: 24px; border-right: 1px solid var(--border); min-height: 72px; justify-content: center; }
.bonus__tag { align-self: flex-start; padding: 4px 10px; border-radius: 6px; background: var(--blue-soft); color: #eed49a; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.bonus--featured .bonus__tag { background: var(--blue); color: #1b1206; }
.bonus__amount { font-size: 24px; line-height: 1.15; font-weight: 800; color: var(--win); }
.bonus--featured .bonus__amount { font-size: 28px; }
.bonus__title { font-size: 19px; margin-bottom: 6px; }
.bonus--featured .bonus__title { font-size: 22px; }
.bonus__text { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.bonus__terms { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.bonus__terms li { padding: 3px 9px; border-radius: 6px; background: var(--card-2); color: var(--muted); font-size: 12px; font-weight: 600; }
.bonus__cta { display: flex; flex-direction: column; align-items: stretch; }
.bonuses__terms { margin: 18px 0 0; color: var(--muted-2); font-size: 12px; text-align: center; }
@media (max-width: 1023px) {
  .bonus { grid-template-columns: 190px minmax(0, 1fr); row-gap: 16px; }
  .bonus__cta { grid-column: 1 / -1; }
}
@media (max-width: 639px) {
  .bonus { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .bonus__lead { flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; padding: 0 0 12px; border-right: 0; border-bottom: 1px solid var(--border); min-height: 0; }
  .bonus__amount { font-size: 20px; text-align: right; }
  .bonus--featured .bonus__amount { font-size: 22px; }
  .bonus__title { font-size: 17px; }
}

.recent-wins { padding-top: 28px; }
.recent-wins__box { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); overflow: hidden; }
.recent-wins__head { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--card-2); }
.recent-wins__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; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); }
.recent-wins__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); 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); } }
.recent-wins__title { font-size: 16px; font-weight: 700; }
.recent-wins__list { list-style: none; margin: 0; padding: 0; }
.recent-wins__item { display: flex; align-items: center; gap: 14px; padding: 10px 20px; border-bottom: 1px solid var(--border); }
.recent-wins__item:last-child { border-bottom: 0; }
.recent-wins__item.is-new { animation: winIn 0.5s ease-out; }
@keyframes winIn { 0% { opacity: 0; transform: translateY(-10px); background: var(--blue-soft); } 60% { background: var(--blue-soft); } 100% { opacity: 1; transform: none; background: transparent; } }
.recent-wins__slot { flex: 0 0 44px; width: 44px; height: 58px; border-radius: 6px; object-fit: cover; border: 1px solid var(--border); }
.recent-wins__body { flex: 1 1 auto; min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 16px; font-size: 14px; color: var(--muted); }
.recent-wins__nick { color: #fff; }
.recent-wins__amount { color: var(--win); font-size: 15px; }
.recent-wins__meta { font-size: 13px; }
.recent-wins__game { color: #fff; font-weight: 600; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.recent-wins__game:hover { color: #eed49a; border-bottom-color: rgba(238, 212, 154, 0.5); }
.recent-wins__provider { color: var(--muted-2); }
.recent-wins__time { flex: 0 0 auto; font-size: 12px; color: var(--muted-2); white-space: nowrap; }
@media (max-width: 767px) {
  .recent-wins__head { padding: 12px 14px; }
  .recent-wins__item { padding: 10px 14px; gap: 10px; }
  .recent-wins__body { flex-direction: column; align-items: flex-start; gap: 2px; }
  .recent-wins__time { align-self: flex-start; }
}

.toc { padding-top: 28px; }
.toc__box { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); overflow: hidden; }
.toc__head { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 20px; background: var(--card-2); border: 0; text-align: left; }
.toc__title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; }
.toc__title svg { width: 20px; height: 20px; color: var(--blue); }
.toc__toggle { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 600; }
.toc__toggle svg { width: 14px; height: 14px; transition: transform 0.25s; }
.toc.is-collapsed .toc__toggle svg { transform: rotate(-90deg); }
.toc__body { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.3s ease; }
.toc.is-collapsed .toc__body { grid-template-rows: 0fr; }
.toc__body > * { overflow: hidden; min-height: 0; }
.toc__list { margin: 0; padding: 16px 20px 20px 40px; columns: 2; column-gap: 32px; }
.toc__list li { break-inside: avoid; padding: 4px 0; }
.toc__list a { color: var(--text); font-weight: 500; }
.toc__list a:hover { color: #eed49a; }
@media (max-width: 767px) { .toc__list { columns: 1; padding-left: 36px; } }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; background: var(--card); font-size: 15px; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--card-2); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.015); }
td:first-child { font-weight: 600; color: #fff; white-space: nowrap; }
.table-note { margin: 12px 0 0; color: var(--muted-2); font-size: 13px; }
@media (max-width: 767px) {
  th, td { padding: 10px 12px; font-size: 14px; }
  .table-wide { min-width: 640px; }
  td:first-child { white-space: normal; }
}

.content p { color: #d4d7df; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0 8px; }
.feature { padding: 18px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.feature__value { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.feature__label { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 8px 0 22px; }
.step { display: flex; gap: 14px; padding: 18px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.step p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.step__num { flex: 0 0 34px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--blue); color: #1b1206; font-weight: 800; }
.checklist { list-style: none; padding: 0; margin: 0 0 20px; }
.checklist li { position: relative; padding-left: 28px; margin-bottom: 8px; color: #d4d7df; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%237fb0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 0; }
@media (max-width: 1023px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .steps { grid-template-columns: 1fr; } .cta-row .btn { flex: 1 1 0; } }

.tile-rows { display: grid; gap: 14px; grid-template-columns: repeat(6, 1fr); }
.tile-rows > [hidden] { display: none; }
@media (max-width: 1023px) { .tile-rows { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 639px) { .tile-rows { grid-template-columns: repeat(3, 1fr); gap: 10px; } }

.games__tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.games__tab { padding: 9px 18px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--muted); font-weight: 700; font-size: 14px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.games__tab:hover { color: #fff; border-color: #3c3f4a; }
.games__tab.is-active { background: var(--blue); border-color: var(--blue); color: #1b1206; }
.games__grid { transition: opacity 0.15s; }
.games__grid.is-switching { opacity: 0; }
.game { position: relative; display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; background: var(--card); border: 1px solid var(--border); color: var(--text); transition: transform 0.2s, border-color 0.2s; }
.game:hover { transform: translateY(-4px); border-color: var(--blue); color: var(--text); }
.game__media { display: block; aspect-ratio: 360 / 472; overflow: hidden; }
.game__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.game:hover .game__media img { transform: scale(1.05); }
.game__play { position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%) scale(0.9); padding: 10px 22px; border-radius: 10px; background: var(--blue); color: #1b1206; font-weight: 700; font-size: 14px; opacity: 0; transition: opacity 0.2s, transform 0.2s; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4); }
.game:hover .game__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.game__body { display: flex; flex-direction: column; padding: 10px 12px 12px; }
.game__name { font-weight: 700; font-size: 14px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game__provider { color: var(--muted-2); font-size: 12px; margin-top: 2px; }
@media (max-width: 639px) { .game__body { padding: 8px 8px 10px; } .game__name { font-size: 12px; } .game__provider { font-size: 11px; } .game__play { display: none; } }

.provider { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 96px; padding: 16px 12px; border-radius: 10px; background: var(--card); border: 1px solid var(--border); text-align: center; transition: border-color 0.2s, transform 0.2s; }
.provider:hover { border-color: #3c3f4a; transform: translateY(-2px); }
.provider__name { font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.provider__logo { max-height: 40px; width: auto; }
.provider__meta { color: var(--muted-2); font-size: 12px; }
@media (max-width: 639px) { .provider { min-height: 84px; padding: 12px 8px; } .provider__name { font-size: 13px; } .provider__meta { font-size: 10px; } }

.payment { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 110px; padding: 16px 10px; border-radius: 10px; background: var(--card); border: 1px solid var(--border); text-align: center; transition: border-color 0.2s, transform 0.2s; }
.payment:hover { border-color: #3c3f4a; transform: translateY(-2px); }
.payment__icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 36px; }
.payment__icon img { max-width: 44px; max-height: 32px; width: auto; height: auto; }
.payment__initial { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: var(--card-2); font-weight: 800; font-size: 16px; }
.payment__name { font-weight: 700; font-size: 14px; }
.payment__type { color: var(--muted-2); font-size: 11px; }
.payments__table { margin-top: 8px; }
@media (max-width: 639px) { .payment { min-height: 96px; padding: 12px 6px; } .payment__name { font-size: 12px; } .payment__type { display: none; } }

.app__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; align-items: start; }
.app__text p { color: #d4d7df; }
.app__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.app__badges a, .footer__apps a,
.app__badges [role="button"], .footer__apps [role="button"] { display: flex; cursor: pointer; border-radius: 7px; transition: transform 0.2s, opacity 0.2s; }
.app__badges a:hover, .footer__apps a:hover,
.app__badges [role="button"]:hover, .footer__apps [role="button"]:hover { transform: translateY(-2px); opacity: 0.9; }
.app__badges img, .footer__apps img { height: 40px; width: auto; border-radius: 7px; border: 1px solid #3a3d46; }
.stars { color: #f5b301; letter-spacing: 1px; }
@media (max-width: 767px) { .app__grid { grid-template-columns: 1fr; gap: 20px; } }

.support__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.support__card { display: flex; flex-direction: column; gap: 6px; padding: 20px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.support__card strong { font-size: 17px; }
.support__card p { color: var(--muted); font-size: 14px; margin: 4px 0 14px; flex: 1 1 auto; }
.support__icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--blue-soft); color: #eed49a; margin-bottom: 6px; }
.support__icon svg { width: 24px; height: 24px; }
.support__meta { color: var(--muted-2); font-size: 12px; font-weight: 600; }
.support__card .btn { align-self: flex-start; }
@media (max-width: 1023px) { .support__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .support__grid { grid-template-columns: 1fr; } }

.reviews__summary { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 16px; margin-bottom: 20px; padding: 16px 20px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.reviews__word { font-size: 22px; font-weight: 800; }
.reviews__text { color: var(--muted); font-size: 14px; }
.reviews__text strong { color: #fff; }
.tp-stars { display: inline-flex; gap: 3px; }
.tp-star { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: var(--green); border-radius: 3px; }
.tp-star svg { width: 18px; height: 18px; fill: #fff; }
.tp-star.is-half { background: linear-gradient(90deg, var(--green) 50%, #4b4f5b 50%); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review { display: flex; flex-direction: column; gap: 10px; padding: 20px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); transition: border-color 0.3s; }
.review:hover { border-color: #3c3f4a; }
.review__head { display: flex; align-items: center; gap: 12px; }
.review__rating { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review__date { font-size: 12px; color: var(--muted-2); }
.tp-stars--sm { gap: 2px; }
.tp-stars--sm .tp-star { width: 20px; height: 20px; }
.tp-stars--sm .tp-star svg { width: 13px; height: 13px; }
.tp-star.is-empty { background: #3a3d46; }
.review__verified { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--green); }
.review__verified svg { width: 14px; height: 14px; }
.review__avatar { flex: 0 0 40px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 13px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #d4a24a, #8a5a12); }
.review__avatar--2 { background: linear-gradient(135deg, #1f8a70, #00b67a); }
.review__avatar--3 { background: linear-gradient(135deg, #b86a2a, #e09a52); }
.review__avatar--4 { background: linear-gradient(135deg, #7b3fe4, #4b2bb0); }
.review__meta { display: flex; flex-direction: column; }
.review__name { font-weight: 700; }
.review__sub { color: var(--muted-2); font-size: 12px; }
.review__title { font-weight: 700; margin: 0; }
.review__text { flex: 1 1 auto; color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 1023px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .reviews__grid { grid-template-columns: 1fr; } }

.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item { border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); overflow: hidden; }
.faq__question { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 16px 20px; background: transparent; border: 0; text-align: left; font-weight: 700; font-size: 16px; }
.faq__icon { display: flex; align-items: center; justify-content: center; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--card-2); color: var(--muted); transition: transform 0.25s, background 0.25s, color 0.25s; }
.faq__icon svg { width: 14px; height: 14px; }
.faq__item.is-open .faq__icon { transform: rotate(180deg); background: var(--blue); color: #1b1206; }
.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; min-height: 0; }
.faq__answer p { padding: 0 20px 18px; margin: 0; color: var(--muted); }
.last-update { display: flex; align-items: center; gap: 16px; margin: 24px 0 0; padding: 16px 20px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--blue); }
.last-update__icon { flex: 0 0 44px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--blue-soft); color: #eed49a; }
.last-update__icon svg { width: 24px; height: 24px; }
.last-update__body { flex: 1 1 auto; min-width: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px; }
.last-update__label { color: var(--muted-2); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.last-update__date { font-size: 17px; font-weight: 800; color: #fff; }
.last-update__note { flex-basis: 100%; color: var(--muted); font-size: 13px; }
.last-update__badge { 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; }
.last-update__badge svg { width: 16px; height: 16px; }
@media (max-width: 639px) {
  .last-update { display: grid; grid-template-columns: 44px 1fr; gap: 10px 12px; padding: 14px 16px; }
  .last-update__badge { grid-column: 2; justify-self: start; }
}

.footer { margin-top: 64px; padding: 48px 16px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.footer__inner { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; gap: 32px; }
.footer__logo img { height: 46px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.footer__social-row { max-width: var(--container); margin: 28px auto 0; display: flex; align-items: center; flex-wrap: wrap; gap: 16px 28px; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.socials a { display: flex; transition: transform 0.25s; }
.socials a:hover { transform: scale(1.1); }
.socials img { width: 36px; height: 36px; }
.footer__apps { display: flex; gap: 10px; }
.footer__links { display: flex; gap: 48px; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a,
.footer-nav [role="button"] { display: inline-block; color: var(--text); font-size: 15px; cursor: pointer; }
.footer-nav a:hover,
.footer-nav [role="button"]:hover { color: #eed49a; }
.footer__badges { max-width: var(--container); margin: 36px auto 0; padding-top: 24px; border-top: 1px solid var(--border); }
.footer__images { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 32px; }
.footer__images a { display: flex; opacity: 0.85; transition: opacity 0.2s; }
.footer__images a:hover { opacity: 1; }
.footer__images img { height: auto; max-height: 56px; }
.footer__bottom { max-width: var(--container); margin: 0 auto; padding: 24px 0 32px; color: var(--muted-2); font-size: 13px; }
@media (max-width: 767px) {
  .footer { padding-top: 36px; }
  .footer__inner { flex-direction: column; gap: 28px; }
  .footer__links { gap: 32px; }
  .footer__images img { max-height: 44px; }
  .footer__images img[width="96"] { width: 80px; }
  .footer__bottom { padding-bottom: 28px; }
}

.promo-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 0 12px 12px; transform: translateY(120%); transition: transform 0.35s ease; pointer-events: none; }
.promo-bar.is-visible { transform: none; pointer-events: auto; }
.promo-bar__inner { position: relative; max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-radius: 14px; background: var(--bg-2); border: 1px solid rgba(217, 177, 90, 0.5); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.promo-bar__logo { height: 30px; width: auto; max-width: 96px; object-fit: contain; }
.promo-bar__info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.promo-bar__label { color: #eed49a; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.promo-bar__title { font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.promo-bar__close { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--card-2); color: var(--muted); font-size: 22px; line-height: 1; }
.promo-bar__close:hover { color: #fff; }
body.promo-bar-open .footer { padding-bottom: 84px; }
@media (max-width: 639px) {
  .promo-bar { padding: 0 8px 8px; }
  .promo-bar__inner { gap: 10px; padding: 10px 12px; }
  .promo-bar__logo { flex: 0 0 auto; width: auto; max-width: 84px; height: 40px; padding: 6px 8px; border-radius: 6px; background: var(--card-2); border: 1px solid var(--border); object-fit: contain; }
  .promo-bar__label { display: none; }
  .promo-bar__title { white-space: normal; font-size: 13px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .promo-bar__btn { min-height: 40px; padding: 0 14px; font-size: 14px; }
  .promo-bar__close { position: absolute; top: -12px; right: -2px; width: 26px; height: 26px; font-size: 16px; }
}

.to-top {
  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 rgba(255, 255, 255, 0.12);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  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, bottom 0.3s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, bottom 0.3s ease; }
.to-top:hover { background: var(--blue-2); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 1199px) {
  body.promo-bar-open .to-top { bottom: 100px; }
}
@media (max-width: 639px) {
  .to-top { right: 12px; bottom: 16px; width: 42px; height: 42px; }
  body.promo-bar-open .to-top { bottom: 104px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.hero__bg picture, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.review__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

.btn--primary { background: linear-gradient(180deg, #f7f1e1 0%, #e3d6b6 100%); color: #14203a; border: 1px solid rgba(217, 177, 90, 0.8); box-shadow: 0 6px 18px rgba(240, 232, 210, 0.25); }
.btn--primary:hover { background: linear-gradient(180deg, #fffaf0 0%, #ecdfbf 100%); color: #14203a; box-shadow: 0 8px 22px rgba(240, 232, 210, 0.35); }
.game__play { background: linear-gradient(180deg, #f7f1e1, #e3d6b6); color: #14203a; }
.step__num, .games__tab.is-active, .faq__item.is-open .faq__icon, .bonus--featured .bonus__tag { color: #0d1424; }
.promo-bar__btn { border: 1px solid rgba(217, 177, 90, 0.8); }
.review__avatar { background: linear-gradient(135deg, #d9b15a, #2a3a5c); }
