.page-index {
  background-color: #100224;
  color: #F4F7FB;
  font-family: Arial, sans-serif;
}

.page-index__section-padding {
  padding: 40px 20px;
}

.page-index__bg-light {
  background-color: #1F0A32;
}

.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-index__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F4F7FB;
}

.page-index__subsection-title {
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #F4F7FB;
}

.page-index__section-description {
  font-size: 1em;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #D6E2FF;
}

.page-index__btn-cta {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-index__btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-index__btn-link {
  color: #6FA3FF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-index__btn-link:hover {
  color: #4A8BFF;
}

.page-index__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-index__btn-secondary:hover {
  background-color: #4A8BFF;
}

.text-gradient {
  background: linear-gradient(to right, #ff9500, #ff5e3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Ticker Section */
.page-index__ticker-section {
  background-color: #2F6BFF;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  min-height: 40px;
}

.page-index__ticker-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index__ticker-icon {
  font-size: 1.2em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-index__ticker-text-wrapper {
  overflow: hidden;
  flex-grow: 1;
}

.page-index__ticker-text {
  display: inline-block;
  padding-left: 100%; /* Start off-screen */
  animation: page-index__marquee 20s linear infinite;
  color: #FFFFFF;
  margin: 0;
  font-size: 0.95em;
}

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

/* Hero Section - Desktop */
.page-index__hero-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 50vw, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #100224;
}

.page-index__hero-desktop {
  width: 100%;
  height: 100%;
  position: relative;
  display: none; /* Hidden by default, shown on desktop */
}

.page-index__hero-desktop .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-desktop .page-index__hero-slide--active {
  opacity: 1;
}

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

.page-index__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(16, 2, 36, 0.7) 0%, rgba(16, 2, 36, 0.1) 50%, rgba(16, 2, 36, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index__hero-content {
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 1;
  color: #FFFFFF;
}

.page-index__hero-tagline {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index__jackpot-counter {
  background: linear-gradient(#ff9500, #ff5e3a);
  border-radius: 15px;
  padding: 15px 25px;
  margin: 20px auto;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(255, 94, 58, 0.5);
  color: #FFFFFF;
}

.page-index__jackpot-label {
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.page-index__jackpot-amount {
  font-size: 2.8em;
  font-weight: bold;
  display: block;
  line-height: 1;
  letter-spacing: 1px;
}

.page-index__hero-sub {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

.page-index__hero-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  font-size: 1.5em;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s ease;
}

.page-index__hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.page-index__hero-arrow--prev::before {
  content: '‹';
}

.page-index__hero-arrow--next::before {
  content: '›';
}

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

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

.page-index__hero-dots .dot.active {
  background: #FFFFFF;
}

/* Hero Section - Mobile */
.page-index__hero-mobile {
  width: 100%;
  height: 100%;
  position: relative;
  display: none; /* Hidden by default, shown on mobile */
}

.page-index__hero-mobile .page-index__hero-slide {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-color: #100224;
}

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

.page-index__hero-visual {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.page-index__hero-copy {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #100224;
}

.page-index__hero-mobile .page-index__hero-tagline {
  font-size: 1.8em;
  margin-bottom: 10px;
}

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

.page-index__hero-mobile .page-index__jackpot-label {
  font-size: 1em;
}

.page-index__hero-mobile .page-index__jackpot-amount {
  font-size: clamp(1.25rem, 6.5vw, 2.5rem);
  line-height: 1.2;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.page-index__hero-mobile .page-index__hero-sub {
  font-size: 1em;
  margin-bottom: 20px;
}

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

/* Brand Intro */
.page-index__brand-intro {
  padding-top: 10px;
}

.page-index__main-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

/* No fixed font-size for h1, rely on clamp for responsiveness if needed, but per rule: use weight, line-height, etc. */

.page-index__intro-description {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #D6E2FF;
}

/* Game Grid */
.page-index__game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

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

.page-index__game-tile:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

/* Category Section */
.page-index__category-section .page-index__section-title {
  margin-top: 0;
}

.page-index__sports-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.page-index__sports-text {
  flex: 1;
  text-align: left;
}

.page-index__sports-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #D6E2FF;
}

.page-index__sports-text .page-index__btn-cta {
  margin-top: 10px;
}

.page-index__sports-image {
  flex: 1;
  text-align: right;
}

.page-index__sports-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Promotions */
.page-index__promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.page-index__promo-card img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-index__promo-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F4F7FB;
}

.page-index__promo-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #D6E2FF;
}

/* Winners Section */
.page-index__winners-section .page-index__section-title,
.page-index__top-casino-winners .page-index__section-title {
  margin-bottom: 30px;
}

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

.page-index__winner-card {
  background-color: #1F0A32;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index__winner-game-icon 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__winner-game-name {
  font-weight: bold;
  font-size: 1.1em;
  color: #F4F7FB;
  margin-bottom: 5px;
}

.page-index__winner-user,
.page-index__winner-date {
  font-size: 0.9em;
  color: #D6E2FF;
}

.page-index__winner-amount-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(#ff9500, #ff5e3a);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(255, 94, 58, 0.4);
}

.page-index__winner-status {
  font-size: 0.8em;
  opacity: 0.8;
}

.page-index__winner-amount {
  font-size: 1.1em;
  line-height: 1.2;
}

/* Blog Section */
.page-index__blog-section .page-index__section-title {
  text-align: center;
  margin-bottom: 30px;
}

.page-index__post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-index__post-card {
  background-color: #1F0A32;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px 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-width: 200px;
  min-height: 200px;
}

.page-index__post-card h4 {
  padding: 15px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index__post-card h4 a {
  font-size: 1.3em;
  font-weight: bold;
  color: #F4F7FB;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}

.page-index__post-card h4 a:hover {
  color: #6FA3FF;
}

.page-index__post-summary {
  font-size: 0.95em;
  line-height: 1.6;
  color: #D6E2FF;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-index__post-card .page-index__btn-link {
  display: inline-block;
  margin: 0 15px 15px;
  align-self: flex-start;
}

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

/* FAQ Section */
.page-index__faq-section .page-index__section-title {
  margin-bottom: 30px;
}

.page-index__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__faq-item {
  background-color: #1F0A32;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-index__faq-question {
  display: block;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F4F7FB;
  position: relative;
  user-select: none;
}

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

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

.page-index__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #D6E2FF;
}

/* Brand Strip */
.page-index__brand-strip {
  text-align: center;
  padding-bottom: 60px;
}

.page-index__brand-strip img {
  max-width: 300px;
  height: auto;
  min-width: 200px;
  min-
}

/* Responsive Styles */
@media (min-width: 850px) {
  .page-index__hero-desktop {
    display: block;
  }
}

@media (max-width: 849px) {
  .page-index__hero-mobile {
    display: block;
  }

  .page-index__hero-desktop {
    display: none;
  }

  .page-index__hero-tagline {
    font-size: 1.5em;
  }

  .page-index__jackpot-amount {
    font-size: 2em;
  }

  .page-index__game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-index__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-index__sports-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index__sports-text {
    text-align: center;
  }
}

@media (max-width: 549px) {
  .page-index__section-padding {
    padding: 30px 15px;
  }

  .page-index__section-title {
    font-size: 1.8em;
  }

  .page-index__main-title {
    font-size: 2em;
  }

  .page-index__intro-description {
    font-size: 1em;
  }

  .page-index__hero-mobile .page-index__hero-tagline {
    font-size: 1.3em;
  }

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

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

  .page-index__winner-grid {
    grid-template-columns: 1fr;
  }

  .page-index__post-grid {
    grid-template-columns: 1fr;
  }

  .page-index__winner-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .page-index__winner-amount-badge {
    position: static;
    margin-top: 10px;
    align-self: flex-end;
  }
}

/* Global image constraints for content area */
.page-index img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-index__game-tile img, 
.page-index__sports-image img, 
.page-index__promo-card img, 
.page-index__post-card img {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure images in content sections are not too small on mobile */
@media (max-width: 768px) {
  .page-index img {
    max-width: 100%;
    height: auto;
  }
  .page-index__game-tile img, 
  .page-index__sports-image img, 
  .page-index__promo-card img, 
  .page-index__post-card img {
    max-width: 100%; /* Override any fixed width that might exceed on mobile */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px; /* Still enforce minimum size */
  }
}

.page-index__jackpot-amount {
  font-size: clamp(1.25rem, 6.5vw, 2.8em); /* Adjusted clamp for jackpot amount */
}

/* Ensure h1 is not too large */
.page-index__main-title {
  font-size: clamp(2em, 5vw, 3em); /* Example clamp if a font-size is needed */
}