.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  box-sizing: border-box;
  overflow-x: hidden;
}

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

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

.page-index__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6;
}

.page-index__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-index__text-gradient {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-index__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFF6D6;
}

.page-index__section-lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 246, 214, 0.8);
}

/* Buttons */
.page-index__btn-primary,
.page-index__btn-secondary,
.page-index__btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-index__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-index__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD86A;
  border: 2px solid #FFD86A;
}

.page-index__btn-secondary:hover {
  background: #FFD86A;
  color: #111111;
}

.page-index__btn-cta {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
  font-size: 1.1rem;
  padding: 15px 30px;
  min-width: 180px;
}

.page-index__btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-index__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Module 1: Ticker */
.page-index__ticker {
  width: 100%;
  overflow: hidden;
  background-color: #3A2A12; /* Border */
  color: #FFF6D6;
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

.page-index__ticker-icon {
  margin-left: 15px;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-index__ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}

.page-index__ticker-text {
  padding-right: 50px; /* Space between repeating text */
}

@keyframes ticker-scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-index__ticker-track {
    animation-play-state: paused;
  }
}

/* Module 2: Hero Jackpot */
.page-index__hero-jackpot {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  background-color: #100224; /* Dark purple base */
  box-sizing: border-box;
  overflow-x: hidden;
  padding-top: 10px; /* Small top padding */
  position: relative;
}

.page-index__hero-visual {
  order: 1;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

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

@media (min-width: 850px) {
  .page-index__hero-image {
    aspect-ratio: 16/5;
  }
}

.page-index__hero-copy {
  order: 2;
  position: static;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 16px 12px 30px;
  text-align: center;
  color: #FFF6D6;
  z-index: 1;
}

.page-index__hero-tagline {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD36B;
}

.page-index__jackpot-counter {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD36B; /* Glow color */
  border-radius: 15px;
  padding: 15px 10px;
  background-color: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-index__jackpot-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F2C14E;
}

.page-index__jackpot-amount {
  display: block;
  font-size: clamp(1.8rem, 6.5vw, 3.5rem);
  font-weight: 800;
  color: #FFF6D6;
  word-break: break-all;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-index__jackpot-currency {
  display: block;
  font-size: 1rem;
  margin-top: 4px;
  color: rgba(255, 246, 214, 0.7);
}

.page-index__hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 25px;
  color: rgba(255, 246, 214, 0.8);
}

/* Module 3: Brand H1 & Lead */
.page-index__intro {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6;
}

.page-index__main-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index__lead-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 246, 214, 0.85);
}

/* Module 4 & 5: Game Grid */
.page-index__game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index__game-tile {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  width: 250px;
  height: 250px; /* Desktop fixed square */
  border: 1px solid rgba(242, 193, 78, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-index__game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-index__game-tile img {
  width: 250px;
  height: 250px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.2s ease;
}

.page-index__game-tile:hover img {
  transform: scale(1.05);
}

/* Module 5: Category Sections */
.page-index__category-sports .page-index__promo-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index__category-sports .page-index__promo-text {
  flex: 1;
  text-align: left;
}

.page-index__category-sports .page-index__promo-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-index__category-sports .page-index__promo-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-index__category-sports .page-index__btn-primary {
  margin-top: 25px;
}

/* Module 6: Feature Promos */
.page-index__promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.page-index__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index__promo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index__promo-card .page-index__card-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #F2C14E;
  padding: 0 20px;
}

.page-index__promo-card .page-index__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-index__promo-card .page-index__card-title a:hover {
  text-decoration: underline;
}

.page-index__promo-card .page-index__card-text {
  font-size: 0.95rem;
  color: rgba(255, 246, 214, 0.7);
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Module 7 & 8: Winners List */
.page-index__winner-title {
  text-align: center;
  line-height: 1.1;
  margin-bottom: 30px;
}

.page-index__winner-title-line {
  display: block;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  background: linear-gradient(180deg, #ffb347, #ff8c00);
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
}

.page-index__winner-title-big {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  color: rgba(255, 211, 107, 0.45);
  letter-spacing: 0.02em;
}

.page-index__winner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index__winner-row {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  width: 100%;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index__winner-thumb {
  position: relative;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
}

.page-index__winner-thumb img {
  
  
  object-fit: cover;
  border-radius: 8px;
  display: block;
  min-
  min-
}

.page-index__winner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #7b2cbf; /* Purple */
  color: #fff;
  text-align: center;
  line-height: 1.1;
  clip-path: polygon(50% 0%, 61% 10%, 75% 6%, 80% 20%, 95% 22%, 90% 36%, 100% 50%, 90% 64%, 95% 78%, 80% 80%, 75% 94%, 61% 90%, 50% 100%, 39% 90%, 25% 94%, 20% 80%, 5% 78%, 10% 64%, 0% 50%, 10% 36%, 5% 22%, 20% 20%, 25% 6%, 39% 10%);
}

.page-index__winner-badge em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 500;
}

.page-index__winner-badge strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFD36B; /* Glow color */
}

.page-index__winner-badge--overlay {
  display: none; /* Hidden by default for desktop */
  position: absolute;
  top: -8px;
  right: -8px;
  width: 55px;
  height: 55px;
  z-index: 2;
}

.page-index__winner-badge--side {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  margin-left: auto;
  z-index: 1;
}

.page-index__winner-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  color: #FFF6D6;
}

.page-index__winner-game {
  font-weight: 700;
  color: #F2C14E;
  font-size: 1rem;
}

.page-index__winner-user,
.page-index__winner-date {
  font-size: 0.85rem;
  color: rgba(255, 246, 214, 0.7);
}

/* Module 9: Blog Grid */
.page-index__post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-index__post-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-index__post-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  min-width: 200px;
  min-
}

.page-index__post-card .page-index__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index__post-card .page-index__card-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #F2C14E;
}

.page-index__post-card .page-index__card-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-index__post-card .page-index__card-text {
  font-size: 0.9rem;
  color: rgba(255, 246, 214, 0.7);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index__read-more {
  color: #FFD36B;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
}

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

/* Module 10: FAQ */
.page-index__faq-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

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

details.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background-color: #0A0A0A; /* Background */
}

details.page-index__faq-item summary.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}

details.page-index__faq-item summary.page-index__faq-question::-webkit-details-marker {
  display: none;
}

details.page-index__faq-item summary.page-index__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-index__faq-qtext {
  flex: 1;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-index__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  line-height: 1;
}

details.page-index__faq-item .page-index__faq-answer {
  padding: 0 20px 20px;
  background-color: #111111; /* Card BG */
  border-radius: 0 0 8px 8px;
  color: rgba(255, 246, 214, 0.8);
  font-size: 0.95rem;
}

/* Module 11: Brand Bar */
.page-index__brand-bar {
  text-align: center;
  background-color: #0A0A0A; /* Background */
  padding: 30px 0;
}

.page-index__brand-bar img {
  max-width: 200px;
  height: auto;
  display: inline-block;
  filter: brightness(1.2);
  min-width: 200px;
  min-
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-index__container {
    padding: 0 20px;
  }

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

  .page-index__game-tile,
  .page-index__game-tile img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .page-index__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-index__post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .page-index__category-sports .page-index__promo-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .page-index__category-sports .page-index__promo-text {
    text-align: center;
  }
}

@media (max-width: 849px) {
  .page-index__hero-jackpot {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .page-index__hero-image,
  .page-index__hero-visual img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: unset !important;
    object-fit: contain !important;
    max-height: none !important;
    display: block !important;
  }
  .page-index__hero-copy {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    padding: 16px 15px 30px !important;
  }
  .page-index__jackpot-counter {
    max-width: 300px;
    padding: 10px;
  }
  .page-index__jackpot-amount {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
  .page-index__ticker {
    font-size: 0.8rem;
  }
  .page-index__winner-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-index__winner-row {
    padding: 12px;
  }
  .page-index__winner-badge--side {
    display: none;
  }
  .page-index__winner-badge--overlay {
    display: flex;
  }
  .page-index__winners-hot .page-index__container,
  .page-index__winners-top .page-index__container {
    padding: 0 15px;
    overflow-x: hidden;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .page-index__ticker {
    padding: 6px 0;
  }
  .page-index__hero-jackpot {
    padding-top: 10px !important; /* Ensure small top padding */
  }
  .page-index__hero-image,
  .page-index__hero-visual img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: unset !important;
    max-height: none !important;
  }
  .page-index__section-padding {
    padding: 30px 0;
  }
  .page-index__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-index__game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .page-index__game-tile,
  .page-index__game-tile img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
  }
  .page-index__promo-dual .page-index__promo-grid {
    gap: 20px;
  }
  .page-index__promo-card img,
  .page-index__category-sports .page-index__promo-image-wrapper img,
  .page-index__post-card img,
  .page-index__brand-bar img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index__btn-primary,
  .page-index__btn-secondary,
  .page-index__btn-cta,
  .page-index a[class*="button"],
  .page-index a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index__button-group {
    flex-direction: column !important;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index__post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  details.page-index__faq-item summary.page-index__faq-question {
    padding: 15px;
  }
  .page-index__faq-qtext {
    font-size: 15px;
  }
  details.page-index__faq-item .page-index__faq-answer {
    padding: 0 15px 15px;
  }
  .page-index__winner-row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .page-index__winner-thumb {
    flex: 0 0 auto;
    margin-bottom: 10px;
  }
  .page-index__winner-info {
    flex: 1 1 100%;
    text-align: center;
  }
}