.page-index {
  font-family: Arial, sans-serif;
  color: #FFF6D6;
  background-color: #0A0A0A;
  line-height: 1.6;
}

.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index__text-gradient {
  background: linear-gradient(90deg, #F2C14E, #FFD36B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-index__btn-cta {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
}

.page-index__btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-index__btn-promo {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-index__btn-promo:hover {
  transform: translateY(-1px);
}

/* Ticker Section */
.page-index__ticker-section {
  background-color: #111111;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #3A2A12;
}

.page-index__ticker-content {
  display: flex;
  align-items: center;
  animation: page-index__marquee 20s linear infinite;
}

.page-index__ticker-icon {
  margin-right: 15px;
  font-size: 1.2em;
  color: #FFD36B;
  flex-shrink: 0;
  padding-left: 20px;
}

.page-index__ticker-text {
  margin: 0;
  display: inline-block;
  padding-right: 50px; /* Space before repeating content */
}

@keyframes page-index__marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hero Section */
.page-index__hero-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 50vw, 800px);
  background-color: #100224; /* Dark background for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10px; /* Small top padding */
}

.page-index__hero-desktop-slider {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: clamp(420px, 50vw, 800px);
}

.page-index__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-index__hero-slide.is-active {
  opacity: 1;
}

.page-index__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-index__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Align content to bottom */
  justify-content: flex-start; /* Align content to left */
  padding: 50px 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  box-sizing: border-box;
}

.page-index__hero-content {
  max-width: 500px;
  text-align: left;
  z-index: 1;
}

.page-index__hero-tagline {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-index__jackpot-counter {
  background: linear-gradient(#ff9500, #ff5e3a);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #FFF6D6;
}

.page-index__jackpot-label {
  font-size: 1.2em;
  font-weight: bold;
}

.page-index__jackpot-amount {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: bolder;
  line-height: 1.2;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.page-index__hero-sub {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-index__slider-nav {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.page-index__slider-prev, .page-index__slider-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFF6D6;
  font-size: 2em;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-index__slider-prev:hover, .page-index__slider-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.page-index__slider-dots {
  display: flex;
  gap: 8px;
}

.page-index__slider-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-index__slider-dot.is-active {
  background: #FFD36B;
}

/* Mobile Hero (Image Above Text) */
.page-index__hero-mobile-slider {
  width: 100%;
  min-height: auto;
}

.page-index__hero-mobile-slider .page-index__hero-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  padding-bottom: 20px; /* space for nav */
}

.page-index__hero-mobile-slider .page-index__hero-visual {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.page-index__hero-mobile-slider .page-index__hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-index__hero-mobile-slider .page-index__hero-copy {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background-color: #100224;
}

.page-index__hero-mobile-slider .page-index__jackpot-counter {
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  padding: 12px 16px;
  box-sizing: border-box;
}

.page-index__hero-mobile-slider .page-index__jackpot-amount {
  font-size: clamp(1.25rem, 6.5vw, 2.5rem);
}

.page-index__hero-mobile-slider .page-index__btn-cta {
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0 auto;
  min-height: 44px;
}

.page-index__hide-for-small {
  display: block;
}

.page-index__show-for-small {
  display: none;
}

/* Brand Intro Section */
.page-index__brand-intro-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0A0A0A;
}

.page-index__main-title {
  font-size: clamp(2em, 4vw, 3em);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index__description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #FFF6D6;
}

/* Popular Games & Category Sections */
.page-index__popular-games-section, .page-index__category-section {
  padding: 60px 20px;
  background-color: #111111;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-index__category-section:nth-of-type(odd) {
  background-color: #0A0A0A;
}

.page-index__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  text-align: center;
  margin-bottom: 20px;
  color: #FFD36B;
}

.page-index__section-description {
  font-size: 1em;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-index__sub-title {
  font-size: clamp(1.2em, 2.5vw, 1.8em);
  text-align: center;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-index__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Min 150px for mobile */
  gap: 20px;
}

.page-index__game-tile {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-index__game-tile:hover {
  transform: translateY(-5px) scale(1.02);
}

.page-index__game-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size for content images */
}

.page-index__category-sports .page-index__sports-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-index__sports-content {
  flex: 1;
}

.page-index__sports-image-wrapper {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.page-index__sports-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 200px; /* Minimum size for content images */
}

.page-index__btn-sports {
  margin-top: 20px;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 60px 20px;
  background-color: #111111;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-index__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index__promo-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Minimum size for content images */
}

.page-index__promo-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD36B;
}

.page-index__promo-description {
  font-size: 0.95em;
  margin-bottom: 25px;
  color: #FFF6D6;
  flex-grow: 1;
}

/* Winners Sections */
.page-index__winners-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-index__hot-jackpot-winners {
  background-color: #111111;
}

.page-index__winner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-index__winner-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.page-index__winner-card img {
  
  
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.page-index__winner-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-grow: 1;
}

.page-index__game-name {
  font-weight: bold;
  color: #FFD36B;
  font-size: 1.1em;
}

.page-index__user-id, .page-index__win-date {
  font-size: 0.85em;
  color: #FFF6D6;
}

.page-index__win-amount {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #ff9500, #ff5e3a);
  color: #FFF6D6;
  padding: 8px 15px;
  border-top-left-radius: 10px;
  font-weight: bold;
  text-align: center;
}

.page-index__won-label {
  display: block;
  font-size: 0.7em;
  line-height: 1;
}

.page-index__amount-value {
  font-size: 1.2em;
  line-height: 1;
}

/* Blog Section */
.page-index__blog-section {
  padding: 60px 20px;
  background-color: #111111;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-index__post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index__post-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-index__post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-height: 200px; /* Minimum size for content images */
}

.page-index__post-title {
  font-size: 1.3em;
  margin: 15px 15px 10px 15px;
  color: #FFD36B;
  line-height: 1.3;
}

.page-index__post-title a {
  color: #FFD36B;
  text-decoration: none;
}

.page-index__post-title a:hover {
  text-decoration: underline;
}

.page-index__post-excerpt {
  font-size: 0.9em;
  color: #FFF6D6;
  margin: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-index__btn-details {
  display: inline-block;
  padding: 8px 15px;
  background: #F2C14E;
  color: #111111;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  margin: 0 15px 15px 15px;
  align-self: flex-start;
}

.page-index__btn-details:hover {
  background: #FFD36B;
}

.page-index__load-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

.page-index__btn-load-more {
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.page-index__btn-load-more:hover {
  transform: translateY(-2px);
}

/* FAQ Section */
.page-index__faq-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
  border-radius: 10px;
}

.page-index__accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-index__accordion-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.page-index__accordion-summary {
  display: block;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD36B;
  cursor: pointer;
  position: relative;
}

.page-index__accordion-summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index__accordion-item[open] .page-index__accordion-summary::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-index__accordion-content {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  color: #FFF6D6;
}

/* Brand Strip */
.page-index__brand-strip {
  padding: 40px 20px;
  text-align: center;
  background-color: #111111;
  margin-top: 20px;
  border-radius: 10px;
}

.page-index__brand-strip img {
  max-width: 300px;
  height: auto;
  display: inline-block;
  min- /* Minimum size for content images */
}

/* Responsive Design */
@media (max-width: 849px) {
  .page-index__hide-for-small {
    display: none;
  }
  .page-index__show-for-small {
    display: block;
  }
  .page-index__hero-section {
    min-height: auto;
    padding-top: 0;
  }
  .page-index__hero-mobile-slider .page-index__hero-slide {
    padding-bottom: 0;
  }
  .page-index__hero-mobile-slider .page-index__jackpot-counter {
    flex-direction: column;
    gap: 8px;
  }
  .page-index__hero-mobile-slider .page-index__btn-cta {
    margin-left: auto;
    margin-right: auto;
  }
  .page-index__jackpot-amount {
    font-size: clamp(1.25rem, 6.5vw, 2.5rem);
  }
  .page-index__hero-desktop-slider .page-index__slider-nav {
    display: none; /* Hide desktop nav for mobile */
  }
  .page-index__slider-nav {
    bottom: 10px; /* Adjust for mobile */
  }
  .page-index__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 2-3 columns */
  }
}