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


/* Casino Overview Section */
.casino-overview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(182, 58, 187, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(210, 116, 255, 0.10), transparent 32%),
    #000;
}

.casino-overview-section .section-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--prime-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.casino-overview-hero {
  position: relative;
  z-index: 2;
  padding: 40px 0 60px;
}

.casino-overview-content h2,
.casino-zones h2,
.casino-table-heading h2 {
  color: var(--head-text);
  font-family: var(--secondfont);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 24px;
}

.casino-overview-content p {
  color: var(--para-text);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.casino-overview-content strong {
  color: var(--white-text);
}

.casino-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.casino-overview-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--card-alt-bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.casino-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82) contrast(1.05);
  transition: transform 0.6s ease;
}

.casino-overview-media:hover img {
  transform: scale(1.04);
}

.casino-overview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.65)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
}

.casino-media-card {
  position: absolute;
  z-index: 3;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(8, 10, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.casino-media-card strong {
  display: block;
  color: var(--white-text);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
  font-family: var(--secondfont);
}

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

.casino-media-card-top {
  top: 28px;
  left: 28px;
}

.casino-media-card-bottom {
  right: 28px;
  bottom: 28px;
}

.casino-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 20px 0 70px;
}

.casino-stat-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  min-height: 245px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--card-alt-bg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.casino-stat-card::before {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(182, 58, 187, 0.18);
  filter: blur(2px);
}

.casino-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--prime-border);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.38);
}

.casino-stat-card span {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--prime-text);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  font-weight: 900;
  font-family: var(--secondfont);
  margin-bottom: 18px;
}

.casino-stat-card h3 {
  position: relative;
  z-index: 2;
  color: var(--head-text);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--secondfont);
}

.casino-stat-card p {
  position: relative;
  z-index: 2;
  color: var(--para-text);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.casino-feature-block {
  margin-bottom: 80px;
}

.casino-feature-card {
  padding: 34px 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--card-alt-bg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.casino-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--prime-border);
}

.casino-feature-card-accent {
  background:
    radial-gradient(circle at top right, rgba(210, 116, 255, 0.20), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--card-alt-bg);
}

.casino-feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--prime-bg), var(--second-bg));
  color: var(--white-text);
  font-size: 25px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.30);
}

.casino-feature-card h3 {
  color: var(--head-text);
  font-family: var(--secondfont);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
}

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

.casino-zones {
  margin-bottom: 80px;
}

.casino-zones .para-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}

.casino-zone-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: var(--card-alt-bg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.casino-zone-card:hover {
  transform: translateY(-8px);
  border-color: var(--prime-border);
}

.casino-zone-card img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.casino-zone-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

.casino-zone-content {
  padding: 28px 24px 30px;
}

.casino-zone-content h3 {
  color: var(--head-text);
  font-family: var(--secondfont);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
}

.casino-zone-content p {
  color: var(--para-text);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 22px;
}

.casino-zone-content a {
  display: inline-flex;
  align-items: center;
  color: var(--prime-text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.casino-zone-content a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  transition: transform 0.25s ease;
}

.casino-zone-content a:hover::after {
  transform: translateX(5px);
}

.casino-overview-table-wrap {
  padding: 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(182, 58, 187, 0.15), transparent 34%),
    var(--card-alt-bg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}

.casino-table-heading {
  margin-bottom: 26px;
}

.casino-table-heading h2 {
  margin-bottom: 0;
}

.casino-overview-table {
  display: grid;
  gap: 12px;
}

.casino-table-row {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.casino-table-row span {
  color: var(--para-text);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-table-row strong {
  color: var(--white-text);
  font-size: 17px;
  line-height: 1.45;
}

.casino-note-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.casino-note-box i {
  color: var(--prime-text);
  font-size: 22px;
  margin-top: 3px;
}

.casino-note-box p {
  color: var(--para-text);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

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

  .casino-overview-media,
  .casino-overview-media img {
    min-height: 520px;
  }
}

@media (max-width: 991px) {
  .casino-overview-hero {
    padding-top: 20px;
  }

  .casino-overview-media,
  .casino-overview-media img {
    min-height: 460px;
  }

  .casino-feature-block,
  .casino-zones {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .casino-overview-actions {
    flex-direction: column;
  }

  .casino-overview-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .casino-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 50px;
  }

  .casino-stat-card {
    min-height: auto;
  }

  .casino-overview-media {
    overflow: visible;
    min-height: auto;
  }

  .casino-overview-media img {
    min-height: 360px;
    border-radius: 28px;
  }

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

  .casino-media-card-top,
  .casino-media-card-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .casino-overview-table-wrap {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .casino-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .casino-zone-card img {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .casino-overview-content h2,
  .casino-zones h2,
  .casino-table-heading h2 {
    font-size: 32px;
  }

  .casino-feature-card h3,
  .casino-zone-content h3 {
    font-size: 24px;
  }

  .casino-overview-media img {
    min-height: 300px;
  }
}

.about-resort-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(182, 58, 187, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(210, 116, 255, 0.10), transparent 36%),
        #050505;
    color: #fff;
}

.about-resort-heading {
    max-width: 980px;
    margin: 0 auto;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d274ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-resort-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
}

.about-resort-heading p {
    margin: 0 auto;
    max-width: 860px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.8;
}

.about-resort-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.about-resort-image img {
    display: block;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.about-resort-content {
    padding: 10px 0;
}

.content-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #d274ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-resort-content h3,
.about-resort-detail h3 {
    margin-bottom: 22px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
}

.about-resort-content p,
.about-resort-detail p,
.about-info-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}

.about-resort-content p:not(:last-child),
.about-resort-detail p:not(:last-child) {
    margin-bottom: 18px;
}

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

.about-stat-card {
    padding: 30px 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.about-stat-card span {
    display: block;
    margin-bottom: 8px;
    color: #d274ff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    font-weight: 900;
}

.about-stat-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.about-info-card {
    height: 100%;
    padding: 30px 28px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.about-info-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
}

.about-resort-detail {
    padding: 42px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(182, 58, 187, 0.13), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.30);
}

.about-fact-box {
    position: sticky;
    top: 120px;
    padding: 30px;
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-fact-box h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}

.about-fact-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-fact-box li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.about-fact-box li:not(:last-child) {
    margin-bottom: 12px;
}

.about-fact-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d274ff;
    box-shadow: 0 0 12px rgba(210, 116, 255, 0.8);
}

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

    .about-resort-image img {
        min-height: 420px;
    }

    .about-resort-detail {
        padding: 30px;
    }

    .about-fact-box {
        position: static;
    }
}

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

    .about-resort-image img {
        min-height: 320px;
    }

    .about-resort-detail {
        padding: 24px;
        border-radius: 24px;
    }

    .about-resort-content p,
    .about-resort-detail p,
    .about-info-card p {
        font-size: 16px;
    }
}

.slots-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.12), transparent 34%),
        radial-gradient(circle at bottom left, rgba(182, 58, 187, 0.12), transparent 36%),
        #050505;
    color: #ffffff;
}

.slots-heading {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.slots-heading h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 900;
}

.slots-heading p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.85;
}

.slots-content h3,
.slots-detail-panel h3,
.slots-popular-heading h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 850;
}

.slots-content p,
.slots-detail-panel p,
.slots-popular-heading p,
.slots-feature-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}

.slots-content p:not(:last-child),
.slots-detail-panel p:not(:last-child) {
    margin-bottom: 18px;
}

.slots-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.slots-image-card img {
    display: block;
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: center;
}

.slots-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

.slots-image-badge {
    position: absolute;
    left: 26px;
    bottom: 26px;
    z-index: 2;
    max-width: 280px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.slots-image-badge span {
    display: block;
    margin-bottom: 6px;
    color: #d274ff;
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
}

.slots-image-badge p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

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

.slots-feature-card {
    height: 100%;
    padding: 30px 26px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.slots-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 116, 255, 0.42);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.slots-feature-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b63abb, #d274ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 14px 30px rgba(182, 58, 187, 0.28);
}

.slots-feature-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 850;
}

.slots-detail-panel {
    padding: 44px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(182, 58, 187, 0.14), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.30);
}

.slots-list-box {
    position: sticky;
    top: 120px;
    padding: 30px;
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.slots-list-box h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 850;
}

.slots-list-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.slots-list-box li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.slots-list-box li:not(:last-child) {
    margin-bottom: 12px;
}

.slots-list-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d274ff;
    box-shadow: 0 0 12px rgba(210, 116, 255, 0.8);
}

.slots-popular-themes {
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(210, 116, 255, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.slots-popular-heading {
    max-width: 850px;
    margin-bottom: 30px;
}

.slot-theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.slot-theme-card {
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.slot-theme-card:hover {
    transform: translateY(-4px);
    border-color: rgba(210, 116, 255, 0.45);
}

@media (max-width: 1199px) {
    .slots-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .slots-image-card img {
        min-height: 420px;
    }

    .slots-detail-panel,
    .slots-popular-themes {
        padding: 30px;
    }

    .slots-list-box {
        position: static;
    }
}

@media (max-width: 767px) {
    .slot-theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .slots-feature-grid,
    .slot-theme-grid {
        grid-template-columns: 1fr;
    }

    .slots-image-card img {
        min-height: 320px;
    }

    .slots-image-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .slots-detail-panel,
    .slots-popular-themes {
        padding: 24px;
        border-radius: 24px;
    }

    .slots-content p,
    .slots-detail-panel p,
    .slots-popular-heading p,
    .slots-feature-card p {
        font-size: 16px;
    }
}

.table-games-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #060606 0%, #09030d 48%, #050505 100%);
    color: #ffffff;
}

.table-games-section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(210, 116, 255, 0.12);
    filter: blur(30px);
    pointer-events: none;
}

.table-games-section::after {
    content: "";
    position: absolute;
    bottom: 140px;
    left: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(182, 58, 187, 0.10);
    filter: blur(30px);
    pointer-events: none;
}

.table-games-section .container {
    position: relative;
    z-index: 2;
}

.table-games-intro h2 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1px;
}

.table-games-intro p,
.table-games-floating-panel p,
.game-category-card p,
.poker-content p,
.high-limit-panel p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}

.table-games-intro p:not(:last-child),
.poker-content p:not(:last-child),
.high-limit-panel p:not(:last-child) {
    margin-bottom: 18px;
}

.table-games-signature-card {
    position: relative;
    padding: 44px 36px;
    min-height: 360px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.table-games-signature-card::before {
    content: "♠";
    position: absolute;
    top: -46px;
    right: 20px;
    color: rgba(255, 255, 255, 0.06);
    font-size: 220px;
    line-height: 1;
}

.table-games-signature-card span {
    display: block;
    margin-bottom: 12px;
    color: #d274ff;
    font-size: clamp(72px, 8vw, 118px);
    line-height: 0.85;
    font-weight: 950;
}

.table-games-signature-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 850;
}

.table-games-signature-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.table-games-layout {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
}

.table-games-main-image {
    width: 78%;
    min-height: 560px;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.table-games-main-image img {
    display: block;
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
}

.table-games-floating-panel {
    position: absolute;
    right: 0;
    bottom: 46px;
    width: 42%;
    padding: 36px;
    border-radius: 30px;
    background: rgba(7, 7, 7, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.44);
}

.table-games-floating-panel h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.12;
    font-weight: 850;
}

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

.game-category-card {
    position: relative;
    min-height: 420px;
    padding: 30px 26px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.30);
    overflow: hidden;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.game-category-card::after {
    content: "";
    position: absolute;
    right: -56px;
    bottom: -56px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(210, 116, 255, 0.11);
    transition: transform 0.32s ease;
}

.game-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(210, 116, 255, 0.42);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.40);
}

.game-category-card:hover::after {
    transform: scale(1.35);
}

.game-number {
    display: block;
    margin-bottom: 28px;
    color: rgba(210, 116, 255, 0.72);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

.game-category-card h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 850;
}

.poker-showcase {
    padding: 34px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(182, 58, 187, 0.11), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.30);
}

.poker-image-wrap {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.poker-image-wrap img {
    display: block;
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: center;
}

.poker-content h3,
.high-limit-panel h3,
.summary-header h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 900;
}

.poker-callout {
    margin-top: 28px;
    padding: 24px 26px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(210, 116, 255, 0.25);
}

.poker-callout span {
    display: block;
    margin-bottom: 6px;
    color: #d274ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poker-callout strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    font-weight: 950;
}

.poker-callout p {
    margin: 0;
    font-size: 15px;
}

.high-limit-panel {
    padding: 46px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.high-limit-list {
    padding: 30px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.high-limit-list h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 850;
}

.high-limit-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.high-limit-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.high-limit-list li:not(:last-child) {
    margin-bottom: 12px;
}

.high-limit-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: #d274ff;
    font-size: 13px;
    line-height: 1.8;
}

.table-games-summary {
    padding: 42px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.summary-header {
    max-width: 780px;
    margin-bottom: 28px;
}

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

.table-game-name {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.table-game-name:hover {
    transform: translateY(-4px);
    border-color: rgba(210, 116, 255, 0.44);
}

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

    .table-games-main-image {
        width: 84%;
    }

    .table-games-floating-panel {
        width: 48%;
    }
}

@media (max-width: 991px) {
    .table-games-layout {
        display: block;
        min-height: auto;
    }

    .table-games-main-image {
        width: 100%;
        min-height: auto;
    }

    .table-games-main-image img {
        min-height: 420px;
    }

    .table-games-floating-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 22px;
    }

    .poker-showcase,
    .high-limit-panel,
    .table-games-summary {
        padding: 30px;
    }
}

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

    .table-games-signature-card {
        min-height: 300px;
        padding: 34px 26px;
    }

    .table-games-main-image img,
    .poker-image-wrap img {
        min-height: 320px;
    }

    .table-games-floating-panel,
    .poker-showcase,
    .high-limit-panel,
    .table-games-summary {
        padding: 24px;
        border-radius: 24px;
    }

    .table-games-intro p,
    .table-games-floating-panel p,
    .game-category-card p,
    .poker-content p,
    .high-limit-panel p {
        font-size: 16px;
    }
}

.rewards-club-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(210, 116, 255, 0.13), transparent 34%),
        linear-gradient(180deg, #050505 0%, #0b0610 52%, #050505 100%);
    color: #ffffff;
}

.rewards-club-section .container {
    position: relative;
    z-index: 2;
}

.rewards-club-heading {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.rewards-club-heading h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -1px;
}

.rewards-club-heading p {
    max-width: 930px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.85;
}

.rewards-club-showcase {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 34px;
    align-items: stretch;
}

.rewards-club-main {
    padding: 44px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.rewards-club-main h3,
.rewards-info-text h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 900;
}

.rewards-club-main p,
.reward-step p,
.reward-benefit-card p,
.rewards-info-text p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}

.rewards-club-main p:not(:last-child),
.rewards-info-text p:not(:last-child) {
    margin-bottom: 18px;
}

.rewards-club-card {
    position: relative;
    min-height: 360px;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 22%),
        linear-gradient(135deg, #b63abb, #38104a 58%, #090909);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.rewards-club-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.16) 50%, transparent 65%);
    transform: rotate(18deg);
}

.club-card-top,
.club-card-bottom,
.club-card-chip {
    position: relative;
    z-index: 2;
}

.club-card-top span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.club-card-top strong {
    display: block;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 1px;
}

.club-card-chip {
    width: 68px;
    height: 50px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.25));
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
}

.club-card-bottom span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
}

.club-card-bottom p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

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

.reward-step {
    position: relative;
    min-height: 300px;
    padding: 30px 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.reward-step span {
    display: block;
    margin-bottom: 26px;
    color: rgba(210, 116, 255, 0.72);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.reward-step h3,
.reward-benefit-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 850;
}

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

.reward-benefit-card {
    padding: 30px 26px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.reward-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 116, 255, 0.42);
}

.reward-benefit-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b63abb, #d274ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.rewards-info-panel {
    padding: 44px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(210, 116, 255, 0.14), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.rewards-checklist {
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.rewards-checklist h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 850;
}

.rewards-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rewards-checklist li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.rewards-checklist li:not(:last-child) {
    margin-bottom: 12px;
}

.rewards-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d274ff;
    font-weight: 900;
}

@media (max-width: 1199px) {
    .rewards-steps,
    .rewards-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rewards-club-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .rewards-club-main,
    .rewards-info-panel {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .rewards-steps,
    .rewards-benefits-grid {
        grid-template-columns: 1fr;
    }

    .rewards-club-main,
    .rewards-info-panel,
    .rewards-club-card {
        padding: 24px;
        border-radius: 24px;
    }

    .rewards-club-main p,
    .reward-step p,
    .reward-benefit-card p,
    .rewards-info-text p {
        font-size: 16px;
    }

    .club-card-top strong {
        font-size: 30px;
    }
}

.resort-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(210, 116, 255, 0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(182, 58, 187, 0.10), transparent 35%),
        #050505;
    color: #ffffff;
}

.resort-section .container {
    position: relative;
    z-index: 2;
}

.resort-heading {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.resort-heading h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.resort-heading p {
    max-width: 880px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.85;
}

.resort-image-large {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.resort-image-large img {
    width: 100%;
    display: block;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.resort-image-large:hover img {
    transform: scale(1.05);
}

.resort-section h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 850;
}

.resort-section p {
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.85;
}

.resort-section p:not(:last-child) {
    margin-bottom: 18px;
}

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

.resort-stat-card {
    padding: 34px 20px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.resort-stat-card span {
    display: block;
    margin-bottom: 10px;
    color: #d274ff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    font-weight: 900;
}

.resort-stat-card p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wellness-showcase {
    position: relative;
}

.wellness-card {
    height: 100%;
    padding: 32px;
    border-radius: 30px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
    transition: .35s ease;
}

.wellness-card:hover {
    transform: translateY(-8px);
    border-color: rgba(210,116,255,.4);
}

.wellness-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.resort-highlight-panel {
    padding: 50px;
    border-radius: 36px;
    background:
        linear-gradient(
            135deg,
            rgba(182,58,187,.12),
            rgba(255,255,255,.03)
        );
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 25px 60px rgba(0,0,0,.28);
}

.resort-features-box {
    padding: 32px;
    border-radius: 28px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.1);
    height: 100%;
}

.resort-features-box h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}

.resort-features-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.resort-features-box li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.75;
}

.resort-features-box li:not(:last-child) {
    margin-bottom: 12px;
}

.resort-features-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d274ff;
    box-shadow: 0 0 12px rgba(210,116,255,.8);
}

@media (max-width: 1199px) {

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

}

@media (max-width: 991px) {

    .resort-image-large img {
        min-height: 420px;
    }

    .resort-highlight-panel {
        padding: 35px;
    }

}

@media (max-width: 767px) {

    .resort-stats {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575px) {

    .resort-heading h2 {
        font-size: 38px;
    }

    .resort-image-large img {
        min-height: 320px;
    }

    .wellness-card,
    .resort-highlight-panel,
    .resort-features-box {
        padding: 24px;
    }

    .resort-section p {
        font-size: 16px;
    }

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

}


.dining-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(210, 116, 255, 0.10), transparent 34%),
        linear-gradient(180deg, #050505 0%, #080608 50%, #050505 100%);
    color: #ffffff;
}

.dining-section .container {
    position: relative;
    z-index: 2;
}

.dining-heading {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.dining-heading h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.dining-heading p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.85;
}

.dining-showcase {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 28px;
    align-items: stretch;
}

.dining-showcase-content {
    padding: 44px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.30);
}

.dining-showcase-content h3,
.dining-visit-panel h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 900;
}

.dining-showcase-content p,
.restaurant-card p,
.dining-visit-panel p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}

.dining-showcase-content p:not(:last-child),
.dining-visit-panel p:not(:last-child) {
    margin-bottom: 18px;
}

.dining-highlight-box {
    position: relative;
    padding: 38px 32px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(182, 58, 187, 0.18), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.dining-highlight-box::before {
    content: "✦";
    position: absolute;
    top: -20px;
    right: 24px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 180px;
    line-height: 1;
}

.dining-highlight-box span {
    display: block;
    margin-bottom: 12px;
    color: #d274ff;
    font-size: clamp(64px, 7vw, 96px);
    line-height: 0.9;
    font-weight: 950;
}

.dining-highlight-box h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 850;
}

.dining-highlight-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.7;
}

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

.restaurant-card {
    position: relative;
    min-height: 330px;
    padding: 30px 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    overflow: hidden;
}

.restaurant-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(210, 116, 255, 0.08);
    transition: transform 0.32s ease;
}

.restaurant-card:hover {
    transform: translateY(-7px);
    border-color: rgba(210, 116, 255, 0.38);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.restaurant-card:hover::after {
    transform: scale(1.35);
}

.restaurant-featured {
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    border-color: rgba(210, 116, 255, 0.24);
}

.restaurant-type {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(210, 116, 255, 0.12);
    color: #d274ff;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.restaurant-card h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 850;
}

.dining-visit-panel {
    padding: 44px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(182, 58, 187, 0.11), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.30);
}

.dining-check-box {
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dining-check-box h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 850;
}

.dining-check-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dining-check-box li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.dining-check-box li:not(:last-child) {
    margin-bottom: 12px;
}

.dining-check-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d274ff;
    box-shadow: 0 0 12px rgba(210, 116, 255, 0.8);
}

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

    .dining-showcase {
        grid-template-columns: 1fr;
    }

    .dining-highlight-box {
        min-height: 280px;
    }
}

@media (max-width: 991px) {
    .dining-showcase-content,
    .dining-visit-panel {
        padding: 30px;
    }
}

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

    .dining-showcase-content,
    .dining-visit-panel,
    .dining-highlight-box {
        padding: 24px;
        border-radius: 24px;
    }

    .dining-showcase-content p,
    .restaurant-card p,
    .dining-visit-panel p {
        font-size: 16px;
    }

    .restaurant-card {
        min-height: auto;
        padding: 26px 22px;
    }
}

.entertainment-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.13), transparent 34%),
        radial-gradient(circle at bottom left, rgba(182, 58, 187, 0.10), transparent 36%),
        linear-gradient(180deg, #050505 0%, #09050d 52%, #050505 100%);
    color: #ffffff;
}

.entertainment-section .container {
    position: relative;
    z-index: 2;
}

.entertainment-heading {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.entertainment-heading h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -1px;
}

.entertainment-heading p {
    max-width: 940px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.85;
}

.entertainment-main-image,
.entertainment-secondary-image {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.42);
}

.entertainment-main-image img,
.entertainment-secondary-image img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.entertainment-main-image img {
    min-height: 560px;
}

.entertainment-secondary-image img {
    min-height: 520px;
}

.entertainment-main-image:hover img,
.entertainment-secondary-image:hover img {
    transform: scale(1.05);
}

.entertainment-intro-card {
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.30);
}

.entertainment-intro-card h3,
.entertainment-experience-content h3,
.entertainment-info-panel h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 900;
}

.entertainment-intro-card p,
.event-type-card p,
.entertainment-experience-content p,
.entertainment-info-panel p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}

.entertainment-intro-card p:not(:last-child),
.entertainment-experience-content p:not(:last-child),
.entertainment-info-panel p:not(:last-child) {
    margin-bottom: 18px;
}

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

.entertainment-stat {
    padding: 34px 22px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.entertainment-stat span {
    display: block;
    margin-bottom: 10px;
    color: #d274ff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    font-weight: 950;
}

.entertainment-stat p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

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

.event-type-card {
    min-height: 350px;
    padding: 30px 26px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transition: transform 0.32s ease, border-color 0.32s ease;
}

.event-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(210, 116, 255, 0.42);
}

.event-type-card span {
    display: block;
    margin-bottom: 26px;
    color: rgba(210, 116, 255, 0.72);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

.event-type-card h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 850;
}

.entertainment-experience {
    padding: 44px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(182, 58, 187, 0.12), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}

.entertainment-info-panel {
    padding: 44px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(210, 116, 255, 0.14), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.entertainment-checklist {
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.entertainment-checklist h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 850;
}

.entertainment-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.entertainment-checklist li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.entertainment-checklist li:not(:last-child) {
    margin-bottom: 12px;
}

.entertainment-checklist li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #d274ff;
    font-size: 13px;
    line-height: 1.8;
}

@media (max-width: 1199px) {
    .entertainment-stats,
    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .entertainment-main-image img,
    .entertainment-secondary-image img {
        min-height: 420px;
    }

    .entertainment-intro-card,
    .entertainment-experience,
    .entertainment-info-panel {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .entertainment-stats,
    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .entertainment-main-image img,
    .entertainment-secondary-image img {
        min-height: 320px;
    }

    .entertainment-intro-card,
    .entertainment-experience,
    .entertainment-info-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .entertainment-heading p,
    .entertainment-intro-card p,
    .event-type-card p,
    .entertainment-experience-content p,
    .entertainment-info-panel p {
        font-size: 16px;
    }

    .event-type-card {
        min-height: auto;
    }
}

.visit-info-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(210, 116, 255, 0.11), transparent 34%),
        radial-gradient(circle at bottom right, rgba(182, 58, 187, 0.10), transparent 36%),
        linear-gradient(180deg, #050505 0%, #09050d 52%, #050505 100%);
    color: #ffffff;
}

.visit-info-section .container {
    position: relative;
    z-index: 2;
}

.visit-info-heading {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.visit-info-heading h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -1px;
}

.visit-info-heading p {
    max-width: 930px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.85;
}

.visit-info-main {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 28px;
    align-items: stretch;
}

.visit-info-primary,
.visit-info-contact-card,
.entry-rules-panel,
.visitor-help-card {
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 22px 54px rgba(0,0,0,.3);
}

.visit-info-primary {
    padding: 44px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}

.visit-info-primary h3,
.entry-rules-panel h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 900;
}

.visit-info-primary p,
.visit-card p,
.entry-rules-panel p,
.visitor-help-card p {
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.85;
}

.visit-info-primary p:not(:last-child),
.entry-rules-panel p:not(:last-child) {
    margin-bottom: 18px;
}

.visit-info-contact-card {
    padding: 34px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(210,116,255,.18), transparent 40%),
        rgba(0,0,0,.34);
}

.visit-info-contact-card h3 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
}

.visit-contact-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.visit-contact-item:last-child {
    border-bottom: none;
}

.visit-contact-item span {
    display: block;
    margin-bottom: 6px;
    color: #d274ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.visit-contact-item p {
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 650;
}

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

.visit-card {
    min-height: 330px;
    padding: 30px 26px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 42px rgba(0,0,0,.26);
    transition: transform .32s ease, border-color .32s ease;
}

.visit-card:hover {
    transform: translateY(-7px);
    border-color: rgba(210,116,255,.42);
}

.visit-card-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b63abb, #d274ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.visit-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 850;
}

.entry-rules-panel {
    padding: 44px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(210,116,255,.14), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}

.entry-checklist {
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(0,0,0,.36);
    border: 1px solid rgba(255,255,255,.12);
}

.entry-checklist h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 850;
}

.entry-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.entry-checklist li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.7;
}

.entry-checklist li:not(:last-child) {
    margin-bottom: 12px;
}

.entry-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d274ff;
    font-weight: 900;
}

.visitor-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.visitor-help-card {
    padding: 32px 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}

.visitor-help-card span {
    display: block;
    margin-bottom: 24px;
    color: rgba(210,116,255,.72);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

.visitor-help-card h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 850;
}

@media (max-width: 1199px) {
    .visit-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit-info-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .visitor-help-grid {
        grid-template-columns: 1fr;
    }

    .visit-info-primary,
    .entry-rules-panel {
        padding: 30px;
    }
}

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

    .visit-info-primary,
    .visit-info-contact-card,
    .entry-rules-panel,
    .visitor-help-card {
        padding: 24px;
        border-radius: 24px;
    }

    .visit-info-heading p,
    .visit-info-primary p,
    .visit-card p,
    .entry-rules-panel p,
    .visitor-help-card p {
        font-size: 16px;
    }
}

.responsible-gaming-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(210,116,255,.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(182,58,187,.10), transparent 35%),
        #050505;
    color: #fff;
}

.responsible-heading {
    max-width: 1000px;
    margin: 0 auto;
}

.responsible-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(36px,5vw,68px);
    line-height: 1.05;
    font-weight: 900;
}

.responsible-heading p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.85;
}

.responsible-main-panel,
.support-panel {
    padding: 50px;
    border-radius: 36px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.responsible-main-panel h3,
.support-panel h3 {
    margin-bottom: 22px;
    font-size: clamp(30px,4vw,50px);
    line-height: 1.08;
    font-weight: 900;
}

.responsible-main-panel p,
.support-panel p,
.responsible-card p {
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.85;
}

.responsible-card {
    padding: 32px;
    border-radius: 30px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.025)
        );
    border: 1px solid rgba(255,255,255,.1);
    height: 100%;
}

.responsible-card h3 {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 850;
}

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

.responsible-quote-card {
    padding: 36px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            rgba(182,58,187,.18),
            rgba(255,255,255,.03)
        );
    border: 1px solid rgba(255,255,255,.1);
}

.responsible-quote-card span {
    display: block;
    margin-bottom: 12px;
    color: #d274ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.responsible-quote-card h4 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
}

.responsible-quote-card p {
    color: rgba(255,255,255,.75);
}

.support-checklist {
    padding: 30px;
    border-radius: 28px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.1);
}

.support-checklist h4 {
    margin-bottom: 18px;
    font-size: 28px;
    font-weight: 850;
}

.support-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.support-checklist li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
}

.support-checklist li:not(:last-child) {
    margin-bottom: 10px;
}

.support-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d274ff;
    font-weight: 900;
}

@media (max-width: 991px) {

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

    .responsible-main-panel,
    .support-panel {
        padding: 30px;
    }

}

@media (max-width: 575px) {

    .responsible-main-panel,
    .support-panel,
    .responsible-card,
    .responsible-quote-card,
    .support-checklist {
        padding: 24px;
        border-radius: 24px;
    }

}

.faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(210, 116, 255, 0.12), transparent 35%),
        radial-gradient(circle at bottom left, rgba(182, 58, 187, 0.10), transparent 35%),
        linear-gradient(180deg, #050505 0%, #08050d 50%, #050505 100%);
    color: #ffffff;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-heading h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.faq-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.8;
}

.faq-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );
    border: 1px solid rgba(255,255,255,.1);
    transition: .3s ease;
}

.faq-item:hover {
    border-color: rgba(210,116,255,.35);
}

.faq-item.active {
    border-color: rgba(210,116,255,.45);
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.faq-question {
    width: 100%;
    padding: 28px 34px;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: .3s ease;
}

.faq-question:hover {
    color: #d274ff;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #d274ff;
    font-size: 32px;
    font-weight: 300;
    transition: .3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    padding: 0 34px 30px;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.85;
}

@media (max-width: 991px) {

    .faq-question {
        padding: 24px 26px;
        font-size: 20px;
    }

    .faq-answer p {
        padding: 0 26px 24px;
    }

}

@media (max-width: 575px) {

    .faq-heading h2 {
        font-size: 38px;
    }

    .faq-heading p {
        font-size: 16px;
    }

    .faq-question {
        padding: 22px 20px;
        font-size: 18px;
        line-height: 1.5;
        padding-right: 55px;
    }

    .faq-question::after {
        right: 18px;
        font-size: 28px;
    }

    .faq-answer p {
        padding: 0 20px 22px;
        font-size: 15px;
        line-height: 1.8;
    }

}

/* Legal pages custom styles */
.legal-page-body header {
    position: absolute;
}

.legal-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
    padding: 170px 0 90px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 22%, rgba(243, 193, 23, 0.18), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(182, 58, 187, 0.24), transparent 36%),
        linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,.9)),
        url("../../assets/images/hero-banner.webp") no-repeat center/cover;
}

.legal-hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, #000000);
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.legal-hero-content h1 {
    margin: 16px 0 22px;
    color: #ffffff;
    font-size: clamp(46px, 7vw, 86px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1px;
}

.legal-hero-content p {
    margin: 0 auto;
    max-width: 780px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.85;
}

.legal-updated-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 12px 18px;
    border: 1px solid rgba(243, 193, 23, .35);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.legal-content-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(182, 58, 187, .12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(243, 193, 23, .08), transparent 34%),
        #000000;
    color: #ffffff;
}

.legal-content-layout {
    display: grid;
    grid-template-columns: minmax(260px, 350px) 1fr;
    gap: 30px;
    align-items: start;
}

.legal-summary-card,
.legal-content-card {
    border: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: 0 18px 48px rgba(0,0,0,.32);
}

.legal-summary-card {
    position: sticky;
    top: 112px;
    padding: 30px;
    border-radius: 28px;
}

.legal-summary-card h2 {
    margin-bottom: 16px;
    color: #f3c117;
    font-size: 30px;
    font-weight: 900;
}

.legal-summary-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.legal-summary-card ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.legal-summary-card li:not(:last-child) {
    margin-bottom: 12px;
}

.legal-summary-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 15px;
    border-radius: 15px;
    background: rgba(182, 58, 187, .16);
    color: #ffffff;
    font-weight: 800;
    transition: .25s ease;
}

.legal-summary-card a::after {
    content: "›";
    color: #f3c117;
    font-size: 22px;
    line-height: 1;
}

.legal-summary-card a:hover {
    background: rgba(182, 58, 187, .32);
    color: #f3c117;
}

.legal-content-main {
    display: grid;
    gap: 22px;
}

.legal-content-card {
    padding: 34px;
    border-radius: 30px;
}

.legal-content-card h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
    font-weight: 900;
}

.legal-content-card p {
    margin-bottom: 14px;
    color: rgba(255,255,255,.77);
    font-size: 17px;
    line-height: 1.86;
}

.legal-content-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .legal-content-layout {
        grid-template-columns: 1fr;
    }

    .legal-summary-card {
        position: static;
    }

    .legal-hero-section {
        min-height: 480px;
        padding-top: 150px;
    }
}

@media (max-width: 575px) {
    .legal-hero-content h1 {
        font-size: 42px;
    }

    .legal-hero-content p,
    .legal-content-card p {
        font-size: 16px;
    }

    .legal-summary-card,
    .legal-content-card {
        padding: 24px;
        border-radius: 24px;
    }
}
