
    *,
*::after,
*::before {
  box-sizing: border-box;
}
body {position: relative;}
ul,
ol[class] {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
button:hover {
  opacity: 0.8;
}
input,
textarea,
select {
  font: inherit;
}
a {
  text-decoration: none;
}
figure {
  margin-bottom: 20px;
  text-align: center;
}
figcaption {
  color: inherit;
}
.general-image {
  display: block;
  border-radius: 15px;
  max-height: 400px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;
}
.padbottom-20 {height: 20px;}
@media (max-width: 1250px) {
  .padbottom-20 {height: 16px;}
}

.content {
  padding-top: 100px;
}
.wrapper {width: 97%; max-width: 1440px; margin: 0 auto;}

@media (max-width: 1250px) {
  .content { padding-top: 80px;}
}
.components {background: rgba(246, 248, 219, 1);}

.components {font-family: 'Tahoma', sans-serif;}
.components h1 {font-size: 32px; line-height: 38px;}
.components h2 {font-size: 28px; line-height: 34px;}
.components h3 {font-size: 24px;line-height: 39px;}
.components h4 {font-size: 22px;line-height: 27px;}
.components h5 {font-size: 20px;line-height: 25px;}
.components p, .components span, .components li, .components a, .general-tr {font-size: 18px;line-height: 26px;}
.general-h1, .general-h2, .general-h3, .general-h4, .general-h5, .general-h6 {color: rgba(255, 255, 255, 1);margin-bottom: 20px; text-align: left;
    background: rgba(18, 83, 64, 1); padding: 16px 20px; border-radius: 10px;}
.general-h3-color {background: rgba(239, 228, 167, 1); color: rgba(40, 40, 40, 1); margin-bottom: 20px; text-align: left; padding: 16px 20px; border-radius: 10px;} 
.general-p {text-align: left; color: rgba(40, 40, 40, 1);padding-bottom: 20px; }
@media (max-width: 1250px) {
  .general-p {padding-bottom: 16px;}
}

@media (max-width: 600px) {
    .components h1 {font-size: 24px; line-height: 30px;}
    .components h2 {font-size: 20px; line-height: 28px;}
    .components h3 {font-size: 22px;line-height: 26px;}
    .components p, .components span, .components li, .components a, .general-tr {font-size: 16px;line-height: 24px;}
}

.basic {background: rgba(254, 255, 234, 1); box-shadow: 0px 0px 1px 0px rgba(159, 157, 69, 1); border-radius: 20px; padding: 20px 20px 0 20px; margin-bottom: 16px;}
@media (max-width: 1250px) {
    .basic {padding: 16px 16px 0 16px;}
}
@media (max-width: 600px) {
    .basic {border-radius: 12px;}
}

/* header */
header.header {position: fixed;top: 0;left: 0; width: 100%; height: 80px;z-index: 10; background: rgba(6, 24, 14, 1);}
.header-inner {display: flex; justify-content: space-between; align-items: center; height: 100%;}
.header-logo img {width: 60px; height: 60px;}
.header-menu {display: flex; gap: 16px;}
.header-menu a {padding: 16px 24px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50px; font-size: 16px; color: rgba(255, 255, 255, 1);
  transition: 0.4s;}
.header-menu a:hover {background: rgba(239, 228, 167, 1); color: #181616;}
.header-inner-blocks {display: flex; align-items: center; gap: 16px;}
.header-buttons {display: flex; align-items: center; gap: 16px;}
.header-buttons .btn-play {background: linear-gradient(90deg, #FE704D 0%, #C01306 53.37%, #FE704D 96.63%); border: 1px solid rgba(255, 255, 255, 1);
  padding: 16px 32px; border-radius: 50px; font-size: 16px; color: rgba(255, 255, 255, 1); font-weight: bold;}
.header-buttons .btn-bonus img {width: 50px; height: 50px;}

.burger {display: none;}
.mobileMenu {position: fixed; top: 0; right: 0%; display: block; z-index: 5; background: rgba(6, 24, 14, 1); width: 100%; max-width: 350px;
  min-height: 100vh; padding: 30px 20px; transition: right 0.8s;}
.mobileMenu[hidden] {right: -200%;}
.mobileMenu .mobileMenuTop {display: flex; align-items: center; justify-content: space-between; margin-bottom: 75px;}
.mobileMenu .mobileMenuLinks {display: flex; flex-direction: column; gap: 28px;}
.mobileMenu .mobileMenuLinks a {padding: 16px 24px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50px; font-size: 16px; 
  color: rgba(255, 255, 255, 1); text-align: center;}
.overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.5); z-index: 1; display: block;}
.overlay[hidden] {display: none;}

@media (max-width: 1250px) {
  .burger {display: block;}
  .header-inner-blocks .header-menu {display: none;}
  header.header {height: 64px;}
  .header-logo img {width: 44px; height: 44px;}
  .header-buttons .btn-play {padding: 14px 24px;}
  .header-buttons .btn-bonus img {width: 44px; height: 44px;}
}
@media (max-width: 600px) {
  .header-buttons .btn-bonus img {width: 40px; height: 40px;}
  .header-buttons {gap: 8px;}
  .header-buttons .btn-play {padding: 12px 16px;}
}



/* footer */
footer.footer {padding: 32px 0; background: rgba(6, 24, 14, 1);}
.footer-columns {display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;}
.footer-colmn-title {display: block; background: rgba(18, 83, 64, 1); border-radius: 8px; padding: 8px 16px; color: rgba(255, 255, 255, 1);
  font-weight: bold; font-size: 16px;}
.footer-colmn-info, .footer-colmn-links {margin-top: 12px;}
.footer-colmn-info p {font-size: 14px; color: rgba(232, 232, 232, 1); line-height: 22px;}
.footer-colmn-mail {padding-top: 12px;}
.footer-colmn-mail a {color: rgba(239, 228, 167, 1); font-size: 14px; line-height: 22px;}
.footer-colmn-links {display: flex; flex-direction: column; gap: 12px;}
.footer-colmn-links a {color: rgba(232, 232, 232, 1); font-size: 14px; line-height: 22px; position: relative; padding-left: 20px;}
.footer-colmn-links a:before {background: url(/icon-arrow-footer.svg)no-repeat; background-size: cover; width: 12px; height: 12px; position: absolute; left: 0;
  top: 5px; content: no-open-quote;}

.footer-bottom {display: flex; justify-content: space-between; padding: 20px 12px; border: 1px solid rgba(254, 255, 234, 0.5); border-radius: 12px; 
  margin-top: 20px; margin-bottom: 20px;}
.footer-bottom span {font-size: 14px; color: rgba(232, 232, 232, 1); line-height: 22px;}
.footer-bottom-imgs {display: flex; align-items: center; gap: 20px;}
.footer-copy p {text-align: center; color: rgba(246, 248, 219, 0.5); font-size: 14px; line-height: 22px;}

.scrollToTop {background: rgba(18, 83, 64, 1); border-radius: 50%; width: 30px; height: 30px; display: flex; justify-content: center; align-items: center;
  position: absolute; bottom: 15%; right: 20px; opacity: 0; cursor: pointer;}
.scrollToTop svg {fill: #fff; width: 50%; height: 50%;}

@media (max-width: 1250px) {
  footer.footer {padding: 24px 0;}
  .footer-columns {grid-template-columns: repeat(2, 1fr); gap: 20px 32px;}
  .footer-columns .footer-colmn:nth-child(1) {grid-column: 1/3;}
  .footer-bottom {padding: 18px 12px;}
}
@media (max-width: 750px) {
  .footer-columns {grid-template-columns: 1fr;}
  .footer-columns .footer-colmn:nth-child(1) {grid-column: 1/2;}
  .footer-bottom {flex-direction: column; gap: 16px; align-items: center;}
  .footer-bottom span {text-align: center;}
}




.button-block {
  text-align: center;
  margin: 15px 0;
}

.button-block-btn {
  color: #fff;
  background: #E74A3E;
  box-shadow: 0px 0px 12px 0px rgba(11, 54, 0, 0.16);
  border-radius: 8px;
  padding: 16px 34px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.content-block a {
  color: #E74A3E;
}
/* lists */
.general-ul {display: flex;flex-direction: column; gap: 10px;padding-left: 0;margin-bottom: 20px;}
.general-ol {display: flex;flex-direction: column; gap: 10px;padding-left: 0; counter-reset: counter-ol; position: relative;
  margin-bottom: 20px;}
.general-ul-li { padding-left: 20px;position: relative;}
.general-ul-li::before {background: rgba(40, 40, 40, 1); width: 8px; height: 8px; border-radius: 50%; position: absolute; left: 0;
  top: 8px; content: no-open-quote;}
.general-ol-li {counter-increment: counter-ol; padding-left: 30px; position: relative;}
.general-ol-li::before {background: rgba(40, 40, 40, 1);color: #fff;width: 25px;height: 25px;left: 0px;top: 0px;border-radius: 50%;
  font-size: 16px; line-height: 20px; font-weight: 400; display: flex; align-items: center; justify-content: center; position: absolute;
  content: counter(counter-ol);}

/* table */
.general-table-wrapper {border: 1px solid rgba(239, 228, 167, 1); border-radius: 10px; overflow: hidden; margin-bottom: 20px;}
.general-table {width: 100%; border-collapse: collapse; overflow: hidden;}
.general-thead .general-tr {background: rgba(239, 228, 167, 1);}
.general-tr {background: rgba(254, 255, 234, 1); border: 1px solid rgba(239, 228, 167, 1);}
.general-tr:nth-child(2n) {background: rgba(255, 255, 255, 1);}
.general-td, .general-th {text-align: center; padding: 10px;}
@media (max-width: 1250px) {
  .general-table-wrapper {overflow: auto;}
}

/* faq */
.faq-container {padding-bottom: 20px;}
.faq-item {background:rgba(255, 255, 255, 1); border-radius: 8px; position: relative; margin: 0 auto 20px; border: 1px solid rgba(239, 228, 167, 1);
  transition: 0.4s; padding: 20px 16px;}
.components .faq-question {color: rgba(40, 40, 40, 1); position: relative; padding: 16px 68px 16px 20px; background: rgba(239, 228, 167, 1);
  border-radius: 8px;}
.components .faq-answer {height: 0; overflow: hidden; opacity: 0; z-index: -1;}
.faq-item .icon {height: 32px; width: 32px; position: absolute; right: 25px; top: 25px;}
.faq-item .icon:before {background: rgba(18, 83, 64, 1); content: no-open-quote; height: 8px; position: absolute; right: 16px; top: 29px;  width: 32px;
  transition: transform 0.4s; border-radius: 4px;}
.faq-item .icon:after {background: rgba(18, 83, 64, 1); content: no-open-quote; height: 8px; position: absolute; right: 16px; top: 29px;width: 32px; 
  transition: transform 0.4s; border-radius: 4px; }
.toggle {margin: 0; cursor: pointer; position: absolute; top: 0; left: 0; z-index: 3; width: 100%; height: 100%; opacity: 0;}
.toggle:not(:checked) ~ .icon:before {transform: rotate(180deg);}
.toggle:checked ~ .faq-answer {height: auto;opacity: 1;z-index: 2;padding-top: 12px;}
.toggle:not(:checked) ~ .icon:after { transform: rotate(90deg);}
.toggle:checked ~ .icon:before { background: rgba(18, 83, 64, 1);}
.toggle:checked ~ .icon:after { background: rgba(18, 83, 64, 1);}
@media (max-width: 1250px) {
  .faq-container {padding-bottom: 16px;}
}

/* hero */
.hero {margin-bottom: 16px;}
.hero-inner {background: url(/hero-back.webp)no-repeat; background-size: cover; padding: 47px 0; border-radius: 20px; background-position: 4% center;}
.hero-text {background: rgba(1, 15, 23, 0.8);}
.hero-text h1 {padding: 32px 40px; color: rgba(255, 255, 255, 1); text-align: center;}
@media (max-width: 1250px) { 
    .hero-inner {padding: 28px 0;}
}
@media (max-width: 600px) {
    .hero-text h1 {padding: 32px 16px;}
}

/* topten */
.topten {padding-bottom: 20px;}
.topten-inner {display: grid; grid-template-columns: repeat(2, 1fr);}
.topten-item {display: grid; grid-template-columns: 100px auto; gap: 8px 16px; background: rgba(255, 255, 255, 1);border: 1px solid rgba(239, 228, 167, 1);
    padding: 16px 12px; align-items: center;}
.topten-item-img {grid-column: 1/2; grid-row: 1/3; background: rgba(254, 255, 234, 1); border-radius: 50px;
    border: 1px solid rgba(239, 228, 167, 1); display: flex; align-items: center; height: 100px;}
.topten-item-img img {margin: 0 auto; width: 80px; height: auto; max-height: 70px; }
.topten-item-name {grid-column: 2/3; grid-row: 1/2;}
.topten-item-name span {font-weight: bold;}
.topten-item-text {grid-column: 2/3; grid-row: 2/3;}
.topten-item:nth-child(1) {border-radius: 10px 0 0 0;}
.topten-item:nth-child(2) {border-radius: 0 10px 0 0;}
.topten-item:nth-child(9) {border-radius: 0 0 0 10px;}
.topten-item:nth-child(10) {border-radius: 0 0 10px 0;}
@media (max-width: 1250px) {
    .topten-inner {grid-template-columns: repeat(1, 1fr);}
    .topten-item:nth-child(1) {border-radius: 10px 10px 0 0;}
    .topten-item:nth-child(2) {border-radius: 0 0 0 0;}
    .topten-item:nth-child(9) {border-radius: 0 0 0 0;}
    .topten-item:nth-child(10) {border-radius: 0 0 10px 10px;}
    .topten-item {grid-template-columns: 60px auto;}
    .topten-item-img img {max-height: 50px; }
    .topten-item-img {height: 60px; padding: 8px;}
    .topten {padding-bottom: 16px;}
}
@media (max-width: 600px) {
    .topten-item-img {grid-column: 1/2; grid-row: 1/2;}
    .topten-item-text {grid-column: 1/3; grid-row: 2/3;}
}

/* card */
.card-bonus {background: rgba(239, 228, 167, 1); display: flex; justify-content: space-between; align-items: center; border-radius: 10px; padding: 20px;}
.card-bonus p {font-size: 24px; font-weight: bold;}
.card-bonus button {background: rgba(231, 74, 62, 1); border-radius: 50px; padding: 12px 32px; color: rgba(255, 255, 255, 1); font-size: 18px; 
    font-weight: bold;}
.card-inner {margin-top: 20px;}
.card-top {display: grid; grid-template-columns: 340px 1fr 1fr; gap: 8px;}
.card-top-img {background: rgba(255, 255, 255, 1); border: 1px solid rgba(239, 228, 167, 1); border-radius: 10px; height: auto; padding: 12px; display: flex;
    align-items: center;}
.card-top-img img {margin: 0 auto;}
.card-top-item {background: rgba(255, 255, 255, 1); border: 1px solid rgba(239, 228, 167, 1); border-radius: 10px; padding: 20px;}
.card-top-item span {font-weight: bold;}
.card-top-item ul {margin-top: 16px;}
.card-top-item ul li {position: relative; padding-left: 28px; padding-bottom: 10px; font-size: 16px;}
.card-top-item .advantages li:before {content:''; background: url(/plus.svg)no-repeat; background-size: cover; width: 20px; height: 20px;
  position: absolute; top: 4px; left: 0;}
.card-top-item .disadvantages li:before {content:''; background: url(/minus.svg)no-repeat; background-size: cover; width: 20px; height: 20px;
  position: absolute; top: 4px; left: 0;}
.card-bottom {display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 8px; gap: 8px; padding-bottom: 16px;}
.card-bottom-item {background: rgba(255, 255, 255, 1); border: 1px solid rgba(239, 228, 167, 1); border-radius: 10px; }
.card-bottom-item .card-info {display: flex; border-bottom: 1px solid rgba(239, 228, 167, 1); }
.card-bottom-item .card-info:last-child {border-bottom: none;}
.card-bottom-item .card-info span:nth-child(1) {font-weight: bold; width: 200px; font-size: 16px; line-height: 22px; padding: 16px 12px 16px 24px;}
.card-bottom-item .card-info span:nth-child(2) {width: calc(100% - 200px); font-size: 16px; line-height: 22px; padding: 16px 24px 16px 12px;}

@media (max-width: 1250px) {
    .card-bonus p {font-size: 20px; width: calc(100% - 250px);}
    .card-bonus button {font-size: 16px;}
    .card-top, .card-bottom { grid-template-columns:1fr;}
    .card-top-img {height: 120px;}
    .card-top-img img {max-height: 100px;}
    .card-bottom {gap: 0; padding-bottom: 16px;}
    .card-bottom .card-bottom-item:nth-child(1) {border-radius: 10px 10px 0 0; border-bottom: none;}
    .card-bottom .card-bottom-item:nth-child(2) {border-radius: 0 0 10px 10px;}
}
@media (max-width: 600px) {
    .card-bonus {flex-direction: column; gap: 20px;}
    .card-bonus p { width: 100%; text-align: center;}
    .card-top-item {padding: 16px 12px;}
    .card-bottom .card-bottom-item:nth-child(1) .card-info span:nth-child(1) {padding: 16px 6px 16px 12px;}
    .card-bottom .card-bottom-item:nth-child(1) .card-info span:nth-child(2) {padding: 16px 12px 16px 6px; text-align: right;}
    .card-bottom .card-bottom-item:nth-child(1) .card-info:nth-child(4),
    .card-bottom .card-bottom-item:nth-child(1) .card-info:nth-child(5),
    .card-bottom .card-bottom-item:nth-child(2) .card-info {flex-direction: column;}
    .card-bottom .card-bottom-item:nth-child(2) .card-info span:nth-child(1),
    .card-bottom .card-bottom-item:nth-child(1) .card-info:nth-child(4) span:nth-child(1),
    .card-bottom .card-bottom-item:nth-child(1) .card-info:nth-child(5) span:nth-child(1) {padding: 16px 12px 16px 12px; width: 100%;}
    .card-bottom .card-bottom-item:nth-child(2) .card-info span:nth-child(2),
    .card-bottom .card-bottom-item:nth-child(1) .card-info:nth-child(4) span:nth-child(2),
    .card-bottom .card-bottom-item:nth-child(1) .card-info:nth-child(5) span:nth-child(2) {padding: 0px 12px 16px 12px; width: 100%; text-align: left;}
}

/* slots */
.slots-block {background: rgba(255, 255, 255, 1); border: 1px solid rgba(239, 228, 167, 1); border-radius: 10px; padding: 20px 20px 0 20px; margin-bottom: 20px;}
.slots-top .slots-inner {display: grid; grid-template-columns: repeat(4, 1fr);}
.slots-item {display: flex; padding: 16px 12px; border: 1px solid rgba(239, 228, 167, 1); gap: 16px; background: rgba(255, 255, 255, 1);}
.slots-img img {width: 80px; height: 80px; border-radius: 2px;}
.slots-info {display: flex; flex-direction: column; gap: 12px;}
.slots-item .slots-name {font-weight: bold; font-size: 16px; line-height: 20px;}
.slots-item .slots-rtp {font-size: 16px; line-height: 20px;}
.slots-bottom .slots-inner {display: grid; grid-template-columns: repeat(3, 1fr);}
.slots-bottom {padding-bottom: 20px;}

@media (max-width: 1250px) {
    .slots-top .slots-inner, .slots-bottom .slots-inner {grid-template-columns: repeat(2, 1fr);}
    .slots-img img {width: 60px; height: 60px;}
    .slots-item, .slots-info {gap: 8px;}
    .slots-item .slots-name {font-size: 15px; line-height: 15px;}
    .slots-bottom {padding-bottom: 16px;}
    .slots-block {margin-bottom: 16px;}
}
@media (max-width: 600px) { 
    .slots-img img {width: 44px; height: 44px;}
    .slots-top .slots-inner, .slots-bottom .slots-inner {grid-template-columns: 1fr;}
}

/* twoColumns */
.twoColumns {display: flex; gap: 20px;}
.twoColumns-left {width: 400px;}
.twoColumns-right {width: calc(100% - 400px);}
.twoColumns-left img {border-radius: 10px;}
.twoColumns figure {margin-bottom: 0;}
@media (max-width: 1000px) {
    .twoColumns {flex-direction: column;}
    .twoColumns-left img {margin: 0 auto;}
    .twoColumns-right, .twoColumns-left {width: 100%;}
}

/* marks */
.marks {margin-top: 20px; padding-bottom: 20px;}
.marks-inner {display: grid; grid-template-columns: repeat(2, 1fr);}
.marks-item {background:  rgba(255, 255, 255, 1); border: 1px solid rgba(239, 228, 167, 1); padding: 20px 16px 20px 16px;}
.marks-item-top {display: flex; background: rgba(11, 119, 87, 1); padding: 16px 20px; border-radius: 10px; align-items: center; justify-content: space-between;
    margin-bottom: 16px;}
.marks-item-top img {width: 40px; height: 40px;}
.marks-item-top h3 {width: calc(100% - 56px); color: rgba(255, 255, 255, 1); font-size: 18px; line-height: 28px;}
.marks-item p {font-size: 16px; line-height: 22px;}
.marks-item:nth-child(1) {border-radius: 10px 0 0 0;}
.marks-item:nth-child(2) {border-radius: 0 10px 0 0;}
.marks-item:nth-child(11) {border-radius: 0 0 10px 10px; grid-column: 1/3;}
@media (max-width: 700px) { 
    .marks-item-top {padding: 12px 16px;}
    .marks-item {padding: 16px 12px;}
    .marks-inner {grid-template-columns:1fr;}
    .marks-item:nth-child(11) { grid-column: 1/2;}
    .marks-item:nth-child(1) {border-radius: 10px 10px 0 0;}
    .marks-item:nth-child(2) {border-radius: 0 0px 0 0;}
    .marks {padding-bottom: 16px;}
}

/* steps */
.steps {margin-top: 20px; padding-bottom: 20px;}
.step-item {background: rgba(255, 255, 255, 1); padding: 20px 16px; border: 1px solid rgba(239, 228, 167, 1)}
.step-item-top {display: flex; align-items: center; gap: 16px; background: rgba(239, 228, 167, 1);padding: 12px 16px; border-radius: 8px; margin-bottom: 16px;}
.step-item-number {width: 40px; height: 40px; background: rgba(255, 255, 255, 1); border-radius: 50px; display: flex; align-items: center; justify-content: center;}
.step-item-number span {font-weight: bold; font-size: 20px;}
.step-item-top p {font-weight: bold; font-size: 20px;}
.step-item:first-child {border-radius: 10px 10px 0 0;}
.step-item:last-child {border-radius: 0 0 10px 10px;}
@media (max-width: 1250px) {
  .step-item-number {width: 24px; height: 24px;}
  .step-item-number span {font-size: 16px;}
  .step-item-top p {font-size: 18px; width: calc(100% - 24px);}
}
@media (max-width: 600px) {
  .steps {padding-bottom: 16px;}
  .step-item {padding: 16px 12px;}
}

/* games */
.games {margin-top: 20px; padding-bottom: 20px;}
.games-item {background: rgba(255, 255, 255, 1); padding: 20px 16px; border: 1px solid rgba(239, 228, 167, 1)}
.games-item:first-child {border-radius: 10px 10px 0 0;}
.games-item:last-child {border-radius: 0 0 10px 10px;}
.games-item-top {display: flex; align-items: center; gap: 16px; margin-bottom: 16px;}
.games-item-top img {width: 64px; height: 64px;}
.games-item-top h3 {background: rgba(239, 228, 167, 1); padding: 20px 16px; width: calc(100% - 64px); border-radius: 8px; font-size: 20px;}
@media (max-width: 1250px) { 
  .games-item-top img {width: 44px; height: 44px;}
  .games-item-top h3 {font-size: 18px; width: calc(100% - 44px); padding: 12px 16px;}
  .games {padding-bottom: 16px;}
}

/* single-card */
.single-card {margin-top: 16px; padding-bottom: 20px;}
.single-card-top {display: grid; grid-template-columns: 300px auto; grid-template-rows: 61px 64px auto; gap: 8px; align-items: flex-start;}
.single-card-img {grid-column: 1/2; grid-row: 1/4; height: 300px; }
.single-card-name {grid-column: 2/3; grid-row: 1/2; background: rgba(18, 83, 64, 1); border-radius: 10px;padding: 0 20px; height: 100%; display: flex;
  align-items: center;}
.single-card-bonus {grid-column: 2/3; grid-row: 2/3; height: 100%;}
.single-card-text {grid-column: 2/3; grid-row: 3/4;}
.single-card-name h3 {color: rgba(255, 255, 255, 1); line-height: 26px;}
.single-card-bonus {display: flex; background: rgba(239, 228, 167, 1); padding: 0 20px; gap: 12px; border-radius: 10px; align-items: center;}
.single-card-bonus img {width: 35px; height: 35px;}
.single-card-bonus p {width: calc(100% - 35px); font-weight: bold; font-size: 22px;}
.single-card-text {background: rgba(255, 255, 255, 1); border: 1px solid rgba(239, 228, 167, 1); padding: 20px; border-radius: 10px; height: 100%;}
.single-card-img img {margin: 0 auto; max-height: 100%; border: 1px solid rgba(239, 228, 167, 1); border-radius: 10px;}

.single-card-bottom {display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 8px;}
.single-card-column-item {display: flex; border: 1px solid rgba(239, 228, 167, 1); gap: 16px; padding: 16px 24px; background: rgba(255, 255, 255, 1);}
.single-card-bottom .single-card-column .single-card-column-item:first-child {border-radius: 10px 10px 0 0;}
.single-card-bottom .single-card-column .single-card-column-item:last-child {border-radius: 0 0 10px 10px;}
.single-card-column-item span {font-size: 16px; width: 50%;}
.single-card-column-item .first { font-weight: bold;}

@media (max-width: 1250px) { 
.single-card {padding-bottom: 16px;}
}

@media (max-width: 1050px) { 
  .single-card-text {grid-column: 1/3; grid-row: 4/5;}
  .single-card-top { grid-template-columns: 260px auto; grid-template-rows: 61px auto auto;}
  .single-card-bonus {padding: 12px 20px;}
  .single-card-img {height: 260px;}

  .single-card-bottom { grid-template-columns: auto; gap: 0;}
  .single-card-bottom .single-card-column:nth-child(2) .single-card-column-item:first-child {border-radius: 0px 0px 0 0;}
  .single-card-bottom .single-card-column:nth-child(1) .single-card-column-item:last-child {border-radius: 0px 0px 0 0;}
  .single-card-column-item .first {width: 220px;}
  .single-card-column-item .second {width: calc(100% - 220px);}
}
@media (max-width: 650px) {
  .single-card-top { grid-template-columns: auto; grid-template-rows: auto;}
  .single-card-name {grid-column: 1/2; grid-row: 1/2; padding: 16px 20px;}
  .single-card-bonus {grid-column: 1/2; grid-row: 2/3; flex-direction: column; text-align: center;}
  .single-card-img {grid-column: 1/2; grid-row: 3/4;  margin: 0 auto; height: auto; }
  .single-card-img img {width: 100%; max-width: 300px; height: auto;}
  .single-card-text {grid-column: 1/2; grid-row: 4/5;}
  .single-card-name h3 {text-align: center; width: 100%;}

  .single-card-column-item {padding: 16px 12px;}
  .single-card-column-item .first {width: 60%;}
  .single-card-column-item .second {width: 40%;}
}

/* threeColumns */
.threeColumns {padding-bottom: 20px;}
.threeColumns-inner {display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;}
.threeColumns-item {background: rgba(255, 255, 255, 1); border: 1px solid rgba(239, 228, 167, 1); border-radius: 10px; padding: 20px;}
.threeColumns-item-top {display: flex; margin-bottom: 12px; gap: 16px;}
.threeColumns-item-top img {width: 120px; height: 66px;}
.threeColumns-item-info {display: flex; padding-left: 16px; border-left: 1px solid rgba(239, 228, 167, 1); flex-direction: column; gap: 8px;}
.threeColumns-item-info .name {font-weight: bold;}
.threeColumns-item-info .license {display: flex; gap: 4px; align-items: center;}
.threeColumns-item-info .license img {width: 20px; height: 20px;}
.threeColumns-item-info .license span {font-size: 16px;}
.threeColumns-item-bonus {background: rgba(254, 255, 234, 1); border: 1px solid rgba(239, 228, 167, 1); border-radius: 4px; padding: 0px 12px; height: 84px;
  display: flex; align-items: center; justify-content: center;}
.threeColumns-item-bonus p {font-weight: bold; text-align: center;}
@media (max-width: 1250px) { 
  .threeColumns {padding-bottom: 16px;}
  .threeColumns-inner {grid-template-columns: 1fr;}
  .threeColumns-item-bonus {height: auto; padding: 20px 12px;}
}
@media (max-width: 340px) { 
  .threeColumns-item-top img {width: 85px; height: 47px;}
}

/* showcase */
.showcase_item {background: rgba(18, 83, 64, 1);  border-radius: 15px; margin-bottom: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);}
.showcase_topbar { padding: 10px 20px; border-radius: 15px 15px 0 0; position: relative;}
.showcase_number { background: rgba(239, 228, 167, 1); width: 34px; height: 34px; display: flex; align-items: center;  justify-content: center;
  position: absolute; top: 0; left: 24px; border-radius: 0 0 4px 4px;}
.showcase_number span {color: rgba(10, 38, 17, 1); font-weight: bold; font-size: 18px;} 
.showcase_tag { display: flex;  align-items: center;  gap: 5px; justify-content: center;}
.showcase_tag img {  width: 24px;  height: 24px;}
.showcase_tag span {color: #fff;font-size: 16px; font-weight: bold;}

.showcase_main {display: grid; grid-template-columns: 160px 150px auto 100px 270px; gap: 16px; padding: 24px 24px; align-items: center; 
  border-radius: 15px 15px 0 0; background: rgba(30, 54, 36, 1); border: 1px solid rgba(239, 228, 167, 1)}
.showcase_img { height: 65px;  background: rgba(254, 255, 234, 1);  border-radius: 10px;  display: flex;  justify-content: center;  align-items: center;
  padding: 10px;}
.showcase_img img { margin: 0 auto; max-height: 100%; }
.showcase_name_license { display: flex;  flex-direction: column;  gap: 8px; justify-content: center; align-items: flex-start;}
.showcase_name {color: rgba(255, 255, 255, 1); font-weight: bold; font-size: 16px;}
.showcase_license { display: flex; justify-content: center;  align-items: center;  gap: 4px;}
.showcase_license img {width: 24px; height: 16px;}
.showcase_license  span {color: rgba(255, 255, 255, 1); font-size: 14px; line-height: 18px;}

.showcase_bonus {background: rgba(254, 255, 234, 1); border-radius: 10px; display: flex;  flex-direction: column;  
  justify-content: center;align-items: center;  text-align: center;  gap: 10px; padding: 14px;}
.showcase_bonus .showcase_title { color: rgba(12, 9, 9, 1);  font-size: 14px;}
.showcase_bonus .showcase_value { display: flex; justify-content: center; align-items: flex-start; gap: 10px;}
.showcase_bonus .showcase_value img {width: 21px; height: 21px;}
.showcase_bonus .showcase_value p { color: rgba(12, 9, 9, 1);  font-size: 20px;  font-weight: 700;}

.showcase_rating {display: flex; flex-direction: column; gap: 2px; justify-content: center; align-items: center;}
.showcase_rating_stars {display: flex; align-items: center; gap: 2px;}
.showcase_rating span {color: rgba(255, 255, 255, 1); font-size: 16px;}
.showcase_buttons {  display: flex;  flex-direction: column;  gap: 10px;  align-items: center;}
.showcase_mainbutton, .casino-card__btn { font-size: 16px;  font-weight: 700;  text-align: center;  color: rgba(255, 255, 255, 1);
  background: linear-gradient(90deg, #FE704D 0%, #E74A3E 53.37%, #FE704D 96.63%); width: 100%;  padding: 14px 0px; border-radius: 50px; }
.showcase_extralink {  color: rgba(216, 216, 216, 1);  font-size: 14px;  text-decoration: underline;}
.showcase_extralink:hover { color: rgba(239, 228, 167, 1) ; }

.showcase_bottombar {  background: rgba(239, 228, 167, 1);  display: flex;  justify-content: space-between;  align-items: center;  padding: 8px 24px;
  border-radius: 0 0 15px 15px;}
.showcase_bottombar .showcase_info p {  color: rgba(12, 9, 9, 1);  font-size: 12px; line-height: 16px;}
.showcase_date {  display: flex;  align-items: center;  gap: 4px;}
.showcase_date span {  color: rgba(12, 9, 9, 1);  font-size: 12px;}
@media (max-width: 1250px) { 
  .showcase_main {grid-template-columns: 210px auto 270px;}
  .showcase_bonus {grid-row: 2/3; grid-column: 1/3;}
}
@media (max-width: 850px) { 
  .showcase_main {grid-template-columns: 160px auto 220px;}
  .showcase_bonus .showcase_value p {font-size: 18px;}
}
@media (max-width: 600px) { 
  .showcase_tag span {font-size: 14px;}
  .showcase_number span {font-size: 16px;}
  .showcase_number {width: 21px; height: 24px;}
  .showcase_main {padding: 10px 15px;}
  .showcase_number {left: 15px;}
  .showcase_topbar {padding: 8px 10px;}
  .showcase_main {gap: 15px 10px; grid-template-columns: 1fr 1fr;}
  .showcase_bonus {grid-row: 3/4; grid-column: 1/3; padding: 12px;}
  .showcase_rating {grid-row: 2/3; grid-column: 1/3;}
  .showcase_buttons {grid-row: 4/5; grid-column: 1/3; }
  .showcase_bottombar {padding: 8px 15px; flex-direction: column; align-items: center;}
  .showcase_bottombar .showcase_info p {text-align: center;}
}

@media (max-width: 400px) {
  .showcase_main {grid-template-columns: 150px auto;}
}
@media (max-width: 350px) {
 .showcase_tag span {font-size: 12px;}
}