:root {
  --orange: #f18903;
  --orange-dark: #d87300;
  --green: #20a447;
  --ink: #242424;
  --charcoal: #2f3033;
  --muted: #6e7075;
  --line: #e5e5e5;
  --surface: #ffffff;
  --soft: #f3f3f3;
  --shell: 1320px;
  --shadow: 0 14px 38px rgba(24, 24, 24, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6f6f6;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

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

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.mobile-only {
  display: none;
}

.responsible-strip {
  color: #fff;
  background: #898989;
  font-size: 12px;
}

.responsible-strip__inner {
  width: 100%;
  min-height: 38px;
  padding-inline: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.responsible-strip img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.responsible-strip a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  box-shadow: none;
}

.header-main {
  width: 100%;
  min-height: 40px;
  padding-inline: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 185px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-actions .button {
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
}

.header-actions .button--icon {
  width: 32px;
  padding-inline: 0;
}

.header-actions .button--green {
  background: #55b65c;
}

.header-actions .button--orange {
  background: #f48a00;
}

.header-actions .button--outline,
.header-actions .button--icon {
  color: #ef8500;
  background: #fff;
  border-color: #ef8500;
}

.header-actions .button--outline:hover,
.header-actions .button--icon:hover {
  color: #fff;
  background: #ef8500;
}

.button {
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

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

.button--green {
  background: var(--green);
}

.button--green:hover {
  background: #19883b;
}

.button--orange {
  background: var(--orange);
}

.button--orange:hover {
  background: var(--orange-dark);
}

.button--outline,
.button--icon {
  color: var(--orange);
  background: #fff;
  border-color: var(--orange);
}

.button--outline:hover,
.button--icon:hover {
  color: #fff;
  background: var(--orange);
}

.button--icon {
  width: 40px;
  padding-inline: 0;
}

.button--white {
  color: var(--orange-dark);
  background: #fff;
}

.button--wide {
  width: 100%;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  background: var(--ink);
}

.main-nav {
  color: #202124;
  background: #dedde2;
}

.nav-inner {
  width: 100%;
  min-height: 47px;
  padding-inline: 12px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.nav-link {
  position: relative;
  min-height: 47px;
  padding: 0 14px;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #202124;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.nav-link::after {
  display: none;
}

.nav-link:hover,
.nav-link.active {
  color: #202124;
  background: rgba(255, 255, 255, .3);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  color: var(--ink);
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow);
  transition: .2s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  padding: 10px 12px;
  display: block;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-dropdown a:hover {
  color: var(--orange);
  background: #f5f5f5;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1530 / 465;
  min-height: 0;
  max-height: none;
  background: #151515;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity .65s ease, visibility .65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-slide img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: fill;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 74px;
  border: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .8);
  background: transparent;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  text-shadow: 0 2px 7px rgba(0, 0, 0, .6);
  transition: color .2s ease;
}

.hero-arrow:hover {
  color: #fff;
  background: transparent;
}

.hero-arrow--prev {
  left: 0;
  border-radius: 0 7px 7px 0;
}

.hero-arrow--next {
  right: 0;
  border-radius: 7px 0 0 7px;
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  z-index: 3;
  display: none;
  justify-content: center;
  gap: 7px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: .2s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--orange);
  border-color: var(--orange);
}

.jackpot {
  color: #fff;
  background: #293036;
}

.jackpot__inner {
  width: 100%;
  min-height: 50px;
  padding-inline: 10px;
  display: block;
}

.jackpot__label,
.jackpot__link {
  display: none;
}

.jackpot__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff9f1a;
  box-shadow: 0 0 0 0 rgba(255, 159, 26, .8);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 159, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 159, 26, 0); }
}

.jackpot__ticker {
  position: relative;
  height: 50px;
  overflow: hidden;
}

.jackpot-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  transform: none;
  transition: none;
}

.jackpot-item.active {
  opacity: 1;
  transform: none;
}

.jackpot-item span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
}

.jackpot-item strong {
  color: #f9c322;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.register-band {
  color: #fff;
  background: #f18903;
}

.register-band__inner {
  width: 100%;
  min-height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-band__inner a {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.section-space {
  padding-block: 56px;
}

.section-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--compact {
  margin-bottom: 0;
}

.section-heading h2,
.editorial h1 {
  margin: 2px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.text-link {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
}

.carousel-controls {
  display: flex;
  gap: 7px;
}

.scroll-button {
  width: 38px;
  height: 38px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.scroll-button:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.horizontal-scroll {
  overflow: auto hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.quick-links {
  padding: 8px 1px 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 104px;
  gap: 16px;
}

.quick-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #3c3c3e;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.quick-card__icon {
  position: relative;
  width: 72px;
  height: 72px;
  padding: 14px;
  border: 4px solid #757575;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6e5e8;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.quick-card__icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color .25s ease;
}

.quick-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-card:hover .quick-card__icon {
  background: #fff;
  border-color: var(--orange);
  transform: translateY(-4px);
}

.quick-card:hover .quick-card__icon::after {
  border-color: rgba(241, 137, 3, .35);
}

.promotions {
  background: #fff;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.promo-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 20, 20, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.promo-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 3px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promo-card__media {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #222;
}

.promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.promo-card:hover .promo-card__media img {
  transform: scale(1.04);
}

.promo-card__body {
  min-height: 172px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.promo-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

.promo-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.promo-card .button {
  width: 100%;
  min-height: 36px;
  margin-top: auto;
  color: var(--orange);
  border-color: var(--orange);
  background: #fff;
}

.promo-card .button:hover {
  color: #fff;
  background: var(--orange);
}

.game-lobby {
  background: #efefef;
}

.lobby-top {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.game-search {
  width: min(320px, 100%);
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
}

.game-search span {
  color: var(--orange);
  font-size: 22px;
}

.game-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
}

.game-shelf {
  padding: 24px 0 28px;
  border-top: 1px solid #dcdcdc;
}

.game-shelf:first-child {
  border-top: 0;
}

.shelf-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shelf-heading h3 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.game-track {
  padding: 2px 2px 16px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 6);
  gap: 12px;
}

.game-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 6px;
  color: #fff;
  background: #333;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.game-card__media {
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
}

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

.game-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: grid;
  place-items: center;
  background: rgba(18, 18, 18, .76);
  transition: opacity .25s ease;
}

.game-card__overlay span {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  font-size: 18px;
  transform: translateY(8px);
  transition: transform .25s ease;
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card:hover .game-card__overlay span {
  transform: translateY(0);
}

.game-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.game-card__title {
  min-height: 46px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #363638;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.game-shelf.is-hidden,
.game-card.is-hidden {
  display: none;
}

.editorial {
  background:
    linear-gradient(rgba(255, 255, 255, .96), rgba(255, 255, 255, .96)),
    radial-gradient(circle at top left, #ffb14d, transparent 42%);
}

.editorial__card {
  padding: 44px;
  display: grid;
  grid-template-columns: .8fr 2fr;
  gap: 54px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.editorial__intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.editorial__intro p {
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.editorial__content {
  columns: 1;
}

.editorial__content article {
  margin: 0;
  padding: 0 0 30px;
  break-inside: avoid;
}

.editorial__content article + article {
  padding-top: 30px;
  border-top: 1px solid #ececec;
}

.editorial__content h2 {
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
}

.editorial__content h2::before {
  content: "";
  width: 20px;
  height: 3px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: 4px;
  background: var(--orange);
}

.editorial__content p {
  margin: 0 0 14px;
  color: #55575b;
  font-size: 13px;
  line-height: 1.75;
  text-align: left;
}

.editorial__content a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
}

.wins {
  background: #fff;
}

.wins-track {
  padding: 2px 2px 22px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 80px) / 5);
  gap: 16px;
}

.win-card {
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 7px;
  background: #ededed;
  text-align: center;
  transition: transform .25s ease;
}

.win-card:hover {
  transform: translateY(-5px);
}

.win-card__top {
  padding: 22px 18px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .2), transparent),
    #363638;
}

.win-card__top img {
  width: 112px;
  height: 112px;
  margin: auto;
  border: 5px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 9px 20px rgba(0, 0, 0, .28);
}

.win-card__body {
  min-height: 150px;
  padding: 18px 15px 22px;
}

.win-card h3 {
  min-height: 34px;
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.win-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.win-card strong {
  margin-top: 5px;
  display: block;
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
}

.footer {
  padding: 48px 0 22px;
  color: #c8c8ca;
  background: #29292c;
}

.contact-ribbon {
  padding-bottom: 30px;
  border-bottom: 1px solid #454548;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: 22px;
}

.contact-ribbon img {
  width: 100%;
  max-width: 385px;
  height: 65px;
  object-fit: contain;
}

.payment-list {
  padding: 28px 0;
  border-bottom: 1px solid #454548;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}

.payment-list img {
  width: 74px;
  height: 34px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: .82;
}

.footer-grid {
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  margin-bottom: 8px;
  display: block;
  color: #a9aaad;
  font-size: 12px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-grid p {
  color: #9a9b9e;
  font-size: 12px;
}

.responsible-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.responsible-logos img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 3px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #454548;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #85868a;
  font-size: 12px;
}

.footer-bottom img {
  width: 190px;
  filter: brightness(0) invert(1);
  opacity: .72;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: min(470px, calc(100% - 36px));
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 14px;
  color: #fff;
  background: #242427;
  border-left: 4px solid var(--orange);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 12px;
}

.cookie-banner a {
  color: #ffac3c;
  font-size: 12px;
  text-decoration: underline;
}

.cookie-banner .button {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  display: grid;
  place-items: center;
  transition: .25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100% - 32px));
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  transform: translateY(20px);
  transition: transform .25s ease;
}

.modal.is-open .modal__panel {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  color: #777;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.modal__logo {
  width: 220px;
  margin-bottom: 28px;
}

.modal h2 {
  margin: 4px 0 20px;
  font-size: 25px;
  text-transform: uppercase;
}

.modal form {
  display: grid;
  gap: 14px;
}

.modal label {
  color: #555;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.modal input {
  width: 100%;
  height: 44px;
  margin-top: 5px;
  padding: 0 12px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  outline: 0;
}

.modal input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 137, 3, .12);
}

.modal__panel > a {
  margin-top: 16px;
  display: block;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1180px) {
  .nav-link {
    padding-inline: 10px;
    font-size: 12px;
  }

  .nav-link::after {
    right: 10px;
    left: 10px;
  }

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

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

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

  .editorial__card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .editorial__intro {
    position: static;
  }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    top: 0;
  }

  .header-main {
    min-height: 64px;
  }

  .brand img {
    width: 210px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .22s ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-inner {
    width: 100%;
    max-height: calc(100vh - 96px);
    padding: 10px 20px 20px;
    overflow-y: auto;
    display: block;
  }

  .nav-group {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    min-height: 44px;
    padding: 0;
    justify-content: space-between;
    border-bottom: 1px solid #434346;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    color: #fff;
    background: #242426;
    box-shadow: none;
    transition: none;
  }

  .nav-group.open .nav-dropdown {
    max-height: 300px;
  }

  .nav-dropdown a {
    padding-left: 16px;
    color: #ddd;
    border-bottom: 1px solid #353537;
  }

  .nav-register {
    margin-top: 12px;
    padding: 11px;
    color: #fff;
    background: var(--green);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
  }

  .hero {
    aspect-ratio: 2 / 1;
    min-height: 0;
  }

  .hero-slide img {
    object-position: center;
  }

  .jackpot__inner {
    min-height: 50px;
  }

  .jackpot__label {
    display: none;
  }

  .editorial__content {
    columns: 1;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .responsible-strip__inner {
    min-height: 38px;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 1.25;
  }

  .responsible-strip a {
    display: none;
  }

  .header-main {
    min-height: 58px;
  }

  .brand img {
    width: 166px;
  }

  .header-actions .button--orange {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    aspect-ratio: 1530 / 465;
    background: #222;
  }

  .hero-slide img {
    object-fit: cover;
  }

  .hero-arrow {
    width: 34px;
    height: 54px;
    font-size: 32px;
  }

  .hero-dots {
    bottom: 9px;
  }

  .jackpot__inner {
    min-height: 50px;
  }

  .jackpot-item {
    align-items: center;
  }

  .jackpot-item span {
    font-size: 12px;
  }

  .jackpot-item strong {
    font-size: 21px;
  }

  .jackpot__link {
    font-size: 12px;
  }

  .register-band__inner {
    min-height: 40px;
  }

  .register-band__inner strong {
    font-size: 14px;
  }

  .register-band .button {
    flex: 0 0 auto;
    padding-inline: 13px;
  }

  .section-space {
    padding-block: 38px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .editorial h1 {
    font-size: 25px;
  }

  .quick-links {
    grid-auto-columns: 88px;
    gap: 9px;
  }

  .quick-card__icon {
    width: 64px;
    height: 64px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card__body {
    min-height: 0;
  }

  .lobby-top {
    align-items: stretch;
    flex-direction: column;
  }

  .game-search {
    width: 100%;
  }

  .game-track {
    grid-auto-columns: 43%;
    gap: 9px;
  }

  .shelf-heading h3 {
    font-size: 15px;
  }

  .editorial__card {
    width: 100%;
    padding: 30px 18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .editorial__content p {
    text-align: left;
  }

  .wins-track {
    grid-auto-columns: 72%;
    gap: 12px;
  }

  .contact-ribbon {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-ribbon img {
    height: 48px;
  }

  .payment-list {
    gap: 8px 12px;
  }

  .payment-list img {
    width: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
