* {
  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 .wrapper,
main h1,
main h2,
main h3,
main h4,
main h5,
p,
.faq-container,
.general-table-wrapper,
ol.general-ol,
ul.general-ul,
.features-list-parent,
.quote,
.toc-wrapper,
.author,
.banner-home,
.date-main,
.section,
.showcase {
  width: 96%;
  margin: 0 auto;
  max-width: 1280px;
}


main figure {
  margin: 0 auto;
  margin-bottom: 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;
}


.content {
  position: relative;
  flex-grow: 1;
  padding-top: 0px;
}
.content-block {
  padding-top: 120px;
}
.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%;
}

.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;
}


.content404Page.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: rgba(11, 13, 16, 1);
}

.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 {
  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;
}



.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);
  margin-bottom: 20px;
}
.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;
}


/* 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 {
  text-align: center;
}
.footer .footerInner .footerRight .imgs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 20px;
  margin-bottom: 16px;
  justify-content: center;
}
.footer .footerInner .footerRight .imgs img {
  height: 32px;
}
.footer .footerInner .footerRight p,
.footer .copyright {
  font-size: 12px;
  padding-bottom: 0;
  width: 100%;
}

.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;
}

/* 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: 165px;
  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;
  }
}


.general-table {
  border-collapse: collapse;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 100%;
}
.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;
}
@media screen and (max-width: 700px) {
  .general-table-wrapper {
    overflow-x: auto;
  }
}

.features-list-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  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;
}
@media screen and (max-width: 700px) {
  .features-list-wrapper {flex-direction: column;}
}



/* author*/
.author{
  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;
  margin-top: 20px;
  margin-bottom: 20px;
}
.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);
}
@media screen and (max-width: 750px) {
  .author {
    flex-direction: column;
    gap: 18px; 
    padding: 16px;
  }
  .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 {
  overflow: hidden;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color:rgba(255, 255, 255, 0.06);
}
.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);
}


.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;}
.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;}

.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 .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: auto 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: 380px) { 
  .showcaseItemTop {grid-template-columns: auto; }
  .showcaseTop-bonus, .showcaseTop-tag { grid-column: 1/2; }
  .showcaseTop-tag {justify-self: 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; margin-bottom: 20px;}
.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; margin-bottom: 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;}
}

.section{margin-bottom: 20px; padding: 20px 20px 0 20px; border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 19, 24, 1); border-radius: 20px;}
.section p, .section ul, .section ol, .section h2, .section h3, .section h4, .section .quote,
.section .features-list-parent, .section .general-table-wrapper, .section .faq-container {width: 100%;}