* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Geist-Regular';
}
@font-face {
font-family: 'Geist-Regular'; 
src: url(/Geist-Regular.woff2); 
font-display: swap;
}
@font-face {
font-family: 'Geist-Bold'; 
src: url(/Geist-Bold.woff2); 
font-display: swap;
}

html,
body {
  position: relative;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: rgba(11, 13, 16, 1);
}

main p,
main span,
main i,
main b,
main figcaption,
main li,
main a,
table,
tr,
td,
tbody,
thead {
  color: rgba(156, 163, 176, 1);
  font-family: 'Geist-Regular';
  font-size: 14px;
  line-height: 20px;
}

main h1,
main h2,
main h3,
main h4,
main h5 {
  color: rgba(240, 242, 245, 1);
  font-family: 'Geist-Bold';
  padding-bottom: 20px;
  text-align: center;
}
main h1 {
  padding-bottom: 0;
}
/* 
main .general-table-wrapper {
  overflow-x: overlay;
} */

main figure {
  margin: 0 auto;
  margin-bottom: 20px;
}


main .wrapper,
.page-header {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
}

main a {
  text-decoration: none;
  transition: 0.3s;
  color: rgba(251, 191, 36, 1);
}

input,
button {
  font-family: 'Geist-Regular';
  border: none;
  box-shadow: none;
  background: transparent;
}

input {
  outline: none;
}

p {
  padding-bottom: 20px;
}

li {
  list-style: none;
  position: relative;
}

button {
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  opacity: 0.8;
}

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

i {
  font-style: normal;
}



h1 {
  font-size: 24px;
  line-height: 28px;
}

h2 {
  font-size: 20px;
  line-height: 24px;
}

h3 {
  font-size: 18px;
  line-height: 20px;
}

h4 {
  font-size: 16px;
  line-height: 20px;
}

h5,
h6 {
  font-size: 14px;
  line-height: 20px;
}

.page-header {
    margin-top: 134px;
}




main .breadcrumbs.wrapper {
  display: flex;
  align-items: center;
  padding-top: 25px;
  overflow-x: hidden;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
main .breadcrumbs.wrapper a {
  color: rgba(92, 99, 112, 1);
  font-size: 12px;
}
main .breadcrumbs.wrapper a:hover {
  color: rgba(52, 211, 153, 1);
}
main .breadcrumbs.wrapper .last {
  position: relative;
  font-size: 12px;
  color: rgba(156, 163, 176, 1);
}




.content {
  position: relative;
  flex-grow: 1;
  padding-top: 0px;
}

.content-block {
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 20px 20px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
}

.content .general-ol {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
  counter-reset: counter-ol;
  padding-left: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 24px;
  background: #16181D;
}

.content .general-ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  counter-increment: counter-ol;
}

.content .general-ol li::before {
  position: absolute;
  content: counter(counter-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #000;
  background-color: rgba(1, 169, 106, 1); 
  border-radius: 4px;
  top: 0px;
  left: 0px;
  font-size: 12px;
}

.content .general-ul {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 16px;
  background: #16181D;
}

.content .general-ul li {
  position: relative;
  padding-left: 12px;
  padding-bottom: 16px;
}

.content .general-ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  background: rgba(52, 211, 153, 1);
  border-radius: 5px;
}

.pageError {
  min-height: calc(100vh - 70px);
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.imgWrap {
  display: block;
  position: relative;
}

figure {
  margin-bottom: 20px;
  text-align: center;
}

figure span {
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  top: -50%;
}

figcaption {
  color: #1e1e24;
  font-size: 14px;
}

.general-image {
  display: block;
  border-radius: 15px;
  max-height: 500px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;
}

.general-image.vertical {
  max-height: 500px;
  max-width: 70%;
}

.general-image.horizontal {
  max-width: 100%;
}

.general-table {
  border-collapse: collapse;
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  margin: 20px auto;
}

.general-table .general-tr {
  background: rgba(0, 0, 0, 0);
}

.faq-container {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
}
.faq-container .faq-item {
  margin: 0 auto;
  position: relative;
  min-height: 54px;
  margin-bottom: 16px;
  z-index: 5;
  transition: all 0.4s ease;
  padding: 20px 10px 20px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-container .faq-item:hover {
  border-color: #989898;
}
.faq-container .faq-question {
  position: relative;
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 48px;
  text-align: left;
  font-size: 14px;
  font-family: 'Geist-Regular';
}
.faq-container .faq-answer {
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  top: 16px;
}
.faq-container .icon {
  height: 18px;
  position: absolute;
  width: 18px;
  right: 25px;
  top: 24px;
  z-index: 2;
}
.faq-container .icon::before,
.faq-container .icon::after {
  background: rgba(156, 163, 176, 1);
  content: no-open-quote;
  height: 2px;
  right: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  transition: transform 0.4s ease;
}
.faq-container .toggle {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 3;
}
.faq-container .toggle:not(:checked) ~ .icon:before {
  transform: rotate(180deg);
}
.faq-container .toggle:not(:checked) ~ .icon:after {
  transform: rotate(90deg);
}
.faq-container .toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
   padding: 0 24px 20px 24px;
}


.frame {
  width: 640px;
  max-width: 98%;
  margin: 32px auto;
  aspect-ratio: 4/3;
}

.frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.table_of_contents_wrapper {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.table_of_contents {
  max-width: 400px;
  border-radius: 8px;
  border: 1px solid #f28d24;
}

.table_of_contents .toggle {
  display: none;
}

.table_of_contents .lbl-toggle {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #f28d24;
  width: 100%;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.table_of_contents .table_box {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.table_of_contents .toggle:checked + .lbl-toggle + div {
  max-height: 1000px;
  padding: 20px;
  background: #181616;
  border-radius: 8px;
  gap: 20px;
}

.table_of_contents .table_link {
  position: relative;
  padding-left: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}

.table_of_contents .table_link:hover {
  color: #f28d24;
}

.content404Page.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: #fff;
}

.content404Page.wrapper .content404 {
  display: flex;
  flex-direction: column;
  width: 280px;
}

.content404Page.wrapper .content404 img {
  display: block;
  margin: 0 auto;
}

.content404Page.wrapper .content404 h1 {
  color: #000;
}

.content404Page.wrapper .content404 button {
  display: inline-block;
  background: #000000;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  color: #fff;
}

.content404Page.wrapper .content404 button:hover {
  background: #a10000;
}


.button-block {
  padding: 10px 0px;
  text-align: center;
  margin: 10px 0;
  background: linear-gradient(270deg, rgba(52, 211, 153, 0) 5%, rgba(52, 211, 153, 0.08) 49.52%, rgba(52, 211, 153, 0) 95%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.button-block button {
  box-shadow: 0px 2px 16px 0px rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 1);
  padding: 12px 32px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-family: 'Geist-Bold';
  border-radius: 8px;
}

.quote {
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 60px 24px 16px;
  background: #16181D;
}

.quote p {
  width: 100%;
  color: #fff;
  padding-bottom: 0;
}

.quote::after {
  position: absolute;
  content: no-open-quote;
  width: 40px;
  height: 40px;
  background-image: url(/quote-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 16px;
  right: 16px;
}


.reviews {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reviews .review {
  border: 1px solid #000;
  padding: 20px 20px 0 20px;
  border-radius: 20px;
  border-left: 5px solid #df0000;
  margin-bottom: 20px;
  width: 48%;
}

.reviews .review p {
  max-width: 100%;
  width: 100%;
}

.reviews .review .name {
  font-weight: bold;
}

.reviews .review .date {
  color: rgba(0, 0, 0, 0.5);
}

.reviews .review .answer {
  padding-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 0;
  margin-bottom: 20px;
}

.slots-wrapper {
  background: #000;
  margin-bottom: 30px;
}

.slots-wrapper .slots-list {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.slots-wrapper .slots-list .slot {
  position: relative;
  border-radius: 4px;
  width: 300px;
  height: 188px;
  margin: 20px;
}

.slots-wrapper .slots-list .slot .slot-text {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 0;
}

.slots-wrapper .slots-list .slot .slot-text p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  z-index: 3;
  position: relative;
  padding-bottom: 0;
}

.slots-wrapper .slots-list .slot .slot-img {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.slots-wrapper .slots-list .slot .slot-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.slots-wrapper .slots-list .slot .slot-img amp-img {
  object-fit: cover;
}

.slots-wrapper .slots-list .slot .slot-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slots-wrapper .slots-list .slot .slot-back .slot-review {
  padding: 16px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  border-radius: 50px;
  background: #a91704;
  transition: 0.4s;
}

.slots-wrapper .slots-list .slot .slot-back .slot-review:hover {
  background: linear-gradient(135deg, #df0000 0%, #a10000 100%);
}

.slots-wrapper .slots-list .slot .slot-back .toggle {
  display: none;
}

.slots-wrapper .slots-list .slot .slot-back .lbl-toggle {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #df0000;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.slots-wrapper .slots-list .slot .slot-back .lbl-toggle:hover {
  background: linear-gradient(135deg, #df0000 0%, #a10000 100%);
}

.slots-wrapper .slots-list .slot .slot-back .toggle:checked + .lbl-toggle {
  display: none;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box a {
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #df0000;
  width: 48%;
  color: #fff;
  border-radius: 8px;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box button {
  width: 48%;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box button:hover {
  color: #a91704;
  border: 1px solid #a91704;
  background: #fff;
}

.slots-wrapper .slots-list .slot .slot-back .toggle:checked + .lbl-toggle + div {
  max-height: 300px;
  background: #000;
  padding: 20px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 970px) {
  /* main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main ol,
  main ul,
  main figure,
  main .general-table-wrapper,
  main .content,
  main .faq-container {
    width: 100%;
  } */

  main .wrapper,
  .page-header {
    padding: 0;
    width: calc(100% - 32px);
  }

 

  /* h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 10px 0;
  } */

  .general-table .general-tr .general-td {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content .contentMain {
    width: 100%;
  }

  .content .general-ol li,
  .content .general-ul li {
    width: 100%;
  }

  .columns {
    flex-wrap: wrap;
  }

  .columns .column {
    width: 100%;
  }

  .column-p {
    margin-left: 0;
  }

  .button-block button {
    padding: 14px 5px;
  }

  .quote {
    width: calc(100% - 32px);
  }

  .faq-container .faq-item {
    border-radius: 14px;
  }

  .faq-container .faq-question {
    width: 100%;
    padding-left: 20px;
    padding-right: 30px;
  }

  .faq-container .faq-answer {
    width: 100%;
    padding-left: 20px;
  }

  .faq-container .bg-active {
    border-radius: 14px;
  }

  .faq-container .icon {
    right: 15px;
  }
}

@media screen and (max-width: 600px) {
  .reviews .review {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .general-table {
    max-width: 100%;
  }

  .general-table-wrapper {
    max-width: 100%;
  }
}

.banner-home .banner-title span {
  color: #fff;
  font-size: 42px;
  line-height: 51.04px;
  width: 100%;
  text-align: left;
  padding: 0;
}

/* Footer */
.footer {
  padding: 32px;
  background: rgba(17, 19, 24, 1);
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .footerInner {
  display: flex;
  justify-content: space-between;
}
.footer .footerInner .footerLeft {
  width: 100%;
}
.footer .footerInner .footerMenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(8, auto);
  gap: 12px;
}
.footer .footerInner .footerMenu a {
   color: rgba(156, 163, 176, 1);;
}
.footer .footerInner .footerMenu p {
  color: rgba(240, 242, 245, 1);
  padding-bottom: 0;
  margin: 0;
  max-width: 100%;
  margin-bottom: 8px;
}
.footer .footerInner .footerMenu a:hover {
  color: rgba(52, 211, 153, 1);
}
.footer .footerInner .footerRight {
  padding-left: 24px;
  border-left: 1px solid #4d4d4d;
  max-width: 410px;
}
.footer .footerInner .footerRight .imgs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 20px;
  margin-bottom: 16px;
}
.footer .footerInner .footerRight .imgs img {
  height: 32px;
}
.footer .footerInner .footerRight p,
.footer .copyright {
  font-size: 12px;
  padding-bottom: 0;
}

.footer .scrollTop {
  background: rgba(17, 19, 24, 1);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 100px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

@media (max-width: 1050px) {
  .footer {
    padding: 24px 20px;
  }
  .footer .footerInner {
    flex-direction: column;
  }
  .footer .footerInner .footerLeft {
    padding-bottom: 16px;
  }
  .footer .footerInner .footerRight {
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    max-width: 100%;
    border-top: 1px solid #4d4d4d;
  }
  .footer .footerInner .footerMenu {
    gap: 8px;
  }
  .footer .footerInner .footerRight .imgs img {
    height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .footer .footerInner .footerMenu {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-flow: row;
    grid-template-rows: auto;
  }
  .footer .footerInner .footerRight .imgs {
    margin-bottom: 12px;
  }
  .footer .footerInner .footerRight p {
    margin-bottom: 12px;
  }
  .footer .footerInner .footerMenu p.p-mt {
    margin-top: 8px;
  }
}
/* Footer End */


/* Header */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
}
.header .headerInner {
  height: 100%;
}
.header .headerInner .headerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background: linear-gradient(180deg, #0F241F 0%, #0B0E11 50.02%, #102420 100%);
  padding: 0px 20px;
  height: 75px;
  border-radius: 12px;
}
.headerWrapper .logo img {
  width: 75px;
  height: 49px;
}
.buttonsWrapper .mainButton {
  box-shadow: 0px 2px 16px 0px rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 1);
  padding: 12px 32px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-family: 'Geist-Bold';
  border-radius: 8px;
}
.buttonsWrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header .headerInner .toggle {
  width: 28px;
  height: 28px;
  left: 40px;
  top: 4px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 3;
}
.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(1) {
  transform: scaleX(0);
}
.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(2) {
  transform: rotate(45deg);
}
.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(3) {
  transform: rotate(-45deg);
}
.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(4) {
  transform: scaleX(0);
}
.header .headerInner .toggle:checked ~ .menu {
  height: 100%;
  opacity: 1;
  padding-bottom: 40px;
  padding-top: 37px;
}
.header .headerInner .logo a {
  display: block;
}
.header .headerInner .logo .ampLogo {
  position: relative;
}
.header .headerInner .logo .ampLogo button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header .headerInner .menu {
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.3s ease;
}
.header .headerInner .menu ul {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.header .headerInner .menu ul li {
  position: relative;
}
.header .headerInner .menu ul .plusMenu {
  display: none;
}
.header .headerInner .menu ul .plusMenu li {
  position: unset;
  padding-bottom: 6px;
}
.header .plusMenu li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 22px;
}
.header .plusMenu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('/icon-arrow.svg') no-repeat center;
  background-size: contain;
}
.header .headerInner .menu a {
  padding-left: 10px;
}
.header .headerInner .menu ul .plusMenu {
  position: absolute;
  top:20px;
  left: 0;
  background-color: rgba(11, 13, 16, 1);
  width: 300px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.header .headerInner .menu ul li:hover .plusMenu {
  display: block;
}
.header .headerInner .menu a {
  text-align: left;
  color: rgba(156, 163, 176, 1);
  text-transform: uppercase;
  padding-left: 22px;
}
.header .headerInner .menu a:hover {
  color: #fff;
}
.header .headerInner .menu a.active {
  color: #fff;
}
.header .menu > ul > li:has(.plusMenu) > a::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background: url('/icon-arrow-top.svg') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.burger {
  display: none;
  position: relative;
}
.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: rgba(17, 19, 24, 1);
  width: 100%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px 20px;
  transition: right 0.8s;
}
.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}
.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}
.mobileMenu[hidden] {
  right: -200%;
}
.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.mobileMenuLinks a {
  color: rgba(156, 163, 176, 1);;
}
.mobileMenu .mobileMenuLinks ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobileMenu .mobileMenuLinks ul.plusMenu {
  margin-left: 10px;
}
.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;
}

.header .menu > ul > li:has(.plusMenu):hover > a::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 1020px) {
  .header .menu > ul > li:has(.plusMenu) > a::after {
    display: none;
  }
  .header .buttons {
    display: none;
  }
  .header .headerInner .headerWrapper {
    justify-content: space-between;
  }
  .header .headerInner .menu {
    display: none;
  }
  .burger {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .buttonsWrapper .mainButton {
    padding: 0px 12px;
    height: 38px;
  }
  .header .headerInner .headerWrapper {
    padding: 0px 16px;
  }
  .buttonsWrapper .giftButton img {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 360px) {
  .headerWrapper .logo img {
    width: 60px;
    height: 39px;
  }
}



.nav-submenu {
  position: relative;
  height: 100%;
}

.nav-submenu:hover .nav-submenu-list {
  display: flex;
}

.nav-submenu .nav-submenu-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: 55px;
  display: flex;
  align-items: center;
}

.nav-submenu .nav-submenu-list {
  position: absolute;
  background: #000;
  top: 40px;
  left: -10px;
  width: 160px;
  flex-direction: column;
  padding: 10px 10px 0px 10px;
  display: none;
}

.nav-submenu .nav-submenu-list a {
  margin-bottom: 10px;
  margin-right: 0px;
}

@media screen and (max-width: 970px) {
  #mobileMenu .nav-submenu {
    margin-top: 20px;
  }

  #mobileMenu .nav-submenu-link {
    color: #df0000;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    height: auto;
  }

  #mobileMenu .nav-submenu-list {
    display: flex;
    width: 100%;
    left: 0;
    position: relative;
    top: 0;
  }
}


.casinos-date {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  font-size: 12px;
}


.casinos-date span {
  font-weight: 700;
  font-size: 12px;
}
.casinos {
  margin: 0 auto;
  gap: 24px;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  margin-bottom: 20px;
}

.casinos-wrapper {
  background: rgba(17, 19, 24, 1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 20px 24px;
}

.casino {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: #16181D;
  padding: 20px 24px 20px 24px;
  display: grid;
  grid-template-columns: 160px 170px auto 200px;
  align-items: center;
  gap: 20px;
}

.casino .img {
  display: flex;
  justify-content: center;
}

.casino .img span {
  color: #002147;
  font-size: 16px;
  line-height: 28px;
}

.casino .img .img_img {
  width: 160px;
  height: 66px;
  border-radius: 4px;
}

.casino .img .img_img_20bet {
  background: url(/cards/20bet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_verdecasino {
  background: url(/cards/verde.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_powbet {
  background: url(/cards/powbet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_boomerang {
  background: url(/cards/boomerang.webp) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 66px;
  max-width: 160px;
  border-radius: 4px;
}
.casino .img .img_img_divaspin {
  background: url(/cards/divaspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_spinbetter {
  background: url(/cards/spinbetter.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_duospin {
  background: url(/cards/DuoSpin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_leonbet {
  background: url(/cards/leon.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_22bet {
  background: url(/cards/22bet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_starzino {
  background: url(/cards/Starzino_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_kinbet {
  background: url(/cards/KinBet_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_ivibet {
  background: url(/cards/Ivibet_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_betizy {
  background: url(/cards/Betizy_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_naobet {
  background: url(/cards/naobet.png) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
  background-color: #636363;
  border-radius: 5px;
}
.casino .img .img_img_mafiacasino {
  background: url(/cards/mafiacasino.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_casinoinfinity {
  background: url(/cards/casinoinfinity.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_rtbet {
  background: url(/cards/rtbet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_mafia {
  background: url(/cards/mafia.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_beonbet {
  background: url(/cards/beonbet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_robocat {
  background: url(/cards/robocat.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_oceanspin {
  background: url(/cards/oceanspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_oscarspin {
  background: url(/cards/oscarspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_playjonny {
  background: url(/cards/playjonny.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_betovo {
  background: url(/cards/betovo.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_quickwin {
  background: url(/cards/quickwin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
  background-color: #636363	;
  border-radius: 4px;
}

.casino .img .img_img_sportuna {
  background: url(/cards/sportuna.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}


.casino .img .img_img_spinsy {
  background: url(/cards/spinsy.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
  background-color: #636363;
  border-radius: 4px;
}

.casino .img .img_img_cashed {
  background: url(/cards/cashed.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_tikitaka {
  background: url(/cards/TikiTaka_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_goldspin {
  background: url(/cards/Goldspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_mafia {
  background: url(/cards/mafia.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_glitchspin {
  background: url(/cards/Glitchspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_winhero {
  background: url(/cards/Winhero.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_jettbet {
  background: url(/cards/Jettbet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_wishwin {
  background: url(/cards/Wishwin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_fambet {
  background: url(/cards/Fambet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_vicibet {
  background: url(/cards/Vicibet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_herospin {
  background: url(/cards/Herospin.webp) no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_wildsino {
  background: url(/cards/Wildsino.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .rating {
  height: 53px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
  flex-direction: column;
}
.casino .rating .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  color: #fff;
}

.casino .rating img {
  width: 15px;
}

.casino .rating span {
  padding-left: 4px;
  line-height: 14px;
  word-break: break-all;
}
.casino .rating .rating-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.casino .rating .license {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.casino .bonus span {
  text-align: left;
  font-size: 12px;
}

.casino .bonus p {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: rgb(251, 191, 36);
  padding-top: 8px;
  margin: 0;
  padding-bottom: 0;
}

.casino .button {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  text-transform: unset;
}
.casino .button .rezension {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    background: rgba(220, 38, 38, 1);
    border: none;
    width: 100%;
    padding: 14px 24px;
    cursor: pointer;
    transition: 0.4s;
    text-align: center;
    opacity: 1;
    box-shadow: 0px 2px 16px 0px rgba(220, 38, 38, 0.3);
    border-radius: 8px;

}

.casino .button button, .headerWrapper .button button, .main-info .button button, .popup-right button, .general-td button {
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  background: rgba(220, 38, 38, 1);
  border: none;
  width: 100%;
  padding: 14px 24px;
  cursor: pointer;
  transition: 0.4s;
  text-align: center;
  opacity: 1;
  box-shadow: 0px 2px 16px 0px rgba(220, 38, 38, 0.3);
    border-radius: 8px;
}
.casino .button .info-casino {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.casino .button button:hover {
  opacity: 0.8;
}

.more-info {
  display: none;
  margin-top: 16px;
  gap: 17px;
  grid-template-columns: auto 180px 250px;
}
.more-info .info-deposit {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: #16181D;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.more-info .min-dep,
.more-info .max-dep {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: #16181D;
  padding: 12px;
}
.more-info .min-dep .more-info-title,
.more-info .max-dep .more-info-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
  margin: 0;
  padding-bottom: 8px;
  width: 100%;
  color: #fff;
}

.more-info .min-dep span,
.more-info .max-dep span {
  text-align: left;
}

.more-info .info-deposit .more-info-title {
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin: 0;
  padding-bottom: 8px;
}
.more-info .info-deposit span {
  text-align: left;
}

.more-info.visible {
  display: grid;
}
@media (max-width: 1070px) {
  .more-info.visible {grid-template-columns: repeat(2, 1fr);}
  .more-info .info-deposit {grid-column: 1/3;}
  .casino {grid-template-columns: 160px 130px auto;}
  .casino .button {grid-column: 1/4; margin: 0 auto;}
  .casino .button button {max-width: 360px;}
}
@media (max-width: 700px) {
  .casino {grid-template-columns: repeat(2, 1fr);}
  .casino .button, .casino .bonus {grid-column: 1/3;}
  .casino .bonus, .casino .bonus p {text-align: center;}
  .casino .img {justify-content: flex-end;}
  .casinos-wrapper {padding: 16px 16px;}
  .more-info .info-deposit .more-info-title, .more-info .min-dep .more-info-title, .more-info .max-dep .more-info-title {font-size: 12px;}
}
@media (max-width: 450px) {
  .casino {grid-template-columns: 140px auto; gap: 16px;}
  .more-info.visible {grid-template-columns: 1fr;}
  .more-info .info-deposit {grid-column: 1/2;}
}



/*  casino card  */

.casino-info {
  display: grid;
  grid-template-columns: 400px 380px auto;
  gap: 20px;
  margin-bottom: 20px;
}
.main-info, .plus-minus-list, .info-items {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
  padding: 24px;
}
.casino-info .main-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}
.main-info .name-casino, .main-info .bonus-text span, .plus-minus-list span {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  color: rgba(255, 255, 255, 1);
}
.main-info .payment-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.main-info .img-casino  {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 117px;
  max-width: 403px;
  border-radius: 8px;
}
.main-info .img-20bet {
   background-image: url(cards/20bet_card.png);
}
.main-info .img-leonbet {
  background-image: url(cards/leon_card.png);
}
.main-info .img-22bet {
  background-image: url(cards/22bet_card.png);
}
.main-info .img-ivibet {
  background-image: url(cards/ivibet_card.png);
}
.main-info .img-n1bet {
  background-image: url(cards/n1bet_card.png);
}
.main-info .img-naobet {
  background-image: url(cards/naobet_card.webp);
}
.main-info .img-powbet {
  background-image: url(cards/powbet_card.webp);
}
.main-info .img-cashed {
  background-image: url(cards/cashed_card.webp);
}
.main-info .img-leonbet {
  background-image: url(cards/leonbet_card.webp);
}
.main-info .img-betovo {
  background-image: url(cards/betovo_card.webp);
}
.main-info .img-spinbetter {
  background-image: url(cards/spinbeter_card.webp);
}
.main-info .img-duospin {
  background-image: url(cards/duospin_card.webp);
}
.main-info .img-divaspin {
  background-image: url(cards/divaspin_card.webp);
}
.main-info .img-tikitaka {
  background-image: url(cards/tikitaka_card.webp);
}
.main-info .img-betizy {
  background-image: url(cards/betizy_card.webp);
}
.main-info .img-starzino {
  background-image: url(cards/starzino_card.webp);
}
.main-info .bonus-text {
  display: flex;
  flex-direction: column;
  gap: 12px;

}
.main-info .bonus-text p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding-top: 12px;
  padding-bottom: 16px;
  color: rgba(251, 191, 36, 1);
  font-weight: 700;
  font-size: 16px;
}
.plus-minus-list ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.plus-minus-list ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 14px;
  font-size: 14px;
}
.plus-minus-list .items-plus li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  background: rgba(52, 211, 153, 1);
  border-radius: 5px;
}
.plus-minus-list .items-minus li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  background: rgba(214, 99, 100, 1);
  border-radius: 5px;
}
.casino-table {
  border-collapse: separate; 
  border-spacing: 12px 20px; 
}
.casino-table td {
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  vertical-align: middle; 
}
.casino-table td:first-child {
  text-underline-offset: 4px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 1);
}
.casino-info .button button {
  box-shadow: 0px 2px 16px 0px rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 1);
  padding: 12px 32px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-family: 'Geist-Bold';
  border-radius: 8px;
}
.casino-info .button button:hover {
  opacity: 0.8;
}
@media (max-width: 1220px) {
  .casino-info {
    grid-template-columns: 400px auto;
  }
  .casino-info .info-items {
    grid-column: 1/3;
  }
}
@media (max-width: 750px) {
  .casino-info {
    grid-template-columns: 1fr;
  }
  .casino-info .plus-minus-list,
  .casino-info .main-info {
    grid-column: 1/3;
  }
}


 /* .casino-info {
    flex-direction: column;
  }

  .casino-info .main-info, .casino-info .plus-minus-list, .casino-info .info-items {
    max-width: none;
    padding: 12px;
    border-radius: 12px;
  } */




.general-table {
  width: 100%;
  border-collapse: collapse;
}
.general-table th {
  color: rgba(92, 99, 112, 1); 
  padding: 20px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: normal;
}
.general-table th, .general-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.general-table td {
  padding: 10px;
  text-align: left;
  padding: 20px 14px;
}
.general-table tr:nth-child(even) {
  background-color: #16181D; 
}
.general-table-wrapper span {
  text-decoration: underline;
  text-decoration-color: #BEBEBE;
  text-underline-offset: 4px;
  margin-bottom: 20px;
}
.general-table-wrapper ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.general-table-wrapper ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
  font-size: 14px;
  color: #333333;
}




.features-list-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}
.features-list {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.features-list-wrapper .features-pros span,
.features-list-wrapper .features-cons span {
  font-size: 16px;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 1);
}
.features-list .items-plus li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  background: rgba(52, 211, 153, 1);
  border-radius: 5px;
}
.features-list .items-minus li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  background: rgba(214, 99, 100, 1);
  border-radius: 5px;
}
.features-list ul, .features-list ul {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
}
.features-list li {
  padding-left: 12px;
  padding-bottom: 16px;
}


.registration {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
}
.registration .list-items {
  list-style: none; 
  counter-reset: list-counter; 
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 16px 0 16px;
  background: #16181D;
}
.registration  .list-items li {
  counter-increment: list-counter; 
  padding-left: 26px; 
  margin-bottom: 16px;
}
.registration  .list-items li::before {
  content: counter(list-counter); 
  position: absolute;
  left: 0;
  top: 0;
  width: 16px; 
  height: 16px;
  background-color: rgba(1, 169, 106, 1); 
  color: #000; 
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.registration .img-reg {
  max-width: 340px;
}
.registration .img-reg img {
  border-radius: 15px;
  max-height: 400px;
}




.payments-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.payments-image img {
  max-height: 400px;
  width: 100%;
  border-radius: 15px;
}
.payments-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.payment-card {
  background: #fff;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 16px 20px 16px;
  background: #16181D;
}
.payments-title img {
  width: 28px;
  height: 28px;
}

.sports-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  grid-template-rows: repeat(2, auto); 
  gap: 20px; 
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.sport-items, .bonus-items {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 26px;
  background: #16181D;
}
.payments-title span, .sports-title span, .bonus-title h3 {
  color: rgba(255, 255, 255, 1);
  padding-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}
.payment-card p, .sport-items p, .bonus-items p {
  margin-top: 12px;
  padding: 0;
}
.payments-title, .sports-title, .bonus-title {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; 
  justify-items: center; 
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}





.payments-title .img-card {
  width: 44px;
  height: 44px;
}


.bonus-red p, .bonus-red .bonus-title span {
  color: #fff;
}


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


@media screen and (max-width: 970px) {
   .faq-container .faq-question {
    padding-left: 40px;
  }

  .faq-container .faq-question::before {
    left: 10px;
  }
}



@media screen and (max-width: 850px) {
  
  /* .casino-info {
    flex-direction: column;
  }

  .casino-info .main-info, .casino-info .plus-minus-list, .casino-info .info-items {
    max-width: none;
    padding: 12px;
    border-radius: 12px;
  }

  .list-items {
    height: 310px ;
  }

  .list-items li {
    font-size: 14px;
  }

  .plus-minus-list {
    display: flex;
    flex-direction: column;
  } */

  .general-table-wrapper {
    overflow-x: auto;
  }

  .general-table th:nth-child(1), .general-table td:nth-child(1) {
    width: 172px;
  }


  

  .features-list-wrapper {
    flex-direction: column;
  }

  .features-pros {
    margin-right: 0px;
    margin-bottom: 12px;
  }

  .features-list ul {
    height: auto;
  }

  .sports-wrapper {
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(3, auto); 
  }

  .payments-wrapper {
    max-height: none;;
  }

  .payments-title span {
    font-size: 14px;

  }

  .payment-card p {
    font-size: 12px;
  }

 .payments-list {
    flex-direction: column;
  }

  .payments-list {
    grid-template-columns: 1fr; 
}

.payments-image {
    text-align: center;
}

.payments-wrapper {
    grid-template-columns: 1fr; 
    justify-items: center; 
}

.bonuses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
  justify-items: center; 
}

}

@media screen and (max-width: 550px) {
  .registration {
    flex-direction: column;
  }

  .payments-list img {
    max-width: 292px;
  }

  .sports-wrapper {
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(4, auto); 
  }

  .bonuses {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px; 
    justify-items: center; 
  }
  
}

@media screen and (max-width: 360px) {

  .sport-items {
    padding: 5px 10px;
  }

  .casinos{
    padding: 0;
  }

  .casinos-wrapper{
    padding: 18px;
  }

  .casino .button {
    gap: 15px;
  }
}


/* author*/
.author{
  margin: 20px 0px;
  background: rgba(17, 19, 24, 1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.author-img {
  width: 140px;
}
.author .author-img img{
  border-radius: 100px;
}
.author-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(100% - 140px);
}
.author-name{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.author-container .author-name p{
  padding: 0;
  text-transform: uppercase;
  margin: 0;
  width: auto;
  color: rgba(240, 242, 245, 1);
  font-family: 'Geist-Bold';
}
.author-container p{
  padding: 0;
  margin: 0;
}
.author-title{
  display: flex;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  align-items: center;
}

.author-title span{
  color: rgba(52, 211, 153, 1);
  font-size: 12px;
}
.author-title.fact-title span {
  color: rgba(251, 191, 36, 1);
}

/*shortcode author mini*/

.author_mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.author_wrapper, .fact_wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.author_mini .author_wrapper .author-name,
.author_mini .fact_wrapper .author-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.author_mini .author_wrapper .author_photo,
.author_mini .fact_wrapper .author_photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.author_mini .author_wrapper .author-container,
.author_mini .fact_wrapper .author-container {
  gap: 8px;
}

.author_wrapper .author-container .author-name p,
.fact_wrapper .author-container .author-name p {
  font-family: 'Geist-Bold';
}
@media screen and (max-width: 900px) {
  .author_mini {
    grid-template-columns: 1fr; 
  }
  .author_mini .author-name {
    align-items: center;
  }
  .author_mini .author-container {
    text-align: center;
  }
  p.casinos-date {text-align: left;}
}

@media screen and (max-width: 750px) {
  .author {
    flex-direction: column;
    gap: 18px; 
  }
  .author-name {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }
  .author-img {
    width: 80px;
    margin: 0 auto;
  }
  .author-img img {
    width: 80px;
    height: 80px;
  }
  .author-container {
    width: 100%;
  }

}
@media screen and (max-width: 450px) {
  .author_wrapper, .fact_wrapper {flex-direction: column; align-items: center;}
  .author_mini .author_wrapper .author-name, .author_mini .fact_wrapper .author-name {align-items: center;}
  p.casinos-date {text-align: center;}
}
/* author end*/

.toc-wrapper {
  margin: 20px auto;
  overflow: hidden;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color:rgba(255, 255, 255, 0.06);
  width: 100%;
}
.toc-toggle {
  width: 100%;
  text-align: left;
  padding: 17px 0;
  color: rgba(156, 163, 176, 1);
  line-height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.toc-icon {
  width: 20px;
  height: 20px;
}
.toc-content {
  padding: 0 10px 10px 10px;
}
.toc-list {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 1200px;
}
.toc-list li {
  padding: 4px 0;
}
.toc-list a {
  font-size: 12px;
  color: rgba(156, 163, 176, 1);
}
.arrow {
  transition: transform 0.3s ease;
}
.toc-toggle.open .arrow {
  transform: rotate(180deg);
}




#casino-popup { position: fixed;  bottom: 0; left: 0; width: 100%;  display: flex;  justify-content: center;  z-index: 9999; transition: transform 0.5s ease;
  transform: translateY(120%);}
#casino-popup.show { transform: translateY(0);}
.popup-content { display: flex; max-width: 1240px; width: calc(100% - 40px); align-items: center; justify-content: space-between; border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 20px; background: rgba(0, 15, 9, 1); border-radius: 20px 20px 0 0; position: relative;}
.popup-content .popup-left { display: flex; align-items: center; gap: 12px;}
.popup-content .popup-left .popup-logo { width: 130px; height: 52px; padding: 6px; background: #fff; display: flex; justify-content: center; align-items: center;
  border-radius: 8px;}
.popup-content .popup-left .popup-logo img {max-height: 100%;}
.popup-info {  display: flex;  flex-direction: column; gap: 4px;}
.popup-info .casino-name {  font-family: 'Geist-Bold';   font-size: 14px;  color: rgba(255, 255, 255, 1);}
.popup-info .casino-rating { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;  padding: 4px 8px;}
.popup-info .rating-score {font-family: 'Geist-Bold'; font-size: 17px; letter-spacing: -0.5px; line-height: 1; color: #fff;}
.popup-info .rating-score small {font-size: 11px; color: #5c6370;}
.popup-info .stars {display: flex; align-items: center; gap: 1px;}
.popup-info .stars img {width: 11px; height: 10px;}
.popup-content .popup-middle { text-align: center; display: flex; flex-direction: column; gap: 6px;}
.popup-content .popup-middle .bonus-text { font-size: 12px;  color: rgba(156, 163, 176, 1);}
.popup-content .popup-middle .bonus-amount { color: #32BA7C; font-size: 16px; font-family: 'Geist-Bold';}
.popup-close {  position: absolute; top: -16px; right: 16px; background-color: rgba(9, 47, 33, 1); color: #fff; border: none;
  width: 30px; height: 30px; border-radius: 50%; font-size: 18px; font-weight: 700;  cursor: pointer; z-index: 1000; line-height: 1;
  display: flex; align-items: center;  justify-content: center;}
.popup-close:hover { opacity: 0.8;}

@media screen and (max-width: 750px) {
  .popup-content {  flex-wrap: wrap;  flex-direction: row;   align-items: center;}
  .popup-content .popup-left { margin-bottom: 10px;}
  .popup-content .popup-right {  width: 100%;  order: 3;  display: flex;  justify-content: center;}
}
@media screen and (max-width: 550px) {
  .popup-content .popup-left {width: 100%; justify-content: center;}
  .popup-content .popup-middle {width: 100%; padding-bottom: 8px;}
} 




.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.popup {
    position: relative;
    display: flex;
    max-width: 1122px;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #A4A4A4;
    box-shadow: 0 0 2px 16px #0000005c;
    margin: 0 10px;
}

.popup_close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.popup__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.logo_wrapper {
    width: 317px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 72px 36px 53px auto;
}

.popup__left {
  background-image: url('/popup/bg-popup.webp'); 
  background-repeat: no-repeat;
  background-position: 70% 0;
  background-size: cover;
  width: 473px;
}

.popup__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.popup__bundesliga-logo {
    height: 15px;
    width: auto;
}

.popup__title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    padding: 0;
    z-index: 11;
}

.popup__content {
    display: flex;
    gap: 15px;
}

.popup__teams {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.team-logo {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.popup__right {
    flex: 1;
    padding: 85px 32px;
    display: flex;
    flex-direction: column;
    background-color: #010101;
    position: relative;
}

.popup__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -98px;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, #010101 100%);
    pointer-events: none;
    z-index: 1;
}

.popup__promo-text {
    color: #D3D3D3;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 0 0 #5E0000;
}


.popup__offers {
    display: flex;
    gap: 15px;
}

.offer-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2E2E2E;
    border-radius: 4px;
    padding: 12px 8px;
    border: 1px solid #636363;
    justify-content: end;
}

.offer-card__label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-card__logo {
    width: 90%;
    height: 54px;
    background: #636363;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.offer-card__logo img {
    width: 100%;
    height: 54px;
    object-fit: contain;
}

.offer-card__bonus {
    margin-bottom: 10px;
    width: 100%;
}

.offer-card__amount {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.offer-card__btn {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    background: #C70000;
    border: none;
    width: 100%;
    max-width: 137px;
    padding: 8px 24px;
    cursor: pointer;
    transition: 0.4s;
    text-align: center;
    opacity: 1;
    filter: drop-shadow(5px 5px 0 #860000);
}

.offer-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.mobile_btn {
  display: none;
}

@media (max-width: 968px) {
  .popup__left {
        background-position: 55% 0;
        width: auto;
  }

  .popup__promo-text {
    font-size: 18px;
  }

  .offer-card__btn {
    width: 90%;
    max-width: 117px;
    padding: 8px 2px;
  }
}

@media (max-width: 848px) {
    .popup {
        flex-direction: column;
        max-width: 520px;
    }

    .mobile_btn {
      display: block;
    }

    .desctop-btn {
      display: none;
    }

    .offer-card__label {
      display: none;
    }

    .popup__left {
        min-height: 160px;
        background: linear-gradient(#00000052, #00000052), url('/popup/bg-mob.webp');
        width: 100%;
        background-position: -80px 30%;
        background-size: 130%;
        background-repeat: no-repeat;
        display: flex;
        justify-content: end;
    }

    .popup__title {
        font-size: 14px;
    }

    .popup__header {
      gap: 0;
    }

    .popup__bundesliga-logo {
        height: 7px;
    }

    .logo_wrapper {
      width: 70%;
      margin: 10px;
      align-items: center;
    }

    .popup__content {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .popup__teams {
        gap: 6px;
        max-width: 70%;
        justify-content: center;
    }

    .team-logo {
        width: 28px;
        height: 28px;
    }

    .popup__right {
        padding: 16px;
        align-items: center;
    }

    .popup__promo-text {
        font-size: 14px;
        text-align: center;
        padding: 5px 10px;
        margin-bottom: 10px;
    }

    .popup__offers {
        flex-direction: row;
        gap: 10px;
        width: 95%;
    }

    .offer-card {
        align-items: center;
        gap: 10px;
        padding: 0 0 10px;
        min-height: 165px;
        justify-content: space-between;
    }

    .offer-card__label {
        display: none;
    }

    .offer-card__logo {
        width: 100%;
        border-radius: 0;
        margin-bottom: 0;
    }

    .offer-card__logo img {
      border-radius: 0;
    }

    .offer-card__bonus {
        margin-bottom: 0;
    }

    .offer-card__amount {
        font-size: 14px;
    }


    .offer-card__btn {
        width: auto;
        padding: 8px 12px;
        font-size: 12px;
    }
}


@media (max-width: 420px) {
  .popup__right {
    align-items: center;
    padding: 6px 0;
  }

  .popup__left {
      background-size: 170%;
    }

  .offer-card__btn {
    width: auto;
    padding: 6px 9px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .popup__left {
    background-size: 200%;
  }
}

@media (max-width: 350px) {
  .popup__left {
    background-size: 220%;
  }
}




/*views*/

.casino-card {
    display: flex;
    max-width: 1400px;
    margin: 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(17, 19, 24, 1);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 20px;
    gap: 30px;
}

.casino-card__sidebar {
    width: 276px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.casino-card__logo {
    width: 100%;
    height: 134px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    /* background-color: #1c1c1c; */
}

.casino-card__logo img {
    width: 50%;
}

.casino-card__name {
    font-family: 'Geist-Bold';
    color: #fff;
    padding: 0;
    text-align: center;
    margin: 0 0 20px 0;
    display: inline-block;
    width: 100%;
}

.casino-card__rating {
    display: flex;
    background: transparent;
    padding: 12px;
    gap: 7px;
    border-radius: 100px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid rgba(52, 211, 153, 0.2);
    justify-content: center;
    align-items: center;
}

.casino-card__stars {
    display: flex;
    gap: 7px;
}

.casino-card__stars .star {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.casino-card__stars .star.filled {
    filter: none;
}

.casino-card__stars .star.half {
    opacity: 0.7;
}

.casino-card__stars .star.empty {
    filter: grayscale(100%);
    opacity: 0.4;
}

.casino-card__btn {
  box-shadow: 0px 2px 16px 0px rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 1);
  padding: 12px 32px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-family: 'Geist-Bold';
  border-radius: 8px; 
  display: inline-block;
  width: 100%;
}
.casino-card__btn:hover { 
  opacity: 0.85; 
}
.casino-card__score {
    color: rgba(52, 211, 153, 1);;
}
.casino-card__label {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.casino-card__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 16px;
    background: #16181D;
}


.casino-card__tabs {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(17, 19, 24, 1);
    border-radius: 20px;
    flex-wrap: wrap;
}

.casino-card__tab {
    padding: 15px 20px;
    background: none;
    border: none;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.casino-card__tab:hover {
    color: rgba(220, 38, 38, 1);
}

.casino-card__tab.active {
    color: rgba(52, 211, 153, 1);
}
/* 
.casino-card__tab.active::after {
    content: '';
    position: absolute;
    bottom: 11px;
    left: 20px;
    right: 20px;
    height: 11px;
    background: linear-gradient(to top, #01a96a66, #01a96a3d);
    border-radius: 2px 2px 0 0;
} */


.casino-card__content {
    display: none;
    margin-top: 30px;
}

.casino-card__content.active {
    display: block;
}


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

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item__icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-item__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item__label {
    color: #fff;
}



.casino-card__info {
    display: contents; 
}

@media (max-width: 838px) {
    .casino-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .casino-card__main {
      padding: 20px 30px;
    }

    .info-grid {
      gap: 20px;
    }
    
    .casino-card__sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 15px 20px;
        align-items: center;
    }
    
    .casino-card__logo {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        width: 266px;
        height: 134px;
        margin-bottom: 0;
    }
    
    .casino-card__logo img {
        max-width: 230px;
    }
    
    .casino-card__info {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    
    .casino-card__rating {
        width: auto;
        padding: 8px 15px;
        margin: 0 auto;
    }
    .casino-card__name {
      margin: 0;
    }
    .casino-card__label {
        margin-bottom: 0;
    }
    
    .casino-card__btn {
        grid-row: 2 / 3;
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
    }
    
    .casino-card__tabs {
        margin: 15px;
    }
    
    .casino-card__tab {
        padding: 12px 15px;
    }
    
    .casino-card__content {
        padding: 20px 15px;
        margin-top: 0;
    }

    .casino-card__main {
      padding: 10px;
    }
}

@media (max-width: 670px) {
  .casino-card {
        padding: 15px;
        gap: 15px;
    }
    .casino-card__sidebar {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .casino-card__logo {
        width: 100%;
        height: 100px;
    }
    
    .casino-card__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .casino-card__rating {
        justify-content: center;
    }
    
    .casino-card__label {
        font-size: 12px;
        text-align: center;
    }
    
    .casino-card__btn {
        width: 100%;
    }
    .casino-card__main {
        box-shadow: none;
    }
    .casino-card__tabs {
        flex-direction: column;
        margin: 10px;
        padding: 10px;
        gap: 5px;
    }
    
    .casino-card__tab {
        width: 100%;
        text-align: center;
        padding: 4px;
        white-space: normal;
    }
    .casino-card__content {
        padding: 15px 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
    }
}
.showcase {margin-top: 20px;}
.showcaseItem {border: 1px solid rgba(52, 211, 153, 0.2); background: rgba(17, 19, 24, 1); border-radius: 12px; margin-bottom: 20px;
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3); }
.showcaseItemTop {display: grid; grid-template-columns: 200px auto max-content; padding: 12px 20px; border-radius: 12px 12px 0; 
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.08) 0%, rgba(52, 211, 153, 0) 100%); gap: 16px;}
.showcaseTop-left {display: flex; align-items: center; gap: 12px;}
.showcaseTop-left .showcaseNumber {width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800;
  font-size: 14px; color: #000; background: linear-gradient(135deg, #34D399 0%, #10B981 100%);}
.showcaseTop-left .showcaseNameLicense {width: calc(100% - 30px); }
.showcaseNameLicense .brand-name {font-size: 16px; color: rgba(240, 242, 245, 1); font-family: 'Geist-Bold'; letter-spacing: -0.2px; line-height: 1.2;}
.showcaseNameLicense .brand-license {display: flex; gap: 4px; align-items: center;}
.showcaseNameLicense .brand-license span {font-size: 11px; color: #5c6370; white-space: nowrap;}
.showcaseNameLicense .brand-license img {width: 12px; height:12px;}
.showcaseTop-bonus {display: flex; flex-direction: column; align-items: flex-end;}
.showcaseTop-amount {font-size: 17px; font-family: 'Geist-Bold'; color: #fbbf24; letter-spacing: -0.3px; line-height: 1.2;}
.showcaseTop-details {color: #5c6370; font-size: 10px; }
.showcaseTop-tag {display: flex; background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.2); padding: 6px 12px; border-radius: 100px;
  gap: 6px; align-items: center;}
.showcaseTop-tag span {color: rgba(52, 211, 153, 1); line-height: 16.5px; font-size: 11px; font-family: 'Geist-Bold';}
.showcase_tag {display: flex; padding: 6px 12px;  border-radius: 100px;  gap: 6px;  align-items: center; width: max-content; align-self: start;}
.showcase_tags {display: flex; justify-content: flex-end;}

.showcaseItem-body {display: grid; grid-template-columns: 130px auto max-content; gap: 40px; border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 20px;}
.showcaseItem-body .logo-area {display: flex; flex-direction: column; gap: 8px;}
.showcaseItem-body .logo-box { height: 52px; background: rgba(255, 255, 255, 1); box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 6px;}
.showcaseItem-body .logo-box img {max-height: 100%;}
.showcaseItem-body .rating-compact {display: flex; align-items: center; gap: 6px; padding: 4px 8px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; width: 100%; justify-content: center;}
.showcaseItem-body .rating-compact .rating-score {font-family: 'Geist-Bold'; font-size: 17px; letter-spacing: -0.5px; line-height: 1; color: #fff;}
.showcaseItem-body .rating-compact .rating-score small {font-size: 11px; color: #5c6370;}
.showcaseItem-body .stars {display: flex; align-items: center; gap: 1px;}
.showcaseItem-body .stars img {width: 11px; height: 10px;}
.showcaseItem-body .key-stats {display: flex; flex-wrap: wrap; gap: 6px; align-items: flex-start;}
.showcaseItem-body .key-stat {display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; white-space: nowrap;}
.showcaseItem-body .key-stat .ks-label {color: #5c6370; font-family: 'Geist-Bold'; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px;}
.showcaseItem-body .key-stat .ks-value {color: #34d399; font-size: 12px; font-family: 'Geist-Bold';}
.showcaseItem-body .action-col {display: flex; flex-direction: column; gap: 6px;}
.showcaseItem-body .action-col .cta-main {display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px 20px;
  font-family: 'Geist-Bold'; color: #fff; background: rgba(220, 38, 38, 1); box-shadow: 0px 2px 16px 0px rgba(220, 38, 38, 0.3);
  border-radius: 8px;}
.showcaseItem-body .action-col .cta-sub {font-size: 11px; color: #5c6370; font-family: 'Geist-Bold'; text-align: center;}

.feature-chips { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-top: 1px solid rgba(255,255,255,0.06);flex-wrap: wrap;}
.feature-chip { display: inline-flex;  align-items: center;  gap: 7px;  padding: 7px 14px;  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);  border-radius: 8px;  flex-shrink: 0;  transition: all 0.2s;}
.feature-chip:hover {border-color: rgba(52,211,153,0.20);  background: rgba(52,211,153,0.10);}
.feature-chip span {font-size: 12px; font-family: 'Geist-Bold'; color: inherit;}
.feature-chip svg {  width: 15px; height: 15px;  color: #34d399;  flex-shrink: 0;}

.feature-chips.mobile{display: none;}

.details-toggle {  display: flex;  align-items: center;  justify-content: center;  gap: 6px;  padding: 8px 20px;  border-top: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;background: rgba(0,0,0,0.06);}
.details-toggle span { font-size: 11px; font-family: 'Geist-Bold'; color: #5c6370; }
.details-toggle:hover { background: rgba(255,255,255,0.02); }
.details-toggle img { width: 14px; height: 14px; transition: transform 0.3s;  transform: rotate(180deg);}

.payout-row {display: flex;  align-items: center;  gap: 16px;  padding: 12px 20px;  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(52,211,153,0.02); flex-wrap: wrap;}
.payout-chip { display: flex; align-items: center; gap: 5px;  }
.payout-chip span {font-size: 12px; font-family: 'Geist-Bold';}
.payout-chip .pc-label { color: #5c6370; }
.payout-chip .pc-val { color: #f0f2f5; }
.payout-chip .pc-val.marked { color: #34d399; }
.payout-chip-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.06); }

.payments-row { display: flex; align-items: center; gap: 6px; padding: 10px 20px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.payments-label { text-transform: uppercase; letter-spacing: 0.6px; color: #5c6370; margin-right: 4px; white-space: nowrap; font-size: 12px; }
.pay-chip { padding: 3px 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; 
  color: #5c6370; white-space: nowrap; font-size: 12px; }
ul.Zahlungen {display: flex; gap: 6px;}

.card-footer { display: flex; align-items: center; justify-content: center; padding: 10px 20px; border-top: 1px solid rgba(255,255,255,0.06); 
  background: rgba(0,0,0,0.08); }
.card-footer-items { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.card-footer-items span { font-size: 12px; color: #5c6370; }

.card-details { height: 0; opacity: 0; overflow: hidden; transition: 0.4s}
.card-details.expanded {height: auto; opacity: 1;}

@media (max-width: 750px) {
  .showcaseItemTop {grid-template-columns: 1fr max-content; padding: 12px 16px; gap: 8px;}
  .showcaseTop-bonus { order: 1; grid-column: 1/3; text-align: center; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.06); 
    padding-top: 8px;}

  .showcaseItem-body {grid-template-columns: 1fr; gap: 14px; padding: 12px 16px;}
  .showcaseItem-body .logo-area {display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;}
  .showcaseItem-body .key-stats {justify-content: center;}
  .showcaseItem-body .action-col button {max-width: 500px; margin: 0 auto;}

  .feature-chips.mobile{display: flex;}
  .feature-chips {display: none;}
  
}
@media (max-width: 400px) { 
  .showcaseItemTop {grid-template-columns: auto; }
  .showcaseTop-bonus, .showcaseTop-tag { grid-column: 1/2; }
  .showcaseTop-tag {justify-self: start;}
  .showcase_tags {justify-content: flex-start;}
  .showcaseItem-body .rating-compact {flex-direction: column; gap: 0;}
}

.quick-filters {display: flex; margin-top: 24px; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.quick-filters .filter-btn {border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 100px; padding: 8px 16px; transition: all 0.2s; cursor: pointer;
  flex-shrink: 0;}
.quick-filters .filter-btn span {font-size: 12px; font-family: 'Geist-Bold'; color: rgba(92, 99, 112, 1);}
.quick-filters .filter-btn:hover {border: 1px solid rgba(255,255,255,0.10); background: #181b22;}
.quick-filters .filter-btn:hover span {color: #9ca3b0;}
.quick-filters .filter-btn.active {background: rgba(52,211,153,0.10); border: 1px solid #34d399;}
.quick-filters .filter-btn.active span {color: #34d399;}

@media (max-width: 980px) { 

}

.date-main {margin-top: 20px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap;}
.date-item {display: flex; align-items: center; gap: 6px;}
.date-item .dot {width: 6px; height: 6px; border-radius: 50%; background: rgba(52, 211, 153, 1);}
.date-item .info {color: rgba(92, 99, 112, 1); font-size: 12px;}
.date-item .value {color: rgba(156, 163, 176, 1); font-size: 12px; font-family: 'Geist-Bold';}


.banner-home {border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 20px;}
.banner-home-wrapper {display: flex;}
.banner-home-right {width: 600px;}
.banner-home-right img {border-radius: 0 20px 20px 0;}
.banner-home-left {width: calc(100% - 600px); padding: 32px 24px 0 24px;}
.banner-home-left h2 {color: rgba(52, 211, 153, 1); text-align: left;}
.banner-home-left p {padding-bottom: 0;}
@media (max-width: 1180px) {
  .banner-home-wrapper {flex-direction: column; padding: 20px; gap: 16px;}
  .banner-home-left {width: 100%;padding: 0px 0px;}
  .banner-home-right {width: 100%; max-width: 600px; margin: 0 auto;}
  .banner-home-left h2 {text-align: center;}
  .banner-home-right img {border-radius: 20px 20px;}
}


.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.cmp-table th { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.cmp-table td { font-weight: 500; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover { background: rgba(255,255,255,0.015); }
.cmp-table .pos { color: #34d399; font-weight: 600; }
.cmp-table .neg { color: #f87171; opacity: 0.85; }