:root {
  --page-background: #ffffff;
  --surface-background: #f7f7fb;
  --primary-color: #ef5b2b;
  --navy: #050542;
  --text-color: #111116;
  --muted-color: #50505a;
  --border-color: #d9e3f4;
  --container-width: 1365px;
  --content-width: 975px;
  --sidebar-width: 300px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--page-background);
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
p a,
article section > a {
  color: #05055a;
  text-decoration: underline;
}
.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}
.skip-link:focus {
  top: 12px;
}

header {
  height: 80px;
  background: var(--navy);
  color: #fff;
}
header nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
}
.logo > span {
  position: relative;
  width: 33px;
  height: 32px;
}
.logo > span::before,
.logo > span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 32px;
  background: var(--primary-color);
  transform: skewY(44deg);
}
.logo > span::before {
  left: 2px;
  clip-path: polygon(0 0, 100% 0, 100% 54%, 0 28%);
}
.logo > span::after {
  right: 2px;
  clip-path: polygon(0 46%, 100% 72%, 100% 100%, 0 100%);
}
.logo strong {
  font-size: 37px;
  letter-spacing: -1.6px;
  line-height: 1;
}
.logo strong span {
  color: var(--primary-color);
}
header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38px;
}
header li > a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 19px;
  white-space: nowrap;
}
header li b {
  color: #ff7652;
  font-size: 17px;
}
.search-icon {
  width: 22px;
  height: 22px;
  border: 1.8px solid #fff;
  border-radius: 50%;
  position: relative;
}
.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: #fff;
  right: -6px;
  bottom: -2px;
  transform: rotate(48deg);
}
.mobile-menu {
  display: none;
  width: 36px;
  min-width: 36px;
}
.mobile-menu i {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  background: var(--surface-background);
  border-bottom: 31px solid #ececf6;
}
.hero .container {
  padding-top: 10px;
  padding-bottom: 17px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #454550;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs a,
.breadcrumbs strong {
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}
.hero h1 {
  max-width: 820px;
  margin: 31px 0 13px;
  font-size: 56px;
  line-height: 1.105;
  letter-spacing: -1.6px;
  font-weight: 750;
}
.hero h1 em {
  color: #ff6235;
  font-style: normal;
}
.hero > .container > p:not(.notice) {
  max-width: 875px;
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.52;
}
.notice {
  margin: 16px 0 0;
  font-size: 14px;
  color: #565662;
}
.notice b {
  margin-right: 11px;
  color: #1b1b21;
}
.notice a {
  margin-left: 8px;
}

.catalog {
  padding: 35px 0 20px;
}
.filters {
  display: grid;
  grid-template-columns: 350px 240px 254px 1fr 144px 158px;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}
.filters a {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #f7f7fb;
  border-radius: var(--radius);
  font-size: 16px;
}
.filters .filter-search {
  justify-content: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  color: #55555f;
}
.filter-search span {
  width: 17px;
  height: 17px;
  border: 2px solid #666;
  border-radius: 50%;
  position: relative;
}
.filter-search span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: #666;
  transform: rotate(45deg);
}
.filters .megaways {
  justify-content: flex-end;
  gap: 10px;
  background: transparent;
}
.megaways i {
  width: 24px;
  height: 17px;
  border-radius: 10px;
  background: #d6d6d9;
  position: relative;
}
.megaways i::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  overflow: hidden;
}
.game-grid article {
  min-width: 0;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}
.game-grid figure {
  margin: 0;
}
.game-grid img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}
.game-grid figcaption {
  padding: 9px 16px 13px;
  line-height: 1.3;
}
.game-grid strong {
  display: block;
  font-size: 16px;
}
.game-grid small {
  display: block;
  margin-top: 5px;
  color: var(--muted-color);
}
.catalog-more {
  margin: 16px 0 0;
  text-align: center;
}
.catalog-more a {
  display: inline-flex;
  min-width: 200px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--content-width)) var(--sidebar-width);
  gap: 74px;
  align-items: start;
}
.article-content {
  min-width: 0;
}
.article-content > section,
.article-content > nav {
  margin-bottom: 44px;
}
.article-content h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.22;
  letter-spacing: -1px;
}
.article-content h3 {
  margin: 24px 0 8px;
  font-size: 21px;
  line-height: 1.35;
}
.article-content p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.55;
}
.article-content ul,
.article-content ol {
  margin: 10px 0 18px;
  padding-left: 28px;
  font-size: 17px;
}
.article-content li {
  margin: 7px 0;
}

.offers > p {
  margin-bottom: 17px;
}
.offer-leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.offer-leaders > article {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  min-height: 420px;
}
.rank {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  min-width: 39px;
  height: 34px;
  padding: 5px 8px;
  background: #3e3dab;
  color: #fff;
  border-radius: 0 0 3px 0;
  font-weight: 700;
  font-size: 14px;
}
.country {
  position: absolute;
  right: 9px;
  top: 9px;
  font-size: 19px;
}
.country i {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2db534;
  color: #fff;
  font-size: 8px;
  line-height: 11px;
  text-align: center;
}
.brand {
  height: 181px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.aphrodite {
  font-family: Georgia, serif;
  font-size: 28px;
  color: #b38b8f;
  text-shadow:
    1px 1px #fff,
    2px 2px #8e6b6e;
}
.godz {
  color: #90a0b4;
  font-family: Georgia, serif;
  letter-spacing: 4px;
  text-shadow: 2px 2px #344a64;
}
.vipluck {
  font-family: Georgia, serif;
  font-size: 46px;
  font-style: italic;
  color: #182d5b;
}
.vipluck span {
  margin-left: 3px;
  font-size: 31px;
  font-style: normal;
}
.offer-leaders article > div {
  min-height: 238px;
  padding: 20px 23px 14px;
  background: #f6f6fa;
  text-align: center;
}
.offer-leaders h3 {
  min-height: 66px;
  margin: 0 0 15px;
  font-size: 27px;
  line-height: 1.32;
}
.offer-leaders a,
.offer-list > article > a,
.primary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 800;
}
.offer-leaders a b,
.offer-list a b {
  margin-left: 10px;
  font-size: 22px;
}
.offer-leaders small {
  display: block;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 700;
}
.offer-leaders small span,
.offer-list small span {
  color: var(--primary-color);
}
.offer-list {
  margin-top: 17px;
}
.offer-list > article {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr 240px;
  min-height: 143px;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #f6f6fa;
}
.offer-list .brand {
  height: 100%;
  background: #fff;
  padding: 25px 30px;
  font-size: 28px;
}
.offer-list > article > div {
  padding: 18px 24px;
}
.offer-list h3 {
  margin: 0 0 34px;
  font-size: 27px;
  line-height: 1.3;
}
.offer-list small {
  font-size: 15px;
  font-weight: 700;
}
.offer-list > article > a {
  margin: 0 25px 0 0;
  min-height: 56px;
}
.betninja {
  font-size: 27px !important;
  letter-spacing: 1px;
}
.coincasino {
  font-size: 24px !important;
  color: #151515;
}
.coincasino::first-letter {
  color: #9e39ef;
}
.kyngs {
  font-family: Georgia, serif;
  font-size: 38px !important;
}
.mad {
  font-style: italic;
  color: #e82e55;
  font-size: 25px !important;
}
.mad span {
  color: #111;
}

.summary {
  padding: 24px 28px;
  background: #f6f6fa;
  border-left: 4px solid #3e3dab;
}
.summary h2 {
  font-size: 25px;
}
.summary ol {
  margin-bottom: 0;
}
.summary a {
  color: #13135d;
  text-decoration: underline;
}
.key-points {
  background: #f8f8fb;
  padding: 20px 25px 20px 48px !important;
  border: 1px solid #e6e8f0;
}
.key-points li::marker {
  color: #63cf22;
}
.table-wrap {
  overflow-x: auto;
  margin: 18px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
caption {
  padding: 11px 14px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  font-weight: 700;
}
th,
td {
  padding: 13px 14px;
  border: 1px solid var(--border-color);
  text-align: left;
  vertical-align: top;
}
thead th {
  background: #f0f0f7;
}
tbody th {
  width: 25%;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 22px 49px;
  background: #f8f8f8;
}
.pros-cons h3 {
  margin-top: 0;
  font-size: 18px;
}
.pros-cons ul {
  padding-left: 28px;
  margin-bottom: 0;
}
.pros-cons li {
  list-style: none;
  position: relative;
}
.pros-cons div:first-child li::before {
  content: "✓";
  color: #64d329;
  position: absolute;
  left: -24px;
  font-weight: 900;
}
.pros-cons div:last-child li::before {
  content: "✖";
  color: #f02020;
  position: absolute;
  left: -24px;
  font-weight: 900;
}

.faq h2 {
  margin-bottom: 15px;
}
.faq article {
  border: 1px solid var(--border-color);
  border-radius: 7px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}
.faq h3 a {
  min-height: 58px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111;
  text-decoration: none;
}
.faq h3 span {
  color: #3d3ca8;
  font-size: 24px;
  transition: transform 0.2s ease;
}
.faq article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq article > div p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  font-size: 16px;
  transition: padding 0.25s ease;
}
.faq article.open > div {
  grid-template-rows: 1fr;
}
.faq article.open > div p {
  padding: 0 24px 18px;
}
.faq article.open h3 span {
  transform: rotate(180deg);
}

.author {
  display: grid;
  grid-template-columns: 277px 1fr;
  gap: 31px;
  background: #f6f6fa;
  padding: 31px 24px;
}
.author picture img {
  width: 277px;
  height: 277px;
  object-fit: cover;
}
.author > div > p:first-child {
  margin: 30px 0 0;
  font-size: 14px;
}
.author h2 {
  margin: 0 0 14px;
  font-size: 43px;
}
.author h2 em {
  color: #ff6135;
  font-style: normal;
}
.author p {
  font-size: 18px;
}
.author > div > p:last-child {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}
.primary-link {
  display: inline-flex;
  min-height: 49px;
  padding: 0 15px;
  font-size: 14px;
}
.linkedin {
  width: 49px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #aaa9df;
  border-radius: 4px;
  color: #171717;
  text-decoration: none;
  font-weight: 700;
}

aside {
  padding-top: 2px;
}
aside section {
  margin-bottom: 40px;
}
aside h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
aside h2::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border-color);
}
aside nav {
  display: block;
}
aside nav a {
  min-height: 51px;
  display: flex;
  align-items: center;
  padding: 11px 15px;
  border-bottom: 1px solid var(--border-color);
  color: #44444b;
}
.icon-links a {
  gap: 20px;
}
.icon-links span {
  min-width: 28px;
  color: #5f5bb5;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

footer {
  position: relative;
  margin-top: 18px;
  padding: 78px 0 25px;
  background: var(--navy) url("../images/footer-shape.png") top center / 100%
    41px no-repeat;
  color: #fff;
}
footer .container {
  display: grid;
  grid-template-columns: 250px 380px 1fr;
  column-gap: 30px;
}
footer section {
  align-self: start;
}
footer .logo {
  min-width: 0;
  margin-bottom: 24px;
}
footer .logo strong {
  font-size: 35px;
}
footer section nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer h2 {
  margin: 0 0 14px;
  font-size: 20px;
}
footer .social {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 16px;
  padding-bottom: 4px;
}
footer .social a {
  width: 49px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff6235;
  font-weight: 700;
}
footer hr {
  grid-column: 1 / -1;
  width: 100%;
  margin: 31px 0 24px;
  border: 0;
  border-top: 1px solid #34346e;
}
footer > .container > p,
footer address {
  grid-column: 1 / -1;
  margin: 0 0 13px;
  font-size: 11px;
  font-style: normal;
}
.back-top {
  position: fixed;
  right: 0;
  bottom: 13px;
  width: 44px;
  height: 44px;
  border-radius: 24px 0 0 24px;
  background: #ff6135;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  z-index: 20;
}

@media (max-width: 1180px) {
  header ul {
    gap: 20px;
  }
  header li > a {
    font-size: 16px;
  }
  .filters {
    grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  }
  .filters .megaways {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .content-grid {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 35px;
  }
  .offer-list > article {
    grid-template-columns: 210px 1fr 210px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }
  header {
    height: 68px;
  }
  header .logo strong {
    font-size: 29px;
  }
  header .logo {
    min-width: 0;
  }
  header ul {
    display: none;
    position: absolute;
    z-index: 50;
    top: 68px;
    left: 0;
    right: 0;
    padding: 18px 22px;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
  }
  header ul.open {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .hero h1 {
    font-size: 44px;
  }
  .game-grid {
    grid-template-columns: repeat(3, minmax(215px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .content-grid {
    display: block;
  }
  aside {
    margin-top: 45px;
  }
  .offer-leaders {
    grid-template-columns: 1fr;
  }
  .offer-list > article {
    grid-template-columns: 190px 1fr 180px;
  }
  .pros-cons {
    gap: 24px;
    padding: 22px 28px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }
  .container {
    width: min(calc(100% - 24px), var(--container-width));
  }
  .logo {
    gap: 9px;
  }
  .logo > span {
    transform: scale(0.82);
    transform-origin: left center;
    width: 27px;
  }
  header .logo strong {
    font-size: 25px;
  }
  .breadcrumbs {
    font-size: 11px;
  }
  .hero .container {
    padding-top: 9px;
    padding-bottom: 17px;
  }
  .hero {
    border-bottom-width: 18px;
  }
  .hero h1 {
    margin-top: 23px;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -1px;
  }
  .hero h1 br {
    display: none;
  }
  .hero > .container > p:not(.notice) {
    font-size: 16px;
  }
  .notice {
    font-size: 12px;
  }
  .catalog {
    padding-top: 24px;
  }
  .filters {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 7px;
  }
  .filters a {
    flex: 0 0 210px;
  }
  .filters .filter-search {
    flex-basis: 260px;
  }
  .filters .megaways {
    flex-basis: 145px;
    justify-content: center;
  }
  .game-grid {
    grid-template-columns: repeat(5, 78vw);
    gap: 14px;
  }
  .game-grid img {
    height: 67vw;
    max-height: 315px;
  }
  .article-content h2 {
    font-size: 27px;
  }
  .article-content p {
    font-size: 16px;
  }
  .article-content ul,
  .article-content ol {
    font-size: 16px;
  }
  .offer-leaders h3 {
    font-size: 24px;
  }
  .offer-list > article {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .offer-list .brand {
    min-height: 110px;
  }
  .offer-list > article > div {
    padding-bottom: 10px;
  }
  .offer-list h3 {
    margin-bottom: 13px;
    font-size: 23px;
  }
  .offer-list > article > a {
    margin: 0 20px 20px;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .faq h3 {
    font-size: 16px;
  }
  .author {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .author picture img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .author > div > p:first-child {
    margin-top: 0;
  }
  .author h2 {
    font-size: 37px;
  }
  .author > div > p:last-child {
    flex-wrap: wrap;
  }
  aside {
    padding-top: 5px;
  }
  footer {
    padding-top: 70px;
  }
  footer .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  footer .social {
    justify-content: flex-start;
  }
  footer hr,
  footer > .container > p,
  footer address {
    grid-column: 1;
  }
}

.h3-block {
  margin-bottom: 20px;
  padding: 16px;
  border: 2px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
  border-radius: 8px;
}

.h3-block--even {
  border-color: color-mix(in srgb, var(--muted-color) 20%, transparent);
}

.h3-block h3 {
  margin-top: 0;
}

.h3-block p:last-child {
  margin-bottom: 0;
}
