:root {
  --page: #1e1822;
  --panel: #37282f;
  --panel-soft: #332b37;
  --text: #c2a894;
  --text-strong: #d6bda8;
  --line: #6f3f28;
  --button: #6f3f28;
  --button-hover: #702100;
  --gold: #ffc82e;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
.btn {
  border: 0;
  border-radius: 10px;
  background: var(--button);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  padding: 13px 18px;
  text-align: center;
  transition: background .18s ease, color .18s ease, opacity .18s ease, transform .18s ease;
}

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

.container {
  width: min(1280px, calc(100% - 30px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: var(--panel);
  border-bottom: 1px solid var(--panel);
}

.header-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 80px;
  padding: 10px 0;
}

.logo img {
  width: 150px;
  height: auto;
}

.nav {
  justify-self: center;
}

.nav ul,
.footer-list {
  display: flex;
  gap: 17px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

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

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

.actions .btn {
  padding: 12px 17px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  justify-self: end;
  width: 40px;
  height: 40px;
  color: #fff;
}

main {
  padding-top: 126px;
}

h1,
h2 {
  margin: 0 0 20px;
  color: var(--text-strong);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
  margin-top: 10px;
}

p,
li {
  color: var(--text);
  font-size: 16px;
}

p {
  margin: 0 0 20px;
}

ul,
ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.content-block,
.main-text {
  margin-bottom: 28px;
}

.hero {
  position: relative;
  min-height: 360px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 115px;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(23, 11, 25, .50), rgba(23, 11, 25, .06) 62%);
}

.hero-kicker,
.hero-bonus {
  color: #fff;
  margin: 0;
  line-height: 1;
}

.hero-kicker {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-bonus {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 30px;
}

.hero .btn {
  width: fit-content;
  min-width: 185px;
  background: var(--gold);
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.game-card,
.game-placeholder {
  position: relative;
  min-width: 0;
  aspect-ratio: 195 / 200;
  background: var(--panel-soft);
  border-radius: 10px;
  overflow: hidden;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
  opacity: 0;
  transition: opacity .18s ease;
}

.game-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  min-width: 112px;
  padding: 13px 22px;
  border-radius: 10px;
  transform: translate(-50%, -38%);
  opacity: 0;
  pointer-events: none;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .32);
}

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

.game-card:hover .game-play,
.game-card:focus-visible .game-play {
  transform: translate(-50%, -50%);
}

.table-wrap {
  width: 100%;
  margin: 22px 0 28px;
  overflow-x: auto;
}

table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  color: var(--text);
}

tbody {
  display: table;
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

th,
td {
  border: 2px solid var(--line);
  padding: 12px 14px;
  vertical-align: top;
  background: var(--panel);
  font-size: 14px;
  text-align: left;
}

th {
  font-weight: 800;
}

td p,
th p {
  margin: 0;
  font-size: inherit;
}

.bonus-block {
  display: grid;
  grid-template-columns: minmax(0, 485px) 1fr;
  gap: 36px;
  align-items: stretch;
  margin: 28px 0 34px;
  background: var(--panel);
  border-radius: 10px;
  overflow: hidden;
}

.bonus-block img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.bonus-copy {
  padding: 30px 35px 28px 0;
}

.bonus-copy h2 {
  margin-top: 0;
}

.payments-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: -4px 0 24px;
}

.payments-inline img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: rgba(207, 212, 219, .08);
  border-radius: 6px;
}

.policy-page {
  padding-bottom: 10px;
}

.policy-content {
  max-width: 960px;
}

.policy-content h1 {
  margin-bottom: 18px;
}

.policy-content h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 28px;
}

.policy-content a {
  color: var(--gold);
  font-weight: 700;
}

.policy-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  background: var(--panel);
  margin-top: 38px;
  padding: 44px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-logo img {
  width: 150px;
  margin: 0 auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 30px;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-list a {
  font-size: 15px;
  color: var(--text);
}

.footer-contact {
  text-align: right;
  font-weight: 700;
  font-size: 15px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

.footer-payments img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 36px 0 24px;
  padding: 22px 0;
  border-top: 1px solid #3e353f;
  border-bottom: 1px solid #3e353f;
}

.partners,
.download-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.partners img {
  width: 60px;
  height: 30px;
  object-fit: contain;
  background: rgba(207, 212, 219, .08);
  border-radius: 4px;
}

.download {
  display: grid;
  grid-template-columns: 25px auto;
  gap: 8px;
  align-items: center;
  min-width: 180px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #c7ff27;
  color: #202020;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 800;
}

.download:hover {
  background: #b8ef16;
  color: #202020;
}

.download svg {
  width: 25px;
  height: 25px;
}

.download small,
.download strong {
  display: block;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.footer-copy {
  white-space: nowrap;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: .92;
  background: var(--line);
  color: var(--page);
  display: grid;
  place-items: center;
}

.to-top svg {
  width: 30px;
  height: 30px;
  transform: rotate(-90deg);
}

.faq {
  margin: 34px 0 0;
}

.faq h2 {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.faq-item {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(111, 63, 40, .95);
  border-radius: 10px;
  background: var(--panel);
}

.faq dt {
  position: relative;
  margin: 0;
  padding: 18px 54px 18px 20px;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.faq dt::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--button);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.faq dd {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 990px) {
  .container {
    width: calc(100vw - 20px);
    max-width: 1280px;
  }

  .header-inner {
    grid-template-columns: 1fr 1fr 40px;
    gap: 15px;
  }

  .logo img {
    width: auto;
    height: 40px;
  }

  .menu-icon {
    display: grid;
    place-items: center;
    grid-column: 3;
    grid-row: 1;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 12px 0 2px;
    border-top: 1px solid #473842;
  }

  .nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .menu-toggle:checked ~ .nav {
    display: block;
  }

  .actions {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  main {
    padding-top: 136px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  .policy-content h2 {
    font-size: 23px;
  }

  p,
  li {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero {
    min-height: 250px;
    padding: 42px 28px;
  }

  .hero-kicker {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .hero-bonus {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .bonus-block {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bonus-block img {
    min-height: auto;
    max-height: 520px;
    object-position: top;
  }

  .bonus-copy {
    padding: 24px 20px;
  }

  .footer-top,
  .footer-bottom,
  .footer-line {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-payments,
  .download-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(370px, calc(100vw - 20px));
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero {
    min-height: 200px;
    padding: 24px 16px;
  }

  .hero-bonus {
    font-size: 25px;
  }

  .hero .btn {
    min-width: 150px;
    padding: 10px 12px;
    font-size: 14px;
  }

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

  .game-play {
    min-width: 92px;
    padding: 11px 16px;
    font-size: 14px;
  }

  .faq dt {
    padding: 16px 48px 16px 16px;
    font-size: 16px;
  }

  .faq dd {
    padding: 0 16px 16px;
    font-size: 14px;
  }

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