.page-index__ticker-section {
  background-color: #1a1a2e;
  color: #FFFFFF;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
}

.page-index__ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: absolute;
  left: 0;
  animation: marquee 20s linear infinite;
}

.page-index__ticker-icon {
  margin-left: 20px;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index__marquee-container {
  display: inline-block; /* Ensure it takes content width */
}

.page-index__marquee-text {
  margin: 0;
  display: inline-block;
  padding-right: 50px; /* Space between repeated text */
}

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

@media (prefers-reduced-motion: reduce) {
  .page-index__ticker-content {
    animation: none;
  }
}

.page-index__hero-section {
  position: relative;
  background-color: #100224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  text-align: center;
}

.page-index__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: #FFFFFF;
  max-width: 900px;
}

.page-index__hero-tagline {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-index__jackpot-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.page-index__jackpot-amount {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  background: linear-gradient(to right, #ff9500, #ff5e3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-index__jackpot-label {
  background-color: #ff5e3a;
  color: #FFFFFF;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 5px;
}

.page-index__hero-subtext {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-index__hero-cta-button {
  display: inline-block;
  background-color: #83a1f2;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-index__hero-cta-button:hover {
  background-color: #688cec;
}

.page-index__intro-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #1a1a2e;
  color: #FFFFFF;
}

.page-index__main-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(to right, #26A9E0, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-index__intro-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.page-index__popular-games-section,
.page-index__category-section,
.page-index__feature-promo-section,
.page-index__winner-section,
.page-index__blog-section,
.page-index__faq-section {
  padding: 60px 20px;
  background-color: #100224;
  color: #FFFFFF;
}

.page-index__category-slots,
.page-index__category-table-poker {
  background-color: #1a1a2e;
}

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

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

.page-index__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index__game-grid,
.page-index__winner-grid,
.page-index__blog-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}

.page-index__game-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.page-index__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 15px;
}

.page-index__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-index__game-thumbnail {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index__game-title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  padding: 0 10px;
}

.page-index__sports-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index__sports-cta-button {
  display: inline-block;
  background-color: #83a1f2;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-index__sports-cta-button:hover {
  background-color: #688cec;
}

.page-index__sports-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-index__promo-card {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-index__promo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-index__promo-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index__promo-button {
  display: inline-block;
  background-color: #ff5e3a;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index__promo-button:hover {
  background-color: #ff7e5a;
}

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

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

.page-index__winner-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

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

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

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

.page-index__win-amount {
  text-align: right;
  position: relative;
}

.page-index__win-label {
  display: block;
  font-size: 0.8em;
  color: #ff9500;
  font-weight: bold;
}

.page-index__amount {
  font-size: 1.3em;
  font-weight: bold;
  color: #ff9500;
}

.page-index__blog-title {
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

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

.page-index__blog-card {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FFFFFF;
}

.page-index__blog-thumbnail {
  width: 100%;
  height: 169px;
  object-fit: cover;
}

.page-index__blog-card-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 15px 15px 10px 15px;
}

.page-index__blog-card-title a {
  color: #FFFFFF;
  text-decoration: none;
}

.page-index__blog-card-title a:hover {
  color: #26A9E0;
}

.page-index__blog-summary {
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-index__blog-read-more {
  display: inline-block;
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px 15px 15px;
}

.page-index__blog-read-more:hover {
  text-decoration: underline;
}

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

.page-index__load-more-button {
  display: inline-block;
  background-color: #ff5e3a;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index__load-more-button:hover {
  background-color: #ff7e5a;
}

.page-index__faq-title {
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

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

.page-index__accordion-item {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index__accordion-summary {
  display: block;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  list-style: none;
}

.page-index__accordion-summary::marker {
  display: none;
}

.page-index__accordion-summary::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #26A9E0;
  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 25px 18px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

.page-index__brand-bar {
  background-color: #1a1a2e;
  padding: 40px 20px;
  text-align: center;
}

.page-index__brand-logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .page-index__winner-grid,
  .page-index__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-index__ticker-section {
    height: 40px;
  }
  .page-index__ticker-icon {
    margin-left: 10px;
  }
  .page-index__hero-image {
    max-height: 400px;
  }
  .page-index__hero-tagline {
    font-size: 1.5em;
  }
  .page-index__jackpot-amount {
    font-size: clamp(1.8em, 8vw, 3em);
  }
  .page-index__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-index__section-title,
  .page-index__blog-title,
  .page-index__faq-title {
    font-size: 1.6em;
  }
  .page-index__game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-index__winner-grid,
  .page-index__blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-index__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index__promo-card {
    padding: 20px;
  }
  .page-index__winner-card {
    flex-direction: column;
    text-align: center;
  }
  .page-index__winner-icon {
    margin-bottom: 10px;
  }
  .page-index__winner-info {
    align-items: center;
  }
  .page-index__win-amount {
    margin-top: 10px;
    text-align: center;
  }

  .page-index__game-thumbnail,
  .page-index__sports-image,
  .page-index__promo-image,
  .page-index__blog-thumbnail {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images do not overflow */
  .page-index__popular-games-section img,
  .page-index__category-section img,
  .page-index__feature-promo-section img,
  .page-index__winner-section img,
  .page-index__blog-section img {
    max-width: 100%;
    height: auto;
  }

  .page-index__popular-games-section img.page-index__game-thumbnail,
  .page-index__category-section img.page-index__game-thumbnail,
  .page-index__feature-promo-section img.page-index__promo-image,
  .page-index__winner-section img.page-index__winner-icon,
  .page-index__blog-section img.page-index__blog-thumbnail {
    min-width: 200px;
    min-height: 200px;
  }

  .page-index__winner-section img.page-index__winner-icon {
    
    
    min-width: unset;
    min-height: unset;
  }

  .page-index__brand-logo {
    min-width: 200px;
    min-height: 100px;
  }

  .page-index__game-thumbnail {
    height: 120px; /* Adjust height for smaller screens */
  }

  .page-index__sports-image {
    width: 100%; /* Ensure it doesn't overflow */
  }

  .page-index__promo-image {
    width: 100%; /* Ensure it doesn't overflow */
  }

  .page-index__blog-thumbnail {
    height: 150px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .page-index__game-grid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
  .page-index__promo-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-index__game-thumbnail {
    height: 180px;
  }
}