@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@400;500;600;700&display=swap');
:root {
  --ff-yanone-kaffeesatz: 'Yanone Kaffeesatz', sans-serif;
  --color-primary: #F7F8FF;
  --color-link: #C51FFF;
  --color-footer: #FDFCFC;
  --bg-main: #4d1f6a;
  --bg-table: #02113B;
  --bg-light: #0B205A;
  --bg-footer: #00081F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

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

button {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

body {
  font-family: var(--ff-yanone-kaffeesatz);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main) url(../img/poker2.webp) no-repeat top left;
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}
@media (max-width: 590px) {
  body {
    font-size: 14px;
    line-height: 21px;
    background-image: url(../img/poker2.webp);
  }
}

.container {
  max-width: 1070px;
  margin: 0 auto;
}

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#0b0c0f, #09094e) padding-box, linear-gradient(to bottom, #511657, #09060a) border-box;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  border-radius: 50%;
  border: 5px solid transparent;
  z-index: -1;
  bottom: 45px;
  right: 10px;
  opacity: 0;
  transition: 0.3s ease;
}
.arrow-btn-up.btn-visible {
  opacity: 1;
  z-index: 1;
}

main {
  background-image: url(../img/poker.webp);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top 6% left 100%;
}
@media (max-width: 590px) {
  main {
    background-image: url(../img/);
  }
}

.article {
  padding-bottom: 30px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 15px 30px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 30px;
  margin-bottom: 16px;
}
.article p {
  margin-bottom: 16px;
}
.article p:last-child {
  margin-bottom: 0;
  margin-top: 16px;
}
.article p > a {
  color: var(--color-link);
  text-decoration: underline;
}
.article img {
  border-radius: 16px;
  padding-bottom: 20px;
}
@media (max-width: 450px) {
  .article img {
    border-radius: 12px;
  }
}
.article h1 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 40px;
  line-height: 67px;
  text-align: center;
}
@media (max-width: 450px) {
  .article h1 {
    font-size: 32px;
    line-height: 39px;
    text-align: center;
  }
}
.article h2 {
  margin: 24px 0 31px;
  font-weight: 600;
  font-size: 38px;
  line-height: 51px;
  text-align: center;
}
@media (max-width: 450px) {
  .article h2 {
    font-size: 26px;
    line-height: 32px;
    text-align: center;
  }
}
.article h3 {
  margin: 24px 0 20px;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 450px) {
  .article h3 {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }
}
.article picture + h2 {
  margin-top: 32px;
}
.article h3 + p + p {
  margin-bottom: 32px;
}
.article p + h2 {
  margin-top: 32px;
}
.article .table {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody {
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}
.article tbody tr {
  display: grid;
  align-items: center;
  grid-template: auto/repeat(4, 1fr);
}
.article tbody tr:nth-child(even) {
  background: #0A1B4C;
}
.article tbody tr:nth-child(odd) {
  background: var(--bg-light);
}
.article tbody tr:first-child {
  background: var(--bg-table);
  border-radius: 8px 8px 0px 0px;
}
.article tbody tr:first-child td {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 590px) {
  .article tbody tr:first-child td {
    line-height: 20px;
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  .article tbody tr:first-child td {
    line-height: 17px;
    font-size: 11px;
  }
}
.article tbody tr td {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  padding: 20px 20px;
}
@media (max-width: 768px) {
  .article tbody tr td {
    font-size: 14px;
    line-height: 17px;
    padding: 10px;
  }
}
@media (max-width: 510px) {
  .article tbody tr td {
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  .article tbody tr td {
    line-height: 17px;
    font-size: 11px;
    padding: 5px;
  }
}
.article .table.tab-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
.article .table.tab-3 tr {
  grid-template: auto/repeat(2, 1fr);
}

.footer {
  background: linear-gradient(95.7deg, #279fca 0.95%, #07201c 109.81%);
  padding: 24px 0;
}
.footer p {
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  opacity: 0.5;
  color: #FDFCFC;
}
@media (max-width: 450px) {
  .footer p {
    width: 230px;
    margin: 0 auto;
  }
}

.header-top {
  height: 82px;
}
@media (max-width: 590px) {
  .header-top {
    height: 62px;
  }
}
@media (max-width: 390px) {
  .header-top {
    height: 211px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  transition: 0.3s ease;
  background-color: #38184c;
}
@media (max-width: 590px) {
  .header-fixed {
    padding: 10px 0;
  }
}
.header-fixed.active {
  background: var(--bg-main);
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1280px) {
  .header-wrap {
    padding: 0 15px;
  }
}
@media (max-width: 390px) {
  .header-wrap {
    flex-direction: column;
  }
}
.header-block {
  display: flex;
  align-items: center;
  gap: 97px;
}
@media (max-width: 390px) {
  .header-block {
    width: 100%;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: relative;
    z-index: 3;
    width: 27px;
    height: 18px;
    background: url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
@media (max-width: 390px) {
  .header .burger {
    position: absolute;
    top: 25px;
    left: 23px;
  }
}
.header-logo {
  cursor: pointer;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 8px 20px;
}
@media (max-width: 390px) {
  .header-logo {
    position: absolute;
    top: 17px;
    right: 15px;
  }
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 79px;
    bottom: 0;
    height: 110vh;
    z-index: 0;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-main);
    background-size: contain;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
@media (max-width: 590px) {
  .header .nav {
    top: 60px;
  }
}
@media (max-width: 390px) {
  .header .nav {
    top: 211px;
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 48px;
}
@media (max-width: 890px) {
  .header .menu {
    flex-direction: column;
    gap: 0;
    padding: 20px 15px 0;
  }
}
.header .menu .item {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  color: #F6F8FF;
}
.header .menu .item:hover {
  color: #2853FF;
}
@media (max-width: 890px) {
  .header .menu .item {
    width: 100%;
    text-align: left;
    max-width: 360px;
    padding: 16px 10px;
  }
}
.header-container {
  display: flex;
  gap: 12px;
}
@media (max-width: 890px) {
  .header-container {
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 390px) {
  .header-container {
    flex-direction: column;
    margin-top: 101px;
    width: 100%;
  }
}
.header button {
  width: 150px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  padding: 10px 0;
  background: linear-gradient(95.7deg, #279fca 0.95%, #07201c 109.81%);
  color: #FFFFFF;
}
.header button:hover {
  background: #BA00FF;
}
@media (max-width: 590px) {
  .header button {
    width: 116px;
  }
}
@media (max-width: 390px) {
  .header button {
    width: 100%;
  }
}
.header button:first-child {
  width: 106px;
  background: linear-gradient(95.7deg, #279fca 0.95%, #07201c 109.81%)
}
.header button:first-child:hover {
  background: #9A28CA;
}
@media (max-width: 590px) {
  .header button:first-child {
    width: 75px;
  }
}
@media (max-width: 390px) {
  .header button:first-child {
    width: 100%;
  }
}
.header-bottom {
  padding: 44px 0 32px;
}
.header-bottom img {
  border-radius: 4px;
}
@media (max-width: 450px) {
  .header-bottom img {
    border-radius: 12px;
  }
}
@media (max-width: 1280px) {
  .header-bottom {
    padding: 44px 15px 30px;
  }
}
@media (max-width: 590px) {
  .header-bottom {
    padding: 24px 15px 40px;
  }
}/*# sourceMappingURL=main.css.map */