:root {
  --page-bg: #080e1d;
  --shell-bg: #132d55;
  --panel-bg: #10284e;
  --panel-bg-2: #1d3d70;
  --line: #29456f;
  --text: #dbe7ff;
  --muted: #93a7ca;
  --blue: #168ad8;
  --gold: #ffc633;
  --green: #18b500;
  --green-2: #35bd52;
  --danger: #ff3d55;
  --shell-width: 1464px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page-bg);
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, #070d1c 0, #070d1c calc((100% - var(--shell-width)) / 2), transparent 0),
    linear-gradient(270deg, #070d1c 0, #070d1c calc((100% - var(--shell-width)) / 2), transparent 0),
    #0a1020;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

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

button {
  font: inherit;
}

.promo-strip {
  height: 68px;
  background: #0e1529;
  border-bottom: 1px solid #24405f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 30;
}

.promo-strip__close {
  position: absolute;
  left: 17px;
  top: 16px;
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
  color: #8fa3c9;
  font-size: 36px;
  line-height: 28px;
  cursor: pointer;
}

.promo-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(100%, var(--shell-width));
}

.promo-strip__text {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.promo-strip__button {
  min-width: 119px;
  height: 40px;
  border: 1px solid var(--green-2);
  border-radius: 100px;
  color: #aeb9d2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: color .15s ease, background .15s ease;
}

.promo-strip__button:hover {
  color: #fff;
  background: rgba(53, 189, 82, .15);
}

.site-header {
  height: 78px;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 25;
}

.site-header__inner {
  width: min(100%, var(--shell-width));
  height: 100%;
  margin: 0 auto;
  background: rgba(17, 43, 82, .94);
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  padding: 0 18px;
  box-shadow: 0 8px 24px rgba(4, 10, 24, .28);
}

.menu-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #243b64;
  display: grid;
  place-content: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 3px;
  border-radius: 4px;
  background: #91a7ca;
  display: block;
}

.menu-button b,
.top-nav b,
.inbox-button b,
.bottom-nav b,
.floating-actions b {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.menu-button b {
  position: absolute;
  top: -3px;
  right: -2px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.top-nav a {
  height: 52px;
  padding: 0 15px;
  color: #a4b3cf;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  position: relative;
}

.top-nav a:hover {
  color: #fff;
}

.top-nav span {
  color: #fac544;
}

.top-nav b {
  width: 20px;
  min-width: 20px;
  height: 20px;
  position: absolute;
  right: -4px;
  top: 4px;
}

.brand {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 78px;
  height: 70px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.balance {
  margin-left: auto;
  min-width: 150px;
  height: 50px;
  padding: 8px 14px;
  border-radius: 28px;
  background: #0d1c37;
  color: #91a2c5;
  font-size: 11px;
}

.balance strong {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 15px;
}

.balance i {
  color: #74e6d6;
  font-style: normal;
  font-size: 10px;
}

.cash-button {
  min-width: 124px;
  height: 46px;
  border-radius: 24px;
  background: linear-gradient(180deg, #2ad207 0%, #0c9d00 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 6px 14px rgba(0,0,0,.22);
}

.cash-button span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.inbox-button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #263d67;
  color: #ffc633;
  position: relative;
  cursor: pointer;
}

.inbox-button b {
  position: absolute;
  top: -4px;
  right: -5px;
}

.page-shell {
  width: min(100%, var(--shell-width));
  margin: 0 auto;
  background: var(--shell-bg);
  min-height: 1200px;
  box-shadow: 0 0 0 1px rgba(42, 71, 118, .25);
}

.hero {
  height: 426px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 16, 36, .45), rgba(8, 16, 36, .1) 45%, rgba(8, 16, 36, .15)),
    url("assets/d2b55e7f044f78476caa731559623ab4a3a1c78d.webp") center/cover no-repeat,
    #08162d;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #2b426b;
}

.hero__content {
  position: absolute;
  z-index: 2;
}

.hero__content--desktop {
  left: 88px;
  top: 82px;
}

.hero__content--mobile {
  display: none;
}

.hero__content p {
  margin: 0 0 3px;
  color: #f0f4ff;
  font-size: 28px;
  line-height: 1.04;
  font-weight: 700;
}

.hero__content h1 {
  margin: 0 0 30px;
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.hero__content a {
  min-width: 180px;
  height: 42px;
  border-radius: 24px;
  background: linear-gradient(180deg, #35d60a 0%, #10a100 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.hero__person {
  position: absolute;
  z-index: 1;
  right: 115px;
  bottom: 6px;
  width: 540px;
  max-height: 96%;
  object-fit: contain;
}

.hero__arrows {
  position: absolute;
  left: 88px;
  bottom: 44px;
  z-index: 3;
  display: flex;
  gap: 14px;
}

.hero__arrows span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #294b7d;
  color: #8fb0df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 39px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero__dots {
  display: none;
}

.tabs {
  height: 46px;
  background: #102340;
  border-top: 1px solid #405279;
  border-bottom: 1px solid #1f3763;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.tabs a {
  min-width: 117px;
  padding: 0 14px;
  border-right: 1px solid #243f69;
  color: #aab8d2;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.tabs__icon {
  min-width: 52px !important;
  padding: 0 !important;
  font-size: 31px !important;
  color: #9eb6df !important;
}

.tabs__active {
  background: var(--blue);
  color: #fff !important;
}

.tabs__active span {
  margin-right: 6px;
}

.lobby {
  padding-bottom: 22px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px 14px;
  padding: 14px 16px 8px;
}

.game-card {
  background: #1c3b6b;
  border-radius: 4px;
  overflow: hidden;
  min-width: 0;
  position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
}

.game-card a {
  display: block;
}

.game-card__image {
  aspect-ratio: 380 / 270;
  overflow: hidden;
  background: #071020;
  position: relative;
}

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

.game-card__title {
  height: 30px;
  padding: 0 8px;
  color: #e5edff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__star {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 4px;
  color: #b6c7e7;
  background: rgba(33, 55, 93, .84);
  font-size: 17px;
  cursor: pointer;
}

.game-card__image .game-card__provider {
  position: absolute;
  right: 30px;
  top: 5px;
  width: auto;
  max-width: 78px;
  height: 18px;
  object-fit: contain;
}

.game-card__flag {
  position: absolute;
  left: 4px;
  top: 4px;
  height: 18px;
  padding: 0 6px;
  border-radius: 3px;
  color: #fff;
  background: #c600a6;
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
}

.game-card__flag--new {
  background: #00bd35;
}

.game-card__flag--top {
  background: #ffc633;
  color: #152243;
}

.more-games {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.more-games a {
  min-width: 120px;
  height: 38px;
  border: 2px solid var(--green-2);
  border-radius: 22px;
  color: #a8bbdc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.headline-band {
  padding: 30px 16px 35px;
  background: #173462;
  text-align: center;
}

.headline-band h2 {
  margin: 0;
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}

.headline-band p {
  max-width: 1400px;
  margin: 10px auto 0;
  color: #9eafd0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.winners {
  height: 104px;
  background: #0c1d38;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid #243e68;
  border-bottom: 1px solid #253e66;
}

.winners h2 {
  margin: 0;
  padding-left: 16px;
  color: #a8b7d3;
  font-size: 28px;
  line-height: .92;
}

.winners__rail {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding-right: 16px;
}

.winner {
  min-width: 150px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  align-items: center;
}

.winner img {
  width: 70px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
}

.winner strong {
  display: block;
  color: #f1f5ff;
  font-size: 13px;
  line-height: 1.05;
}

.winner span {
  color: #a2b2d3;
  font-size: 11px;
}

.winner b {
  display: block;
  color: var(--gold);
  font-size: 12px;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 32px 16px 58px;
}

.promo-card {
  min-height: 270px;
  border-radius: 8px;
  overflow: hidden;
  background: #1f3c69;
}

.promo-card h2 {
  margin: 0;
  height: 66px;
  background: #254675;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4f7ff;
  font-size: 27px;
  line-height: 1;
}

.promo-card__body {
  min-height: 132px;
  padding: 44px 0 0 245px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}

.promo-card--girls .promo-card__body {
  background-image: url("assets/c2cce1c4212b3f64e5ae401ec7630519f9a28e12.webp");
}

.promo-card--lottery .promo-card__body {
  background-image: url("assets/30c6e9a4fa62e3521311ce6e09bb46db945759d1.webp");
}

.promo-card__body p {
  margin: 0;
  font-weight: 700;
}

.promo-card__body strong {
  color: var(--gold);
  display: block;
}

.promo-card__locked {
  height: 44px;
  margin-top: -44px;
  background: rgba(0, 0, 0, .82);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c1cce1;
  font-weight: 700;
}

.promo-card__footer {
  min-height: 72px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #dbe7ff;
  font-weight: 700;
  text-align: center;
}

.promo-card__footer a {
  min-width: 150px;
  height: 39px;
  border: 2px solid var(--green-2);
  border-radius: 22px;
  color: #b7c7e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.timer {
  color: #9fb0d0;
  font-size: 11px;
}

.timer b {
  display: inline-flex;
  min-width: 26px;
  height: 28px;
  border-radius: 2px;
  background: #213d68;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  font-size: 15px;
}

.seo-panel {
  padding: 0 16px 46px;
  background: var(--shell-bg);
  position: relative;
}

.seo-panel__content {
  max-height: 280px;
  overflow: hidden;
  color: #b0bfdc;
  font-size: 14px;
  line-height: 1.45;
  transition: max-height .25s ease;
}

.seo-panel__content::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 46px;
  height: 92px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(19,45,85,0), var(--shell-bg));
}

.seo-panel.expanded .seo-panel__content {
  max-height: none;
}

.seo-panel.expanded .seo-panel__content::after {
  display: none;
}

.seo-panel h2 {
  margin: 24px 0 10px;
  color: #f2f5ff;
  font-size: 18px;
  line-height: 1.25;
}

.seo-panel__title {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 19px !important;
}

.seo-panel p {
  margin: 10px 0;
}

.facts {
  width: 780px;
  max-width: 100%;
  margin: 0 0 20px;
}

.facts div {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
  min-height: 22px;
}

.facts dt,
.facts dd {
  margin: 0;
}

.facts dt {
  color: #9fb0cf;
}

.facts dd {
  color: #c7d2e8;
}

.review-block {
  margin: 16px 0;
}

.review-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 12px 0 18px;
  overflow-x: auto;
  border: 1px solid #273f67;
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}

.seo-panel table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.seo-panel th,
.seo-panel td {
  padding: 10px 12px;
  border-bottom: 1px solid #273f67;
  text-align: left;
  vertical-align: top;
}

.seo-panel th {
  color: var(--gold);
  background: rgba(255, 198, 51, .07);
}

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

.review-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.review-stat,
.review-note {
  border: 1px solid #273f67;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  padding: 11px 12px;
}

.review-stat b {
  display: block;
  color: var(--gold);
}

.review-stat span {
  color: #9fb0cf;
}

.review-note {
  border-left: 3px solid #31c553;
}

.review-note--warning {
  border-left-color: #ff9f45;
}

.seo-panel__toggle {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: #31c553;
  font-weight: 800;
  cursor: pointer;
}

.floating-actions {
  position: fixed;
  right: max(8px, calc((100vw - var(--shell-width)) / 2 - 2px));
  top: 192px;
  z-index: 24;
  display: grid;
  gap: 16px;
}

.floating-actions a {
  width: 44px;
  height: 76px;
  border: 1px solid #2386d9;
  border-radius: 4px;
  background: #1e3f70;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  position: relative;
}

.floating-actions b {
  position: absolute;
  top: -11px;
  right: -10px;
}

.floating-actions small {
  position: absolute;
  left: 0;
  top: -10px;
  height: 16px;
  padding: 0 4px;
  border-radius: 3px;
  background: #ff2d3a;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
}

.site-footer {
  background: #080e1d;
  color: #8195bf;
  padding: 34px 0 50px;
}

.footer-shell {
  width: min(100%, var(--shell-width));
  margin: 0 auto;
  padding: 0 16px;
}

.provider-strip {
  border: 1px solid #29456f;
  border-radius: 7px;
  background: #0c152b;
  padding: 12px 12px 13px;
}

.provider-strip summary {
  color: #168ad8;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
}

.provider-strip__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  opacity: .74;
}

.provider-strip__logos img {
  max-width: 96px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(1);
}

.trust-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.trust-row span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.2;
}

.trust-row b {
  min-width: 52px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 4px;
  background: #101e3a;
  color: #6d7fa7;
  font-size: 11px;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #e5ecff;
}

.telegram-button {
  width: 148px;
  height: 38px;
  border-radius: 5px;
  background: #6045e7;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.footer-links a,
.footer-nav a {
  color: #168ad8;
}

.footer-nav {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 10px 230px;
}

.copyright {
  margin: 36px 0 0;
  text-align: center;
  color: #6e7fa5;
  font-size: 11px;
}

.bottom-nav {
  display: none;
}

.help-tab {
  position: fixed;
  right: 0;
  bottom: 64px;
  width: 40px;
  height: 94px;
  border: 0;
  border-radius: 5px 0 0 5px;
  background: #098be8;
  color: #082141;
  font-weight: 800;
  writing-mode: vertical-rl;
  z-index: 28;
  cursor: pointer;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
    background: #080e1d;
    font-size: 13px;
  }

  .promo-strip {
    height: 70px;
  }

  .promo-strip__close {
    left: 10px;
    top: 13px;
    color: #8da2c6;
  }

  .promo-strip__inner {
    justify-content: flex-end;
    gap: 8px;
    padding: 0 20px 0 47px;
  }

  .promo-strip__text {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .promo-strip__button {
    min-width: 142px;
    height: 50px;
    font-size: 17px;
    flex: 0 0 auto;
  }

  .site-header {
    height: 68px;
    position: relative;
    top: auto;
  }

  .site-header__inner {
    padding: 0 1px 0 11px;
    gap: 10px;
  }

  .top-nav,
  .brand,
  .inbox-button {
    display: none;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
  }

  .balance {
    margin-left: auto;
    min-width: 144px;
    height: 50px;
    border-radius: 28px;
    padding: 8px 15px;
    font-size: 11px;
  }

  .balance strong {
    font-size: 15px;
  }

  .cash-button {
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    flex: 0 0 auto;
  }

  .cash-button b {
    display: none;
  }

  .cash-button span {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }

  .page-shell {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .hero {
    height: 444px;
    background:
      linear-gradient(180deg, rgba(5, 10, 23, .12), rgba(5, 10, 23, .58)),
      url("assets/bc0b0114a8c3140be89ded6f47961c970a8648fc.webp") center/cover no-repeat,
      #0a1429;
  }

  .hero__content--desktop {
    display: none;
  }

  .hero__content--mobile {
    display: block;
    left: 20px;
    right: 20px;
    top: 290px;
    text-align: center;
  }

  .hero__content p {
    font-size: 20px;
    line-height: 1.16;
    margin-bottom: 3px;
  }

  .hero__content h1 {
    font-size: 29px;
    margin-bottom: 13px;
  }

  .hero__content a {
    min-width: 240px;
    height: 48px;
    font-size: 20px;
  }

  .hero__person {
    width: 380px;
    right: auto;
    left: 50%;
    top: 14px;
    bottom: auto;
    transform: translateX(-50%);
    max-width: 100%;
  }

  .hero__arrows {
    display: none;
  }

  .hero__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;
    display: flex;
    gap: 5px;
    padding: 4px 1px 0;
    background: #172744;
  }

  .hero__dots i {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #56627d;
  }

  .hero__dots i.active {
    background: #cad5ed;
  }

  .tabs {
    height: 66px;
    margin-top: 13px;
    border-top: 4px solid #0f1c32;
  }

  .tabs a {
    min-width: 123px;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 400;
  }

  .tabs__icon {
    min-width: 62px !important;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 2px 15px 12px;
  }

  .game-card {
    border-radius: 4px;
  }

  .game-card__title {
    height: 32px;
    font-size: 14px;
    justify-content: flex-start;
    text-align: left;
  }

  .game-card__provider {
    max-width: 62px;
    height: 15px;
    right: 29px;
  }

  .game-card__star {
    width: 25px;
    height: 25px;
  }

  .more-games,
  .headline-band,
  .winners,
  .promo-cards,
  .seo-panel,
  .site-footer,
  .help-tab {
    display: none;
  }

  .floating-actions {
    top: 768px;
    right: 0;
    gap: 9px;
  }

  .floating-actions a {
    width: 38px;
    height: 78px;
    border-radius: 5px 0 0 5px;
  }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: #111c35;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 -1px 0 #263e65;
  }

  .bottom-nav a {
    color: #9eb0d2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
    font-size: 22px;
  }

  .bottom-nav a.active {
    background: #243c68;
    color: #dce8ff;
  }

  .bottom-nav a.cash {
    color: #ffc633;
  }

  .bottom-nav span {
    color: #9eb0d2;
    font-size: 12px;
  }

  .bottom-nav b {
    position: absolute;
    right: 25px;
    top: 6px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .top-nav a {
    padding: 0 9px;
  }

  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .headline-band p {
    font-size: 19px;
  }

  .promo-card__body {
    padding-left: 160px;
  }
}
