@font-face {
  font-family: "Inter";
  src: url("fonts/inter-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0d141c;
  --surface: #121b27;
  --surface-2: #172231;
  --surface-3: #1d2939;
  --line: #273449;
  --text: #f5f7fb;
  --muted: #7b8799;
  --accent: #b600f4;
  --accent-2: #8f00ff;
  --accent-glow: rgba(182, 0, 244, .32);
  --header-h: 58px;
  --rail-w: 56px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #8f00c6 #0d141c;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: #0d141c;
}

::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: linear-gradient(var(--accent), #6a00b4);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  background: rgba(18, 27, 39, .97);
  box-shadow: 0 7px 25px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}

.icon-button,
.language-current,
.bar-search {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #111a25;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}

.icon-button:hover,
.language-current:hover,
.bar-search:hover {
  border-color: #7f17a5;
  background: #1a2432;
  transform: translateY(-1px);
}

.menu-toggle {
  width: 28px;
  height: 38px;
  margin-right: 13px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 2px auto;
  border-radius: 2px;
  background: #d7dce6;
  transition: transform .2s, opacity .2s;
}

.menu-toggle.active span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  width: 112px;
  height: 44px;
}

.brand img {
  width: 112px;
  max-height: 45px;
  object-fit: contain;
}

.bonus-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 41px;
  margin-left: 16px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #9f00ff, #c700eb);
  box-shadow: 0 6px 17px rgba(171, 0, 242, .22);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.bonus-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171, 0, 242, .42);
}

.bonus-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.bonus-button b {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 99px;
  background: #e92755;
  font-size: 10px;
}

.search-button {
  width: 43px;
  height: 41px;
  margin-left: 10px;
  font-size: 24px;
  line-height: 1;
}

.header-search {
  position: absolute;
  z-index: 2;
  left: 312px;
  display: flex;
  width: min(490px, calc(100vw - 670px));
  min-width: 240px;
  height: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity .2s, transform .2s;
}

.header-search.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.header-search input {
  width: 100%;
  padding: 0 46px 0 15px;
  border: 1px solid #6f188c;
  border-radius: 8px;
  outline: none;
  background: #0c131c;
  color: #fff;
}

.header-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.header-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #a9b1be;
  font-size: 26px;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.button {
  min-width: 116px;
  height: 40px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s, background .2s;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button-primary {
  background: linear-gradient(135deg, #9800ef, #bd00f1);
  box-shadow: 0 7px 24px rgba(172, 0, 239, .18);
}

.button-primary:hover {
  box-shadow: 0 8px 28px rgba(172, 0, 239, .38);
}

.button-outline {
  border-color: #8700bd;
  background: transparent;
}

.button-outline:hover {
  background: rgba(151, 0, 204, .14);
}

.button-large {
  min-width: 166px;
  height: 50px;
}

.language {
  position: relative;
}

.language-current {
  width: 40px;
  height: 40px;
  border: 0;
}

.language-current img,
.language-menu img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.language-menu {
  position: absolute;
  top: 48px;
  right: 0;
  display: grid;
  width: 154px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #141e2b;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: .18s ease;
}

.language.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.language-menu button:hover {
  background: #1f2b3b;
}

.side-rail {
  position: fixed;
  z-index: 90;
  inset: var(--header-h) auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--rail-w);
  padding: 17px 6px 12px;
  border-right: 1px solid #182334;
  background: #101923;
  box-shadow: 7px 0 22px rgba(0, 0, 0, .14);
  transition: width .25s ease;
}

.side-rail.open {
  width: 188px;
}

.side-rail nav,
.rail-bottom {
  display: grid;
  gap: 7px;
}

.side-rail a,
.rail-bottom button {
  position: relative;
  display: flex;
  align-items: center;
  width: 44px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  transition: width .25s, background .2s, color .2s;
}

.side-rail a:hover,
.rail-bottom button:hover,
.side-rail a.active {
  background: linear-gradient(90deg, rgba(173, 0, 244, .28), rgba(173, 0, 244, .06));
  color: #fff;
}

.side-rail span,
.rail-bottom > button {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  font-size: 20px;
  filter: saturate(1.2);
}

.side-rail em {
  overflow: hidden;
  width: 0;
  color: #d8deea;
  font-style: normal;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transition: width .25s, opacity .2s;
}

.side-rail.open a,
.side-rail.open .rail-bottom button {
  width: 176px;
}

.side-rail.open em {
  width: 120px;
  opacity: 1;
}

.rail-bottom {
  padding-top: 8px;
  border-top: 1px solid #3a4555;
}

.rail-bottom > button {
  width: 44px;
  color: #8090a5;
}

.rail-bottom img {
  width: 26px;
  margin: auto;
}

main,
footer {
  margin-left: var(--rail-w);
}

main {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 452px;
  margin: 14px 0 0;
  overflow: hidden;
  background-image: url("images/cfwogh9mdgevquk8xovgg4j44jmkowwcwh9hlo3c.webp");
  background-position: center;
  background-size: cover;
  animation: heroEnter 1.2s cubic-bezier(.16, 1, .3, 1) both;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -4%;
  background: inherit;
  background-position: center;
  background-size: cover;
  animation: heroBreath 12s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 18, .93) 0%, rgba(8, 12, 18, .56) 25%, rgba(8, 12, 18, .08) 60%, rgba(8, 12, 18, .02) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 30px;
  width: min(430px, 45vw);
  transform: translateY(-49%);
}

.hero h1 {
  margin: 0 0 7px;
  font-size: clamp(32px, 3vw, 45px);
  line-height: 1.03;
  letter-spacing: .01em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, .6);
}

.hero p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-actions > span {
  margin-left: 7px;
  color: #d4d8df;
}

.social-button {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: transform .2s;
}

.social-button:last-child {
  background: #168bd0;
}

.social-button:hover {
  transform: translateY(-3px) rotate(4deg);
}

.social-button img {
  width: 25px;
  height: 25px;
}

.floating-notes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-notes i {
  position: absolute;
  width: 49px;
  height: 23px;
  border: 1px solid rgba(236, 245, 213, .7);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(234, 243, 209, .95), rgba(83, 126, 65, .75));
  box-shadow: 0 4px 13px rgba(0, 0, 0, .3);
  opacity: .5;
  animation: billFall 7s linear infinite;
}

.floating-notes i::after {
  content: "$";
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(31, 70, 35, .6);
  font-size: 12px;
}

.floating-notes i:nth-child(1) { left: 33%; top: -12%; animation-delay: -2s; }
.floating-notes i:nth-child(2) { left: 56%; top: -10%; animation-delay: -5s; animation-duration: 9s; }
.floating-notes i:nth-child(3) { left: 81%; top: -15%; animation-delay: -1s; animation-duration: 8s; }
.floating-notes i:nth-child(4) { left: 95%; top: -15%; animation-delay: -6s; animation-duration: 10s; }
.floating-notes i:nth-child(5) { left: 46%; top: -16%; animation-delay: -3.5s; animation-duration: 11s; }
.floating-notes i:nth-child(6) { left: 18%; top: -20%; animation-delay: -8s; animation-duration: 12s; }

.section-shell,
.games-area,
.providers-section {
  width: 100%;
}

.promos {
  padding: 22px 16px 15px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-bottom: 12px;
}

.section-heading.compact {
  min-height: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
}

.section-heading h2 span {
  margin-right: 8px;
}

.carousel-buttons {
  display: flex;
  gap: 8px;
}

.carousel-buttons button,
.game-arrows button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #2b3749;
  border-radius: 7px;
  background: #151f2c;
  color: #c9d0dc;
  font-size: 24px;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}

.carousel-buttons button:hover,
.game-arrows button:hover {
  border-color: #8c10b8;
  background: #7100ad;
  color: white;
  transform: translateY(-1px);
}

.promo-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.promo-track::-webkit-scrollbar,
.game-track::-webkit-scrollbar,
.provider-track::-webkit-scrollbar,
.category-list::-webkit-scrollbar {
  display: none;
}

.promo-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 42px) / 4);
  align-items: center;
  justify-content: space-between;
  height: 114px;
  min-width: 250px;
  padding: 17px 8px 12px 17px;
  overflow: hidden;
  border: 1px solid #202b3d;
  border-radius: 9px;
  background: #151f2c;
  scroll-snap-align: start;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: auto auto -70px -45px;
  width: 160px;
  height: 150px;
  border-radius: 50%;
  opacity: .17;
  filter: blur(4px);
}

.promo-card:hover {
  z-index: 2;
  border-color: #5e3676;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
  transform: translateY(-4px);
}

.promo-card small {
  display: inline-block;
  margin-bottom: 7px;
  padding: 3px 6px;
  border-radius: 2px;
  background: #edf0f4;
  color: #475163;
  font-size: 10px;
}

.promo-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.promo-card p {
  margin: 0;
  color: #6f7b8e;
  font-size: 12px;
}

.promo-card img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .25));
  animation: promoFloat 3.2s ease-in-out infinite alternate;
}

.promo-card:nth-child(2) img { animation-delay: -.8s; }
.promo-card:nth-child(3) img { animation-delay: -1.6s; }
.promo-card:nth-child(4) img { animation-delay: -2.4s; }
.promo-green::before { background: #68ff12; }
.promo-purple::before { background: #a74cff; }
.promo-blue::before { background: #00c9ff; }
.promo-orange::before { background: #ff9418; }

.network-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 74px;
  margin: 0 16px 16px;
  padding: 13px 22px;
  border: 1px solid #242f40;
  border-radius: 10px;
  background: linear-gradient(90deg, #111a25, #141e2a, #101721);
  color: #697589;
}

.network-strip > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.network-strip strong {
  color: #6d7c91;
  font-size: 31px;
  font-weight: 500;
}

.network-strip span {
  font-size: 11px;
}

.network-strip img {
  width: 98px;
  height: 29px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.3);
  opacity: .6;
  transition: filter .2s, opacity .2s, transform .2s;
}

.network-strip img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.games-area {
  position: relative;
}

.category-bar {
  position: sticky;
  z-index: 80;
  top: var(--header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  height: 55px;
  margin: 0 16px;
  padding: 4px;
  border: 1px solid #283448;
  border-radius: 10px;
  background: rgba(15, 23, 33, .96);
  box-shadow: 0 9px 28px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.category-bar button {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #7c879a;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, background .2s, transform .2s;
}

.category-bar button:hover,
.category-bar button.active {
  color: white;
  background: rgba(138, 0, 188, .18);
}

.category-bar .all-categories {
  min-width: 190px;
  background: linear-gradient(135deg, #9d00ed, #bd00f0);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.category-bar .all-categories:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #af06ff, #d000ff);
}

.category-list {
  display: flex;
  flex: 1 1 auto;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-list b {
  margin-left: 5px;
  padding: 3px 5px;
  border-radius: 4px;
  background: #6f7783;
  color: white;
  font-size: 11px;
}

.providers-control {
  position: relative;
  flex: 0 0 auto;
}

.category-bar .providers-control > button {
  min-width: 160px;
  border: 1px solid #2a3649;
  background: #161f2e;
  color: #fff;
}

.providers-popover {
  position: absolute;
  top: 48px;
  right: 0;
  display: grid;
  width: 190px;
  padding: 7px;
  border: 1px solid #2d394c;
  border-radius: 10px;
  background: #16202d;
  box-shadow: 0 17px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .18s ease;
}

.providers-popover.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.category-bar .providers-popover button {
  width: 100%;
  text-align: left;
}

.category-bar .bar-search {
  width: 42px;
  padding: 0;
  background: linear-gradient(135deg, #9200e6, #b700ec);
  color: white;
  font-size: 23px;
}

#gameSections {
  padding: 20px 16px 0;
}

.game-section {
  position: relative;
  margin-bottom: 30px;
  scroll-margin-top: 126px;
}

.game-section.filtered-empty {
  display: none;
}

.game-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.game-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-title span {
  font-size: 23px;
}

.game-title h2 {
  margin: 0;
  font-size: 22px;
}

.game-heading-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.show-all {
  height: 38px;
  padding: 0 15px;
  border: 1px solid #2a3546;
  border-radius: 8px;
  background: #121b26;
  color: #fff;
  cursor: pointer;
}

.show-all:hover {
  border-color: #8215ab;
  background: #1a2330;
}

.game-arrows {
  display: flex;
  gap: 7px;
}

.game-arrows button {
  background: #7600ae;
}

.game-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 70px) / 6);
  grid-template-rows: repeat(2, auto);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.game-track.showing-all {
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: none;
  overflow: visible;
}

.game-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #151e28;
  box-shadow: 0 7px 17px rgba(0, 0, 0, .12);
  cursor: pointer;
  scroll-snap-align: start;
  aspect-ratio: .76;
  transition: transform .25s, box-shadow .25s;
}

.game-card[hidden] {
  display: none;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color .2s;
  pointer-events: none;
}

.game-card:hover {
  z-index: 2;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .4), 0 0 22px rgba(159, 0, 232, .18);
  transform: translateY(-5px) scale(1.015);
}

.game-card:hover::after {
  border-color: rgba(191, 22, 255, .85);
}

.game-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .25s;
}

.game-card:hover > img {
  filter: brightness(.53);
  transform: scale(1.07);
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  transition: opacity .22s;
}

.game-card:hover .game-overlay,
.game-card:focus-visible .game-overlay {
  opacity: 1;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c100fa, #7f00d6);
  box-shadow: 0 0 0 8px rgba(173, 0, 244, .16), 0 8px 24px rgba(0, 0, 0, .25);
  font-size: 23px;
  transform: translateY(8px) scale(.82);
  transition: transform .25s;
}

.game-card:hover .play-icon {
  transform: none;
}

.game-overlay strong {
  font-size: 13px;
  text-align: center;
}

.game-overlay small {
  margin-top: 5px;
  color: #c3cad5;
  font-size: 10px;
}

.search-empty {
  display: none;
  min-height: 180px;
  margin: 20px 16px;
  place-items: center;
  border: 1px dashed #303c50;
  border-radius: 10px;
  color: #788598;
}

.search-empty.visible {
  display: grid;
}

.providers-section {
  padding: 5px 16px 30px;
  scroll-margin-top: 120px;
}

.provider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.provider-track article {
  display: grid;
  place-items: center;
  flex: 0 0 190px;
  height: 92px;
  padding: 19px;
  border: 1px solid #253145;
  border-radius: 9px;
  background: linear-gradient(145deg, #151f2c, #111923);
  scroll-snap-align: start;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.provider-track article:hover {
  border-color: #763199;
  box-shadow: 0 10px 27px rgba(0, 0, 0, .27);
  transform: translateY(-3px);
}

.provider-track img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.7);
  opacity: .72;
  transition: filter .2s, opacity .2s;
}

.provider-track article:hover img {
  filter: none;
  opacity: 1;
}

.seo-content {
  width: min(1160px, calc(100% - 32px));
  margin: 8px auto 44px;
  padding: clamp(24px, 4vw, 50px);
  border: 1px solid #263348;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 0, rgba(165, 0, 234, .13), transparent 29%),
    linear-gradient(145deg, #121b27, #0f1721 52%, #111a25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .22);
  color: #c6ceda;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.seo-content p {
  margin: 0 0 17px;
}

.seo-content strong {
  color: #f5f7fb;
  font-weight: 750;
}

.seo-header {
  max-width: 940px;
  margin-bottom: 26px;
}

.seo-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(190, 31, 246, .45);
  border-radius: 99px;
  background: rgba(166, 0, 229, .1);
  color: #d87cff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.seo-content h2 {
  margin: 0 0 16px;
  color: #f5f7fb;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -.015em;
}

.seo-content section > h2 {
  font-size: clamp(21px, 2vw, 29px);
}

.seo-content h3 {
  margin: 0 0 10px;
  color: #f1f4f8;
  font-size: 17px;
  line-height: 1.4;
}

.seo-lead {
  color: #aeb9c9;
  font-size: 16px;
  line-height: 1.75;
}

.seo-summary {
  margin: 25px 0;
  padding: 22px 24px;
  border: 1px solid #3f2853;
  border-left: 4px solid #b700f2;
  border-radius: 11px;
  background: linear-gradient(110deg, rgba(154, 0, 217, .12), rgba(20, 30, 43, .7));
}

.seo-summary ul,
.responsible-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.seo-summary li::marker,
.responsible-list li::marker {
  color: #b900f4;
}

.seo-toc {
  margin: 0 0 32px;
  padding: 20px 23px;
  border: 1px solid #27354a;
  border-radius: 11px;
  background: rgba(9, 15, 22, .42);
}

.seo-toc ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 0;
  padding-left: 21px;
  color: #93a0b1;
}

.seo-toc li::marker {
  color: #c72aff;
  font-weight: 800;
}

.seo-content > section {
  padding: 34px 0;
  border-top: 1px solid #263347;
}

.table-wrap {
  max-width: 100%;
  margin: 24px 0 6px;
  overflow-x: auto;
  border: 1px solid #2b394e;
  border-radius: 11px;
  background: #101822;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .13);
}

.seo-content table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.seo-content caption {
  padding: 14px 18px;
  border-bottom: 1px solid #2b394e;
  background: #182333;
  color: #f3f5f8;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.seo-content th,
.seo-content td {
  padding: 13px 16px;
  border-right: 1px solid #263347;
  border-bottom: 1px solid #263347;
  vertical-align: top;
}

.seo-content th:last-child,
.seo-content td:last-child {
  border-right: 0;
}

.seo-content tbody tr:last-child td {
  border-bottom: 0;
}

.seo-content th {
  background: rgba(157, 0, 219, .1);
  color: #e7ebf1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.seo-content td {
  color: #9da9ba;
  font-size: 12px;
  line-height: 1.55;
}

.seo-content td:first-child {
  color: #f1f3f7;
  font-weight: 750;
}

.seo-content tbody tr {
  transition: background .2s;
}

.seo-content tbody tr:hover {
  background: rgba(255, 255, 255, .025);
}

.seo-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.seo-steps li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid #29374b;
  border-radius: 9px;
  background: rgba(19, 29, 42, .72);
  color: #9eabba;
  font-size: 12px;
  line-height: 1.6;
}

.seo-steps li > span {
  display: grid;
  place-items: center;
  flex: 0 0 31px;
  height: 31px;
  border-radius: 8px;
  background: linear-gradient(145deg, #b700ee, #7900c5);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.check-grid article {
  min-height: 184px;
  padding: 18px;
  border: 1px solid #29374b;
  border-radius: 10px;
  background: linear-gradient(145deg, #16202e, #111a25);
  transition: border-color .2s, transform .2s;
}

.check-grid article:hover {
  border-color: #6c328a;
  transform: translateY(-3px);
}

.check-grid span {
  display: block;
  margin-bottom: 16px;
  color: #bd19f7;
  font-size: 24px;
  font-weight: 900;
}

.check-grid p {
  margin: 0;
  color: #8f9cad;
  font-size: 12px;
  line-height: 1.6;
}

.responsible-list {
  margin: 21px 0;
  padding-left: 23px;
}

.responsible-note {
  margin-top: 23px;
  padding: 17px 19px;
  border: 1px solid rgba(234, 173, 44, .34);
  border-radius: 9px;
  background: rgba(210, 145, 12, .07);
  color: #c9b98f;
  font-size: 12px;
}

.seo-faq details {
  margin-bottom: 9px;
  overflow: hidden;
  border: 1px solid #2a374b;
  border-radius: 9px;
  background: rgba(17, 26, 37, .75);
}

.seo-faq summary {
  position: relative;
  padding: 16px 47px 16px 18px;
  color: #eef1f5;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  color: #c429ff;
  font-size: 23px;
  transform: translateY(-50%);
}

.seo-faq details[open] summary::after {
  content: "−";
}

.seo-faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #96a3b4;
  font-size: 12px;
  line-height: 1.65;
}

.seo-conclusion {
  margin-top: 8px;
  padding: 30px;
  border: 1px solid #4a2860;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(156, 0, 225, .16), rgba(16, 24, 34, .8));
}

.seo-conclusion h2 {
  font-size: 24px;
}

.seo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 45px;
  margin-top: 4px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #9d00ee, #c000ed);
  box-shadow: 0 8px 25px rgba(170, 0, 235, .26);
  color: white;
  font-size: 13px;
  font-weight: 850;
  transition: transform .2s, box-shadow .2s;
}

.seo-cta:hover {
  box-shadow: 0 11px 32px rgba(170, 0, 235, .42);
  transform: translateY(-2px);
}

footer {
  border-top: 1px solid #222f42;
  background: #101720;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 40px;
  padding: 38px 30px 26px;
}

.footer-logo {
  width: 150px;
  align-self: start;
}

.footer-top h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
}

.footer-top div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-top a,
.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #778397;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s;
}

.footer-top a:hover,
.link-button:hover {
  color: #c500ff;
}

.footer-copy {
  padding: 20px 30px 30px;
  border-top: 1px solid #222d3e;
  color: #69768a;
  font-size: 11px;
  font-weight: 500;
}

.footer-copy > p:first-child {
  max-width: 820px;
  line-height: 1.6;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 18px 0;
}

.footer-contacts span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #404c5e;
  border-radius: 50%;
  color: #e8ebf0;
  font-size: 13px;
  font-weight: 800;
}

.footer-contacts a:hover {
  color: #fff;
}

.chat-button {
  position: fixed;
  z-index: 109;
  right: 15px;
  bottom: 18px;
  width: 61px;
  height: 61px;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(145deg, #c100ff, #8d00dd);
  box-shadow: 0 10px 28px rgba(147, 0, 221, .42);
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
  cursor: pointer;
  animation: chatPulse 2.5s ease-in-out infinite;
}

.chat-button i {
  position: absolute;
  top: -4px;
  right: -3px;
  width: 14px;
  height: 14px;
  border: 2px solid #121b27;
  border-radius: 50%;
  background: #f65567;
}

.chat-card {
  position: fixed;
  z-index: 108;
  right: 15px;
  bottom: 88px;
  width: 296px;
  padding: 17px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .44);
  color: #333;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.98);
  transition: .22s ease;
}

.chat-card.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.chat-card > button {
  position: absolute;
  top: 5px;
  right: 7px;
  border: 0;
  background: transparent;
  color: #242424;
  font-size: 24px;
  cursor: pointer;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  font-size: 12px;
}

.chat-title img {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  object-fit: contain;
}

.chat-card p {
  margin: 15px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}

.modal.visible {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 11, .82);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid #3b2851;
  border-radius: 15px;
  background: linear-gradient(145deg, #172130, #111923);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55), 0 0 50px rgba(156, 0, 235, .13);
  text-align: center;
  transform: translateY(14px) scale(.97);
  transition: transform .22s ease;
}

.modal.visible .modal-panel {
  transform: none;
}

.modal-panel > img {
  width: 150px;
  height: 60px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.modal-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.modal-panel p {
  margin: 0 0 22px;
  color: #93a0b2;
  font-size: 13px;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 11px;
  border: 0;
  background: transparent;
  color: #8995a7;
  font-size: 27px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroEnter {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes heroBreath {
  from { transform: scale(1.02); }
  to { transform: scale(1.075); }
}

@keyframes billFall {
  0% { transform: translate3d(0, -90px, 0) rotate(0deg) skewX(4deg); opacity: 0; }
  12% { opacity: .62; }
  55% { transform: translate3d(70px, 240px, 0) rotate(170deg) skewX(-8deg); }
  100% { transform: translate3d(-10px, 540px, 0) rotate(340deg) skewX(6deg); opacity: 0; }
}

@keyframes promoFloat {
  from { transform: translateY(3px) rotate(-1deg); }
  to { transform: translateY(-5px) rotate(1deg); }
}

@keyframes chatPulse {
  0%, 75%, 100% { transform: scale(1); }
  82% { transform: scale(1.07); }
  89% { transform: scale(.98); }
}

@media (max-width: 1100px) {
  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    min-width: auto;
    padding: 0 18px;
  }

  .promo-card {
    flex-basis: calc((100% - 28px) / 3);
  }

  .game-track {
    grid-auto-columns: calc((100% - 42px) / 4);
  }

  .network-strip img:nth-last-child(-n + 2) {
    display: none;
  }

  .category-bar .all-categories {
    min-width: 164px;
  }

  .category-bar .providers-control > button {
    min-width: 135px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 56px;
    --rail-w: 0px;
  }

  body {
    padding-bottom: 65px;
  }

  .site-header {
    padding: 0 10px;
  }

  .menu-toggle {
    margin-right: 3px;
  }

  .brand {
    width: 96px;
  }

  .brand img {
    width: 96px;
  }

  .bonus-button {
    height: 38px;
    margin-left: 7px;
    padding: 0 10px;
  }

  .bonus-button span {
    display: none;
  }

  .search-button {
    width: 38px;
    height: 38px;
    margin-left: 7px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .button-outline {
    display: none;
  }

  .header-actions .button-primary {
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .language-current {
    width: 36px;
    height: 36px;
  }

  .header-search {
    left: 8px;
    right: 8px;
    width: auto;
    min-width: 0;
  }

  .header-search.visible {
    z-index: 10;
  }

  .side-rail {
    inset: auto 0 0 0;
    z-index: 105;
    display: block;
    width: 100%;
    height: 64px;
    padding: 5px 8px;
    border: 0;
    border-top: 1px solid #263247;
    background: rgba(16, 25, 35, .98);
    backdrop-filter: blur(12px);
  }

  .side-rail.open {
    width: 100%;
  }

  .side-rail nav {
    display: flex;
    justify-content: space-around;
    gap: 2px;
  }

  .side-rail nav a:nth-child(n + 6),
  .rail-bottom {
    display: none;
  }

  .side-rail a,
  .side-rail.open a {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
  }

  .side-rail span {
    flex-basis: auto;
    font-size: 20px;
  }

  .side-rail em,
  .side-rail.open em {
    display: none;
  }

  .hero {
    min-height: 590px;
    margin: 0;
    background-image: url("images/o4o5oyytbjy4yjum44uoexk1zpmxyge3n35x62rv.webp");
    background-position: center 36%;
  }

  .hero::before {
    background-image: inherit;
    background-position: center 36%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(8, 12, 18, .96) 0%, rgba(8, 12, 18, .34) 48%, rgba(8, 12, 18, .08) 100%);
  }

  .hero-content {
    top: auto;
    bottom: 38px;
    left: 20px;
    width: calc(100% - 40px);
    transform: none;
  }

  .hero h1 {
    font-size: 35px;
  }

  .floating-notes i:nth-child(-n + 3) {
    display: none;
  }

  .promos {
    padding-inline: 11px;
  }

  .promo-card {
    flex-basis: 84%;
  }

  .network-strip {
    justify-content: flex-start;
    gap: 25px;
    margin-inline: 11px;
    overflow: hidden;
  }

  .network-strip img {
    flex: 0 0 83px;
  }

  .network-strip img:nth-last-child(-n + 4) {
    display: none;
  }

  .category-bar {
    top: var(--header-h);
    height: 53px;
    margin-inline: 7px;
  }

  .category-bar .all-categories {
    min-width: 45px;
    width: 45px;
    padding: 0;
    font-size: 19px;
  }

  .category-bar .all-categories span,
  .providers-control {
    display: none;
  }

  #gameSections {
    padding-inline: 11px;
  }

  .game-track {
    grid-auto-columns: calc((100% - 10px) / 2);
    gap: 10px;
  }

  .game-track.showing-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-heading {
    align-items: flex-end;
  }

  .game-title h2 {
    font-size: 19px;
  }

  .show-all {
    display: none;
  }

  .game-arrows button {
    width: 32px;
    height: 32px;
  }

  .providers-section {
    padding-inline: 11px;
  }

  .provider-track article {
    flex-basis: 150px;
  }

  .seo-content {
    width: calc(100% - 22px);
    margin-bottom: 26px;
    padding: 24px 17px;
    font-size: 13px;
  }

  .seo-lead {
    font-size: 14px;
  }

  .seo-summary,
  .seo-toc {
    padding: 18px;
  }

  .seo-toc ol {
    grid-template-columns: 1fr;
  }

  .seo-content > section {
    padding: 27px 0;
  }

  .seo-steps,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .check-grid article {
    min-height: auto;
  }

  .seo-conclusion {
    padding: 23px 18px;
  }

  .seo-cta {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 30px 18px;
  }

  .footer-copy {
    padding: 20px 18px 28px;
  }

  .footer-contacts {
    align-items: flex-start;
    flex-direction: column;
  }

  .chat-button {
    bottom: 76px;
    width: 54px;
    height: 54px;
  }

  .chat-card {
    right: 10px;
    bottom: 139px;
    width: min(296px, calc(100vw - 20px));
  }
}

@media (max-width: 480px) {
  .header-actions .button-primary,
  .language {
    display: none;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 31px;
  }

  .promo-card {
    flex-basis: 92%;
  }

  .category-list button {
    padding-inline: 9px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
