@import url(mainstyle.css);

* {
  font-family: var(--primefont);
}

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

[data-logo="dark"] {
  display: block;
}

[data-logo="light"] {
  display: none;
}
#btnSwitch {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* icon BG */
.icon-bg {
  min-width: 35px;
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--icon-text) !important;
  background-color: var(--icon-bg) !important;
}

.icon-xl {
  min-width: 80px !important;
  min-height: 80px !important;
  background-color: var(--icon-alt-bg) !important;
}

.circle-icon-lg {
  min-width: 80px;
  min-height: 80px;
}

.offcanvas {
  height: 100vh;
}
.head-content {
  width: 720px;
  margin-left: auto;
  max-width: 100%;
  text-align: center;
}
/* dropdown */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.dropdown-menu {
  background: var(--head-bg) !important;
  border: 1px solid var(--light-border) !important;
}
.dropdown-item {
  color: var(--para-text) !important;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--prime-bg) !important;
  color: var(--white-text) !important;
}
.dropdown-item.active,
.dropdown-item:active {
  background: var(--prime-bg) !important;
  color: var(--white-text) !important;
}
header {
  transition: 0.2s ease;
  z-index: 9999;
}
header.fix {
  background-color: var(--head-bg) !important;
  position: fixed !important;
}

header.fix .nav-link {
  color: var(--head-text) !important;
}

header.fix .nav-link.active {
  color: var(--prime-text) !important;
}
/* header CSS */
.nav-link {
  color: var(--nav-text);
  font-weight: 500;
}
.nav-item.active .nav-link,
.nav-item:hover .nav-link,
.nav-item:hover {
  color: var(--nav-alt-text) !important;
}
@media (max-width: 991px) {
  .offcanvas-body {
    background-color: var(--head-bg);
  }
  .nav-link {
    color: var(--head-text);
  }
}

.theme-switch-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/hero-banner.webp") no-repeat top/cover;
  min-height: 857px;
  display: flex;
  align-items: center;
}
.banner-content {
  max-width: 900px;
  width: 100%;
  color: var(--white-text);
}

.win-upto {
  margin-top: -4%;
}
.win-upto h2 {
  letter-spacing: 1px;
}
/* Digit boxes */
.digit-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 90px;
  background: #111;
  border: 2px solid var(--second-border);
  border-radius: 10px;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white-text);
  box-shadow: 0 0 10px rgba(154, 66, 212, 0.6);
  transition: 0.2s ease-in-out;
}

/* Hover effect */
.digit-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 16px rgba(182, 58, 187, 0.9);
}

/* Responsive */
@media (max-width: 992px) {
  .digit-box {
    width: 55px;
    height: 70px;
    font-size: 2.5rem;
  }
  .hero-banner,
  .review-banner {
    min-height: 657px;
  }
  .fs-8 {
    font-size: 35px;
  }
  .banner-section {
    min-height: 450px;
  }
   .faq-container1{
  columns: 1 !important;
 }
 .contact-image-container img{
  max-height: 400px !important;
 }
}
/* counter animation */
.digit-box {
  position: relative;
  overflow: hidden;
}

.roll {
  animation: rollDigit 2s ease-out forwards;
}

@keyframes rollDigit {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  50% {
    transform: translateY(20%);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .digit-box {
    width: 55px;
    height: 65px;
    font-size: 1.8rem;
  }

  .win-upto h2 {
    font-size: 2.8rem !important;
  }

}

.service-card {
  background: var(--card-alt-bg);
  border-radius: 10px;
  padding: 25px;
  color: var(--white-text);
  min-height: 380px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--second-border);
}

.card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 75px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--second-text);
  opacity: 0.6;
}

.top-winners-header {
  background: linear-gradient(90deg, #b63abb, #d274ff);
  border-radius: 8px;
}
.jackpot-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  min-height: 280px;
}

.jackpot-img img {
  transition: all 0.4s ease;
}

/* Overlay */
.jackpot-img::after {
  content: "Play Now";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: var(--prime-text);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
  border-radius: 12px;
}

.jackpot-img:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}
.jackpot-img:hover::after {
  opacity: 1;
  transform: scale(1);
}
.about-card {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.image-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
  transition: 0.3s ease;
}
.image-container:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.spin-image img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  object-position: center;
}
.review-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/review-image.webp") no-repeat center/cover;
  min-height: 857px;
  display: flex;
  align-items: center;
}
.review-container {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}
/* Give slides some visible style */
.testimonial-img {
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 50%;
  border: 1px solid #111;
  overflow: hidden;
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-image-container img {
  width: 100%;
  max-height: 725px;
  height: 100%;
  object-fit: cover;
}
.footer-bg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/footer-bg.webp") no-repeat top/cover;
  min-height: 670px;
}
.game-img {
  width: 94px;
  min-height: 94px;
  height: 100%;
}
.game {
  transition: all 0.5s ease;
}
.game:hover {
  color: var(--prime-text);
}
.contat-icon {
  width: 94px;
  min-height: 94px;
  overflow: hidden;
  height: 100%;
}
.form-control::placeholder {
  color: var(--para-text);
  text-transform: capitalize;
}
.form-control:focus {
  border: 1px solid var(--prime-border);
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}
#backtotop {
  position: fixed;
  bottom: 80px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  min-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  height: 50px !important;
}
.error {
  color: red;
  text-transform: capitalize;
}
.alertmsg {
  z-index: 9999999;
}

/* ############### About Page ##############*/
.banner-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/banner-image.webp") no-repeat top/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  
}
.story-image-container {
  max-height: 450px;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 16px;
}
.story-image-container img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.player-image {
  position: relative;
  max-width: 450px;
  max-height: 450px;
  border-radius: 50%;
  padding: 10px;
}
.player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.player-image::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: url("../../assets/images/player-2.webp") no-repeat center;
  background-size: cover;
  top: 30px;
  right: 20px;
  z-index: 999;
  animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.review-block {
  max-width: 280px;
  width: 100%;
  background: var(--prime-bg);
  position: absolute;
  bottom: 3%;
  left: -5%;
  animation: floatLeftRight 4s ease-in-out infinite;
}
@keyframes floatLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(0);
  }
}
/* rating */
.star-rating {
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
}

.star {
  position: relative;
  display: inline-block;
  color: #ccc;
}

.star:before {
  content: "★";
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  color: gold;
}

.star.filled:before {
  width: 100%;
}

.star.half:before {
  width: 50%;
}
.reviewer {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
}
.reviewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.blog-content{
  max-width: 450px;
  margin-top: -208px;
  position: relative;
}
.blog-image-container {
  overflow: hidden;   /* important */
  border-radius: 8px;
}
@media(max-width:767px){
.blog-content{
  max-width: 100% !important;
  width: 100% !important;
  margin-top: -185px;
  position: relative;
}
  .fs-8 {
    font-size: 28px;
  }
}
.blog-image-container img {
  transition: transform 0.5s ease;
}

.blogs-container:hover .blog-image-container img {
  transform: scale(1.08) rotate(2deg);
}
.news-card .news-image {
  width: 140px;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-card .news-image img {
  width: 100%;
  object-fit: cover;   
  object-position: center;
}

/* Image Zoom Effect */
.blog-coustm-card .image-container {
  overflow: hidden;
  border-radius: 8px;
}

.blog-coustm-card .image-container img {
  transition: transform 0.4s ease;
}

.blog-coustm-card:hover .image-container img {
  transform: scale(1.08);
}

/* ############## FAQ Page ###############*/
.accordion-button:not(.collapsed) {
    color: var(--prime-text) !important;
    font-weight: 600;
    box-shadow: none !important;
  }
  .accordion-button:focus{
    box-shadow: none !important;
  }
  .accordion-item {
    color: var(--bs-accordion-color);
    background-color: unset !important;
    border: none !important;
    border-bottom: 1px solid var(--light-border) !important;
    border-radius: 0px !important;
    margin-bottom: 25px ;
}
.accordion-button::after {
   background-image: unset !important;
}
.accordion-button::after {
  display: none;
}

  .faq-icon {
      margin-left: auto;
      font-size: 18px;
      transition: transform 0.3s ease-in;
  }
 
  .accordion-button:not(.collapsed) .faq-icon {
      transform: rotate(180deg);
  }
  
 .faq-container1{
  columns: 2;
 }
 .faq-container1 li {
  break-inside: avoid;
}

/* Header nav links fix */
.navbar .nav-link,
.navbar .nav-link:visited,
.navbar .nav-link:focus,
.navbar .nav-link:active {
  color: var(--nav-text) !important;
  outline: none;
  box-shadow: none;
}

.navbar .nav-item.active .nav-link,
.navbar .nav-link:hover,
.navbar .nav-link:focus:hover {
  color: var(--nav-alt-text) !important;
}


.navbar .nav-link.current-link {
  color: var(--nav-alt-text) !important;
}

/* top games section */
.top-games-section {
  position: relative;
  overflow: hidden;
}

.top-games-text {
  max-width: 760px;
}

.top-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.top-game-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card-alt-bg);
  border: 1px solid var(--second-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.top-game-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.top-game-card:hover {
  transform: translateY(-8px);
  border-color: var(--prime-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.top-game-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

.top-game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.62) 60%,
    rgba(0, 0, 0, 0.78) 100%
  );
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.top-game-card:hover .top-game-overlay,
.top-game-card:focus .top-game-overlay,
.top-game-card:focus-visible .top-game-overlay {
  opacity: 1;
  visibility: visible;
}

.top-game-overlay .btn {
  min-width: 150px;
  text-align: center;
  pointer-events: none;
}

/* tablet */
@media (max-width: 1199px) {
  .top-games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* mobile / small tablet */
@media (max-width: 767px) {
  .top-games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .top-game-card {
    border-radius: 16px;
  }

  .top-game-overlay .btn {
    min-width: auto;
    padding: 10px 14px !important;
    font-size: 13px;
  }
}

/* small mobile */
@media (max-width: 575px) {
  .top-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-content-wrap {
  position: relative;
  z-index: 2;
}

.about-subtitle {
  font-size: 28px;
  line-height: 1.2;
  color: var(--head-text);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--secondfont);
}

.about-feature-boxes {
  display: grid;
  gap: 18px;
}

.about-feature-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: var(--card-alt-bg);
  border: 1px solid var(--second-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--prime-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.about-feature-icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--prime-bg), var(--second-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-text);
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.about-feature-text h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--head-text);
  font-weight: 700;
  font-family: var(--secondfont);
}

.about-feature-text p {
  margin: 0;
  color: var(--para-text);
  font-size: 16px;
  line-height: 1.7;
}

.about-text-block {
  padding: 24px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  position: relative;
}

.about-text-block::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 4px;
  height: 80%;
  background: linear-gradient(180deg, var(--prime-bg), var(--second-bg));
  border-radius: 10px;
  opacity: 0.6;
}

.about-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--second-border);
  background: var(--card-alt-bg);
  color: var(--white-text);
  font-weight: 600;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-highlight-item:hover {
  transform: translateY(-3px);
  border-color: var(--prime-border);
}

.about-highlight-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--prime-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-text);
  font-size: 18px;
}

.about-media-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  position: relative;
}

.about-media-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--second-border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  background: var(--card-alt-bg);
}

.about-media-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: auto;
}

.about-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 1;
}

.about-decor-one {
  width: 180px;
  height: 180px;
  top: 30px;
  left: 20px;
  background: rgba(182, 58, 187, 0.22);
}

.about-decor-two {
  width: 220px;
  height: 220px;
  right: 10px;
  bottom: 40px;
  background: rgba(210, 116, 255, 0.16);
}

.about-overlay-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 270px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(10, 14, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(10px);
}

.about-overlay-card i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--prime-bg), var(--second-bg));
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about-overlay-card strong {
  display: block;
  color: var(--white-text);
  font-size: 16px;
  margin-bottom: 4px;
}

.about-overlay-card span {
  display: block;
  color: var(--para-text);
  font-size: 14px;
  line-height: 1.5;
}

.about-overlay-card-top {
  top: 24px;
  left: 24px;
}

.about-overlay-card-bottom {
  right: 24px;
  bottom: 24px;
}

.about-extra-grid {
  display: grid;
  gap: 16px;
}

.about-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-extra-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.about-extra-item i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--prime-bg), var(--second-bg));
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about-extra-item strong {
  display: block;
  font-size: 16px;
  color: var(--white-text);
  margin-bottom: 4px;
}

.about-extra-item span {
  font-size: 14px;
  color: var(--para-text);
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .about-overlay-card-top {
    left: 10px;
  }

  .about-overlay-card-bottom {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .about-media-card {
    max-width: 100%;
  }

  .about-overlay-card {
    max-width: 240px;
    padding: 14px 16px;
  }

  .about-overlay-card-top {
    top: 16px;
    left: 16px;
  }

  .about-overlay-card-bottom {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 767px) {
  .about-subtitle {
    font-size: 24px;
  }

  .about-feature-box {
    padding: 16px;
  }

  .about-feature-text h3 {
    font-size: 18px;
  }

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

  .about-media-card {
    border-radius: 22px;
    overflow: visible;
  }

  .about-overlay-card {
    position: relative;
    max-width: 100%;
    margin-top: 14px;
  }

  .about-overlay-card-top,
  .about-overlay-card-bottom {
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }
}


/* Benefits Section */
.benefits-section {
  position: relative;
  overflow: hidden;
}

.benefits-intro {
  max-width: 860px;
}

.benefit-card {
  height: calc(50% - 12px);
  min-height: 255px;
  padding: 28px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-card + .benefit-card {
  margin-top: 24px;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.benefit-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--prime-bg), var(--second-bg));
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.benefit-card h3 {
  font-size: 28px;
  line-height: 1.2;
  color: var(--head-text);
  margin-bottom: 14px;
  font-weight: 700;
  font-family: var(--secondfont);
}

.benefit-card p {
  margin: 0;
  color: var(--para-text);
  font-size: 16px;
  line-height: 1.75;
}

.benefit-featured-card {
  position: relative;
  height: 100%;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(210, 116, 255, 0.14), transparent 38%),
    radial-gradient(circle at bottom left, rgba(182, 58, 187, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.30);
}

.benefit-featured-inner {
  position: relative;
  z-index: 2;
  padding: 34px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-featured-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--prime-text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.benefit-featured-card h3 {
  font-size: 34px;
  line-height: 1.15;
  color: var(--head-text);
  margin-bottom: 14px;
  font-weight: 700;
  font-family: var(--secondfont);
}

.benefit-featured-card p {
  color: var(--para-text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 14px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white-text);
  font-size: 15px;
  line-height: 1.5;
}

.benefit-list li i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--prime-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.benefit-featured-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.benefit-featured-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
}

.benefit-featured-glow-one {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -20px;
  background: rgba(210, 116, 255, 0.14);
}

.benefit-featured-glow-two {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: -20px;
  background: rgba(182, 58, 187, 0.10);
}

@media (max-width: 991px) {
  .benefit-card {
    height: auto;
    min-height: auto;
  }

  .benefit-featured-card {
    min-height: auto;
  }

  .benefit-featured-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .benefit-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .benefit-card h3 {
    font-size: 24px;
  }

  .benefit-featured-inner {
    padding: 28px 22px;
  }

  .benefit-featured-card h3 {
    font-size: 28px;
  }
}


/* Promo Banner Section */
.promo-banner-section {
  position: relative;
}

.promo-banner-box {
  position: relative;
  padding: 60px 50px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(210,116,255,0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(182,58,187,0.14), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  overflow: hidden;
}

.promo-banner-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(210,116,255,0.25), transparent 70%);
  filter: blur(20px);
}

.promo-banner-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--prime-text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.promo-banner-content h2 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--head-text);
  font-family: var(--secondfont);
}

.promo-banner-content p {
  font-size: 16px;
  color: var(--para-text);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 520px;
}

.promo-banner-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.promo-banner-media img {
  max-width: 100%;
  animation: promoFloatImage 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@keyframes promoFloatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
  .promo-banner-box {
    padding: 40px 30px;
  }

  .promo-banner-content h2 {
    font-size: 34px;
  }

  .promo-banner-media {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .promo-banner-content h2 {
    font-size: 28px;
  }

  .promo-banner-content p {
    font-size: 15px;
  }
}

/* Rewards / Bonuses Section */
.rewards-section {
  position: relative;
  overflow: hidden;
}

.section-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--prime-text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.section-intro {
  max-width: 860px;
  color: var(--section-text);
  font-size: 17px;
  line-height: 1.75;
}

.rewards-panel {
  position: relative;
  padding: 32px 30px;
  border-radius: 26px;
  border: 1px solid var(--section-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.rewards-panel-primary::before,
.rewards-panel-highlight::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
}

.rewards-panel-primary::before {
  top: -80px;
  right: -60px;
  background: rgba(210, 116, 255, 0.15);
}

.rewards-panel-highlight::before {
  bottom: -80px;
  left: -60px;
  background: rgba(182, 58, 187, 0.18);
}

.rewards-panel-top {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.panel-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--prime-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
}

.rewards-panel h3 {
  position: relative;
  z-index: 2;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white-text);
  font-family: var(--secondfont);
  font-weight: 700;
}

.rewards-panel p {
  position: relative;
  z-index: 2;
  color: var(--section-text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--section-text-strong);
  font-size: 15px;
  line-height: 1.55;
}

.feature-list-item i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--prime-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}

.welcome-offer-box {
  position: relative;
  z-index: 2;
  margin: 24px 0;
  padding: 24px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(135deg, var(--prime-bg), var(--second-bg));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.welcome-offer-value {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  color: var(--white-text);
  margin-bottom: 10px;
}

.welcome-offer-details {
  font-size: 18px;
  line-height: 1.5;
  color: var(--white-text);
  font-weight: 600;
}

.offer-note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--section-text-strong);
  font-size: 15px;
  line-height: 1.65;
}

.offer-card {
  height: 100%;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid var(--section-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.offer-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--prime-text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
}

.offer-card h4 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--white-text);
  font-family: var(--secondfont);
  font-weight: 700;
}

.offer-value {
  margin-bottom: 14px;
  color: #ffd86b;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.offer-card p {
  margin: 0;
  color: var(--section-text);
  font-size: 15px;
  line-height: 1.75;
}

.rewards-footnote small {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .rewards-panel h3 {
    font-size: 30px;
  }

  .welcome-offer-value {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .rewards-panel,
  .offer-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .rewards-panel h3 {
    font-size: 27px;
  }

  .welcome-offer-value {
    font-size: 38px;
  }

  .welcome-offer-details {
    font-size: 16px;
  }

  .offer-card h4 {
    font-size: 21px;
  }
}

/* Global dark-theme text readability fix */
:root {
  --section-text: rgba(255, 255, 255, 0.76);
  --section-text-strong: rgba(255, 255, 255, 0.88);
  --section-border: rgba(255, 255, 255, 0.08);
}

/* Base readable text across dark sections */
.para-text,
.about-feature-text p,
.about-text-block p,
.benefit-card p,
.benefit-featured-card p,
.promo-banner-content p,
.offer-card p,
.rewards-panel p,
.section-intro {
  color: var(--section-text);
}

/* Stronger text for lists and emphasized copy */
.about-highlight-item,
.feature-list-item,
.benefit-list li,
.offer-note,
.loyalty-list li {
  color: var(--section-text-strong);
}

/* Keep headings clear */
.head-text,
.head-alt-text,
.about-subtitle,
.about-feature-text h3,
.benefit-card h3,
.benefit-featured-card h3,
.promo-banner-content h2,
.rewards-panel h3,
.offer-card h4 {
  color: var(--white-text);
}

/* Games Showcase Section */
.games-showcase-section {
  position: relative;
  overflow: hidden;
}

.games-showcase-badge,
.games-sub-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--prime-text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.games-showcase-intro,
.games-category-intro {
  max-width: 900px;
  color: var(--section-text);
  font-size: 17px;
  line-height: 1.8;
}

.games-category-title {
  font-size: 38px;
  line-height: 1.2;
  color: var(--white-text);
  font-family: var(--secondfont);
  font-weight: 700;
  margin-bottom: 14px;
}

/* Main cards */
.games-showcase-card {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--section-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.games-showcase-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.4;
}

.games-showcase-card-primary::before {
  top: -70px;
  right: -70px;
  background: rgba(210, 116, 255, 0.16);
}

.games-showcase-card-secondary::before {
  bottom: -80px;
  right: -40px;
  background: rgba(255, 216, 107, 0.12);
}

.games-showcase-card-highlight::before {
  top: -60px;
  left: -70px;
  background: rgba(71, 226, 255, 0.14);
}

.games-showcase-card-top {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.games-card-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--prime-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
}

.games-showcase-card h3 {
  position: relative;
  z-index: 2;
  font-size: 32px;
  line-height: 1.18;
  color: var(--white-text);
  font-family: var(--secondfont);
  font-weight: 700;
  margin-bottom: 0;
}

.games-showcase-card p {
  position: relative;
  z-index: 2;
  color: var(--section-text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Stats */
.games-stat-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.games-stat-box {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.games-stat-number {
  display: block;
  margin-bottom: 6px;
  color: #ffd86b;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}

.games-stat-label {
  display: block;
  color: var(--section-text-strong);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

/* Stack */
.games-showcase-stack {
  display: grid;
  gap: 24px;
  height: 100%;
}

/* Inline features */
.games-inline-features {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.games-inline-features span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--section-text-strong);
  font-size: 15px;
  line-height: 1.6;
}

.games-inline-features i {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--prime-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.games-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.games-category-card {
  position: relative;
  padding: 30px 24px 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.06), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.games-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.02) 40%, transparent 70%);
  pointer-events: none;
}

.games-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,216,107,0.22);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255,216,107,0.06) inset;
}

.games-category-icon {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  margin-bottom: 20px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,216,107,0.18), rgba(255,216,107,0.05)),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,216,107,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 28px rgba(0,0,0,0.24);
  color: #ffd86b;
}

.games-category-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  color: #ffd86b;
  fill: currentColor;
  stroke: currentColor;
}

.games-category-icon-letter {
  font-family: var(--secondfont);
}

.games-letter-icon {
  color: #ffd86b;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  display: inline-block;
}

.games-category-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.games-category-card h4 {
  position: relative;
  z-index: 2;
  font-size: 25px;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
  margin-bottom: 12px;
}

.games-category-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1199px) {
  .games-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .games-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .games-category-card {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .games-category-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }

  .games-category-icon svg {
    width: 28px;
    height: 28px;
  }

  .games-category-card h4 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .games-category-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 1199px) {
  .games-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .games-showcase-card h3 {
    font-size: 28px;
  }

  .games-category-title {
    font-size: 32px;
  }

  .games-stat-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .games-showcase-card,
  .games-category-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .games-showcase-card h3 {
    font-size: 25px;
  }

  .games-category-title {
    font-size: 28px;
  }

  .games-category-card h4 {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .games-category-grid {
    grid-template-columns: 1fr;
  }

  .games-category-icon {
    width: 56px;
    height: 56px;
  }
}

/* Slot Showcase Section */
.slot-showcase-section {
  position: relative;
  overflow: hidden;
}

.slot-showcase-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 107, 0.10);
  color: #ffd86b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.slot-showcase-intro {
  max-width: 920px;
  color: var(--section-text);
  font-size: 17px;
  line-height: 1.8;
}

/* Panels */
.slot-panel {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}

.slot-panel::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.45;
}

.slot-panel-primary::before {
  top: -90px;
  right: -70px;
  background: rgba(255, 216, 107, 0.10);
}

.slot-panel-secondary::before {
  bottom: -90px;
  right: -70px;
  background: rgba(210, 116, 255, 0.12);
}

.slot-panel-highlight::before {
  top: -70px;
  left: -60px;
  background: rgba(71, 226, 255, 0.12);
}

.slot-panel-accent::before {
  bottom: -70px;
  left: -60px;
  background: rgba(255, 125, 85, 0.12);
}

.slot-panel-head {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.slot-panel-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.slot-panel h3 {
  position: relative;
  z-index: 2;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 0;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.slot-panel p {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Theme groups */
.theme-group-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.theme-group-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.theme-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.theme-group-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd86b, #ff9e57);
  box-shadow: 0 0 12px rgba(255, 216, 107, 0.35);
}

.theme-group-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.theme-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.theme-list li {
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.theme-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd86b;
}

/* Inline note */
.slot-inline-note {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,216,107,0.08);
  border: 1px solid rgba(255,216,107,0.12);
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.75;
}

/* E-table */
.etable-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.etable-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.etable-item span {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.slot-feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.slot-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.65;
}

.slot-feature-item i {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255,216,107,0.12);
  color: #ffd86b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

/* Online category cards */
.online-category-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.online-category-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.online-category-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #ffd86b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.online-category-card h4 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.online-category-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.7;
}

/* Providers */
.provider-cloud {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.provider-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.sample-games-box {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,216,107,0.08);
  border: 1px solid rgba(255,216,107,0.12);
}

.sample-games-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 800;
}

.sample-games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sample-games-list span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

/* Summary strip */
.slot-summary-strip {
  position: relative;
  padding: 28px 30px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at right center, rgba(255,216,107,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
  overflow: hidden;
}

.slot-summary-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 800;
}

.slot-summary-content h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.slot-summary-content p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 1199px) {
  .theme-group-grid,
  .online-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .slot-panel h3 {
    font-size: 30px;
  }

  .slot-summary-content h3 {
    font-size: 27px;
  }
}

@media (max-width: 767px) {
  .slot-panel,
  .slot-summary-strip {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .slot-panel h3 {
    font-size: 26px;
  }

  .theme-group-card h4,
  .online-category-card h4 {
    font-size: 20px;
  }

  .etable-grid {
    grid-template-columns: 1fr;
  }

  .slot-summary-content h3 {
    font-size: 24px;
  }
}

.table-live-section {
  position: relative;
}

.table-live-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.table-live-intro {
  max-width: 880px;
  color: var(--section-text);
  line-height: 1.8;
}

/* PANEL */
.table-panel {
  padding: 30px;
  border-radius: 26px;
  background: var(--card-alt-bg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
}

.table-panel h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 14px;
}

.table-panel p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.table-panel-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,216,107,0.12);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
}

/* TABLE GROUPS */
.table-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 20px;
}

.table-group h4 {
  color: #fff;
  margin-bottom: 8px;
}

.table-group ul {
  list-style: none;
  padding: 0;
}

.table-group li {
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

/* HOURS */
.table-hours {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,216,107,0.08);
  border-radius: 16px;
}

/* POKER */
.poker-types span {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  margin: 6px;
  border-radius: 999px;
  color: #fff;
}

.poker-limits {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

.poker-limits h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.poker-limits ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.poker-limits li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
}

.poker-limits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd86b;
}


.poker-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ONLINE TABLE */
.online-table-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.online-table-card {
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
}

.online-table-card h4 {
  color: #fff;
}

/* LIVE */
.live-features {
  display: grid;
  gap: 12px;
}

.live-item {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}

.live-item i {
  color: #ffd86b;
}

.live-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,216,107,0.10), rgba(255,216,107,0.05));
  border: 1px solid rgba(255,216,107,0.18);
  color: rgba(255,255,255,0.90);
  font-size: 15px;
  line-height: 1.75;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* AUTH SECTION */
.auth-section {
  position: relative;
}

.auth-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.auth-intro {
  max-width: 860px;
  color: var(--section-text);
  line-height: 1.8;
}

/* CARD */
.auth-card {
  height: 100%;
  padding: 28px;
  border-radius: 26px;
  background: var(--card-alt-bg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 34px rgba(0,0,0,0.26);
  transition: 0.3s;
}

.auth-card:hover {
  transform: translateY(-6px);
}

.auth-card-highlight {
  border-color: rgba(255,216,107,0.25);
}

/* ICON */
.auth-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg,#ffd86b,#ff9e57);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
  margin-bottom: 14px;
}

/* TEXT */
.auth-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.auth-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.auth-badge {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #ffd86b;
  text-transform: uppercase;
}

/* LIST */
.auth-list {
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.auth-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
}

.auth-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ffd86b;
  border-radius: 50%;
}

/* NOTE */
.auth-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,216,107,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* STRIP */
.auth-strip {
  padding: 26px;
  border-radius: 26px;
  background: var(--card-alt-bg);
  border: 1px solid rgba(255,255,255,0.08);
}

.auth-strip-badge {
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
}

.auth-strip-content h3 {
  color: #fff;
}

.auth-strip-content p {
  color: rgba(255,255,255,0.78);
}

/* Casino App Section */
.casino-app-section {
  position: relative;
  overflow: hidden;
}

.casino-app-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 107, 0.10);
  color: #ffd86b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.casino-app-intro {
  max-width: 920px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
}

/* Left visual card */
.casino-app-visual-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}

.casino-app-image-wrap {
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 16px 30px rgba(0,0,0,0.20);
}

.casino-app-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.casino-app-visual-content {
  position: relative;
  z-index: 2;
}

.casino-app-card-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.casino-app-visual-content h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.casino-app-visual-content p {
  color: rgba(255,255,255,0.80);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-badge-link:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.store-badge-link img {
  height: 56px;
  width: auto;
  display: block;
}

/* Right column stack */
.casino-app-content-stack {
  display: grid;
  gap: 20px;
  height: 100%;
}

.casino-app-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.casino-app-info-icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffd86b, #ff9e57);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.casino-app-info-text h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.casino-app-info-text p {
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  line-height: 1.75;
}

/* Install cards */
.casino-app-install-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.casino-app-install-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.06), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.casino-app-install-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.casino-app-install-card h4 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.casino-app-install-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.75;
}

/* Note */
.casino-app-note {
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,216,107,0.10), rgba(255,216,107,0.05));
  border: 1px solid rgba(255,216,107,0.18);
  color: rgba(255,255,255,0.90);
  font-size: 15px;
  line-height: 1.75;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.casino-app-note strong {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .casino-app-visual-content h3,
  .casino-app-info-text h3 {
    font-size: 26px;
  }

  .casino-app-install-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .casino-app-visual-card,
  .casino-app-info-card,
  .casino-app-install-card {
    padding: 20px;
    border-radius: 22px;
  }

  .casino-app-visual-content h3,
  .casino-app-info-text h3 {
    font-size: 23px;
  }

  .casino-app-install-card h4 {
    font-size: 20px;
  }

  .store-badge-link img {
    height: 50px;
  }
}

/* Payments Section */
.payments-section {
  position: relative;
  overflow: hidden;
}

.payments-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 107, 0.10);
  color: #ffd86b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.payments-intro {
  max-width: 920px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
}

/* Top info cards */
.payments-info-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.payments-info-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
}

.payments-card-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.payments-info-card h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
  margin-bottom: 14px;
}

.payments-info-card p {
  margin: 0 0 16px 0;
  color: rgba(255,255,255,0.80);
  font-size: 16px;
  line-height: 1.8;
}

.payments-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.payments-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.65;
}

.payments-feature-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  color: #ffd86b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payments-feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.payments-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.payments-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

/* Centered table area */
.payments-table-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 26px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top center, rgba(255,216,107,0.06), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 20px 38px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.payments-table-head {
  margin-bottom: 24px;
}

.payments-table-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.payments-table-head h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
  margin-bottom: 10px;
}

.payments-table-head p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.75;
}

/* Controls */
.payments-controls {
  margin-bottom: 22px;
}

.payments-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.payments-select-box label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.4;
}

.payments-select-box select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,216,107,0.20);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

.payments-select-box select option {
  color: #111;
}

.payments-tab-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.payments-tab-btn {
  min-width: 140px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.payments-tab-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,216,107,0.26);
}

.payments-tab-btn.is-active {
  background: linear-gradient(135deg, rgba(255,216,107,0.20), rgba(255,158,87,0.14));
  border-color: rgba(255,216,107,0.30);
  color: #ffd86b;
}

/* Panels */
.payments-tab-panel {
  display: none;
}

.payments-tab-panel.is-active {
  display: block;
}

/* Table */
.payments-method-table {
  display: grid;
  gap: 12px;
}

.payments-method-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,216,107,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.payments-method-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.payments-logo-box {
  width: 78px;
  min-width: 78px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,216,107,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.payments-logo-box img {
  max-width: 58px;
  max-height: 24px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.payments-method-text {
  min-width: 0;
}

.payments-method-text strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.payments-method-text span {
  display: block;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.4;
}

.payments-method-range {
  color: #ffd86b;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

/* Bottom notes */
.payments-note-card {
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}

.payments-note-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffd86b, #ff9e57);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payments-note-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.payments-note-card h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.payments-note-card p {
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  line-height: 1.75;
}

.payments-footnote small {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .payments-info-card h3,
  .payments-table-head h3 {
    font-size: 28px;
  }

  .payments-method-row {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .payments-info-card,
  .payments-table-wrap,
  .payments-note-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

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

  .payments-method-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .payments-method-main {
    width: 100%;
  }

  .payments-method-range {
    text-align: left;
    padding-left: 92px;
  }

  .payments-tab-btn {
    min-width: 120px;
  }

  .payments-note-card h3 {
    font-size: 22px;
  }
}

/* Trust Architecture Section */
.trust-architecture-section {
  position: relative;
  overflow: hidden;
}

.trust-architecture-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 107, 0.10);
  color: #ffd86b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.trust-architecture-intro {
  max-width: 920px;
  color: rgba(255,255,255,0.80);
  font-size: 17px;
  line-height: 1.8;
}

.trust-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.trust-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
}

.trust-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffd86b, #ff9e57);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.trust-card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.trust-card-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.trust-card h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
}

.trust-card p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.trust-architecture-note {
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,216,107,0.10), rgba(255,216,107,0.05));
  border: 1px solid rgba(255,216,107,0.18);
  color: rgba(255,255,255,0.90);
  font-size: 15px;
  line-height: 1.75;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.trust-architecture-note strong {
  color: #ffffff;
}

@media (max-width: 991px) {
  .trust-card h3 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .trust-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .trust-card h3 {
    font-size: 23px;
  }
}

/* FAQ Showcase Section */
.faq-showcase-section {
  position: relative;
  overflow: hidden;
}

.faq-showcase-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 107, 0.10);
  color: #ffd86b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.faq-showcase-intro {
  max-width: 920px;
  color: rgba(255,255,255,0.80);
  font-size: 17px;
  line-height: 1.8;
}

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

.faq-column {
  min-width: 0;
}

.faq-accordion {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 22px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.06), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg) !important;
  box-shadow:
    0 16px 30px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
  margin-bottom: 0 !important;
}

.faq-button {
  position: relative;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--secondfont);
  padding: 22px 56px 22px 22px !important;
  box-shadow: none !important;
  border: none !important;
}

.faq-button:not(.collapsed) {
  color: #ffffff !important;
  background: transparent !important;
}

.faq-button:focus {
  box-shadow: none !important;
}

.faq-button::after {
  display: none !important;
}

.faq-toggle-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,216,107,0.12);
  color: #ffd86b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 13px;
}

.faq-button:not(.collapsed) .faq-toggle-icon {
  transform: translateY(-50%) rotate(180deg);
  background: rgba(255,216,107,0.18);
}

.faq-body {
  padding: 0 22px 22px 22px !important;
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-button {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .faq-button {
    font-size: 17px;
    padding: 18px 50px 18px 18px !important;
  }

  .faq-body {
    padding: 0 18px 18px 18px !important;
  }

  .faq-item {
    border-radius: 18px !important;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.06), transparent 22%),
    radial-gradient(circle at bottom left, rgba(210,116,255,0.05), transparent 22%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: 70px 0 44px;
}

.footer-brand-block {
  max-width: 520px;
}

.footer-description {
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

.footer-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-trust-pills span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  border: 1px solid rgba(255,216,107,0.14);
  color: #ffd86b;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.footer-links-block h4 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.3;
  font-family: var(--secondfont);
  font-weight: 700;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links-list li {
  margin: 0;
}

.footer-links-list a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links-list a:hover {
  color: #ffd86b;
  transform: translateX(3px);
}

.footer-links-list-small a {
  font-size: 14px;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 28px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  max-width: 760px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.7;
}

.footer-copy {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .footer-main {
    padding: 56px 0 36px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding: 46px 0 28px;
  }

  .footer-links-block h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-description,
  .footer-links-list a {
    font-size: 14px;
  }

  .footer-bottom-text,
  .footer-copy {
    font-size: 13px;
  }
}

/* Providers Section */
.providers-section {
  position: relative;
  overflow: hidden;
}

.providers-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 107, 0.10);
  color: #ffd86b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.providers-intro {
  max-width: 920px;
  color: rgba(255,255,255,0.80);
  font-size: 17px;
  line-height: 1.8;
}

.providers-info-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.providers-info-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(255,216,107,0.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
}

.providers-card-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,216,107,0.10);
  color: #ffd86b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.providers-info-card h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
  margin-bottom: 14px;
}

.providers-info-card p {
  margin: 0 0 16px 0;
  color: rgba(255,255,255,0.80);
  font-size: 16px;
  line-height: 1.8;
}

.providers-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.providers-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.65;
}

.providers-feature-item i {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255,216,107,0.12);
  color: #ffd86b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

/* Grid wrap */
.providers-grid-wrap {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top center, rgba(255,216,107,0.06), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--card-alt-bg);
  box-shadow:
    0 20px 38px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.provider-logo-card {
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.02);
  box-shadow: 0 14px 26px rgba(0,0,0,0.20);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.provider-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,216,107,0.18);
  box-shadow: 0 20px 34px rgba(0,0,0,0.26);
}

.provider-logo-box {
  width: 100%;
  max-width: 180px;
  height: 78px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,216,107,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.provider-logo-box img {
  max-width: 120px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.provider-logo-card h4 {
  font-size: 20px;
  line-height: 1.25;
  color: #ffffff;
  font-family: var(--secondfont);
  font-weight: 700;
  margin-bottom: 10px;
}

.provider-logo-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.7;
}

.providers-note {
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,216,107,0.10), rgba(255,216,107,0.05));
  border: 1px solid rgba(255,216,107,0.18);
  color: rgba(255,255,255,0.90);
  font-size: 15px;
  line-height: 1.75;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.providers-note strong {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
  .providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .providers-info-card h3 {
    font-size: 27px;
  }

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

@media (max-width: 767px) {
  .providers-info-card,
  .providers-grid-wrap {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .provider-logo-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .provider-logo-card h4 {
    font-size: 18px;
  }

  .provider-logo-box {
    height: 72px;
  }

  .provider-logo-box img {
    max-width: 108px;
    max-height: 32px;
  }
}

@media (max-width: 575px) {
  .providers-grid {
    grid-template-columns: 1fr;
  }
}

html, body {
  background: #000 !important;
  color: #fff !important;
}

html,
body,
body.body-bg,
[data-jackpotdeck-theme="dark"] body,
[data-jackpotdeck-theme="dark"] .body-bg {
  background: #000 !important;
  background-color: #000 !important;
  color: #fff !important;
}

:root {
  --body-bg: #000000 !important;
  --head-bg: #000000 !important;
  --card-alt-bg: #111111 !important;
  --para-text: rgba(255,255,255,0.82) !important;
  --head-text: #ffffff !important;
  --nav-text: #ffffff !important;
  --nav-alt-text: #ffffff !important;
  --white-text: #ffffff !important;
  --light-border: rgba(255,255,255,0.12) !important;
  --second-border: rgba(255,255,255,0.12) !important;
  --prime-border: rgba(255,255,255,0.18) !important;
  --icon-bg: #111111 !important;
  --icon-alt-bg: #1a1a1a !important;
}

section,
main,
footer,
header.fix,
.offcanvas,
.offcanvas-body,
.head-bg,
.alt-bg {
  background-color: transparent !important;
}


[data-logo="dark"] {
  display: block !important;
}

[data-logo="light"] {
  display: none !important;
}

:root {
  --white-text: #ffffff !important;
  --head-text: #ffffff !important;
}

.head-alt-text,
.top-games-section .head-alt-text,
.about-section .head-alt-text,
.benefits-section .head-alt-text,
.rewards-section .head-alt-text {
  color: #ffffff !important;
}