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

  .page-index__ticker-section {
    width: 100%;
    background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
  }

  .page-index__ticker-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: page-index__marquee 20s linear infinite;
    padding-left: 100%; /* Start off-screen */
  }

  .page-index__ticker-text {
    color: #FFFFFF;
    font-size: 16px;
    margin: 0;
    padding: 0 20px;
  }

  .page-index__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding as per rule */
    background-color: #100224; /* Dark background for hero */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    justify-content: center;
  }

  .page-index__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page-index__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px; /* Ensure minimum size */
  }

  .page-index__hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .page-index__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 600px;
  }

  .page-index__intro-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 700px;
  }

  .page-index__jackpot-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #ff9500, #ff5e3a);
    padding: 10px 20px;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .page-index__jackpot-amount {
    font-size: 24px;
    font-weight: 900;
  }

  .page-index__hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }

  .page-index__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    min-width: 150px;
  }

  .page-index__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
  }

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

  .page-index__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #6FA3FF;
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.2);
  }

  .page-index__btn--secondary:hover {
    background-color: #6FA3FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.4);
  }

  .page-index__section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1F2D3D;
  }

  .page-index__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #1F2D3D;
  }

  .page-index__games-overview-section,
  .page-index__category-section,
  .page-index__promotions-section,
  .page-index__winners-section,
  .page-index__casino-winners-section,
  .page-index__blog-section,
  .page-index__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

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

  .page-index__category-section:nth-of-type(even) {
    background-color: #E6EEF7;
  }

  .page-index__game-grid,
  .page-index__promotions-grid,
  .page-index__winner-grid,
  .page-index__post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }

  .page-index__game-card,
  .page-index__promo-card,
  .page-index__winner-card,
  .page-index__post-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .page-index__game-card:hover,
  .page-index__promo-card:hover,
  .page-index__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .page-index__game-link {
    text-decoration: none;
    color: #1F2D3D;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .page-index__game-thumbnail,
  .page-index__post-thumbnail,
  .page-index__promo-image,
  .page-index__sports-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px;
  }

  .page-index__game-title {
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-index__category-section--sports {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .page-index__sports-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

  .page-index__promo-card {
    padding: 25px;
    text-align: left;
  }

  .page-index__promo-card .page-index__btn {
    margin-top: 15px;
    width: auto;
    display: inline-block;
  }

  .page-index__promo-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2F6BFF;
  }

  .page-index__promo-description {
    font-size: 16px;
    line-height: 1.5;
    color: #1F2D3D;
  }

  .page-index__winner-card {
    display: flex;
    align-items: center;
    padding: 15px;
    text-align: left;
    position: relative;
  }

  .page-index__winner-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

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

  .page-index__winner-game {
    font-weight: bold;
    font-size: 17px;
    color: #2F6BFF;
  }

  .page-index__winner-user,
  .page-index__winner-date {
    font-size: 14px;
    color: #1F2D3D;
  }

  .page-index__winner-amount-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(to right, #ff9500, #ff5e3a);
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .page-index__text-gradient {
    background: linear-gradient(to right, #ff9500, #ff5e3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers that don't support -webkit-text-fill-color */
  }

  .page-index__post-card {
    text-align: left;
  }

  .page-index__post-thumbnail {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .page-index__post-title {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 15px 10px;
    line-height: 1.4;
  }

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

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

  .page-index__post-excerpt {
    font-size: 15px;
    color: #1F2D3D;
    margin: 0 15px 15px;
    line-height: 1.5;
    flex-grow: 1;
  }

  .page-index__read-more {
    display: inline-block;
    color: #6FA3FF;
    text-decoration: none;
    font-weight: bold;
    padding: 0 15px 15px;
  }

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

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

  .page-index__faq-accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-index__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
  }

  .page-index__faq-question {
    display: block;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #2F6BFF;
    cursor: pointer;
    position: relative;
    user-select: none;
    background-color: #E6EEF7;
    border-radius: 8px;
  }

  .page-index__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    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: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #1F2D3D;
    border-top: 1px solid #D6E2FF;
  }

  .page-index__faq-answer p:last-child {
    margin-bottom: 0;
  }

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

  .page-index__brand-logo {
    max-width: 150px;
    height: auto;
    display: inline-block;
  }

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

  @media (max-width: 1024px) {
    .page-index__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .page-index__post-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index__hero-section {
      min-height: 500px;
    }
    .page-index__main-title {
      font-size: clamp(2rem, 6vw, 3rem);
    }
  }

  @media (max-width: 768px) {
    .page-index__hero-section {
      padding: 0;
      min-height: 450px;
    }

    .page-index__hero-image-wrapper {
      max-height: 300px;
    }

    .page-index__hero-image {
      min-height: 200px;
    }

    .page-index__hero-content {
      padding: 30px 15px;
    }

    .page-index__main-title {
      font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-index__intro-text {
      font-size: 16px;
    }

    .page-index__jackpot-amount {
      font-size: 20px;
    }

    .page-index__hero-actions {
      flex-direction: column;
      gap: 15px;
    }

    .page-index__btn {
      width: 100%;
      max-width: 250px;
    }

    .page-index__section-title {
      font-size: 28px;
    }

    .page-index__section-description {
      font-size: 16px;
    }

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

    .page-index__winner-card {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      padding-bottom: 40px; /* Make space for absolute badge */
    }

    .page-index__winner-icon {
      margin-bottom: 10px;
      margin-right: 0;
    }

    .page-index__winner-details {
      width: 100%;
    }

    .page-index__winner-amount-badge {
      bottom: 10px;
      right: 15px;
    }

    .page-index__post-title {
      font-size: 18px;
    }

    .page-index__faq-question {
      font-size: 16px;
    }

    /* Mobile overflow prevention */
    .page-index img {
      max-width: 100%;
      height: auto;
    }
  }

  @media (max-width: 480px) {
    .page-index__game-grid,
    .page-index__promotions-grid,
    .page-index__winner-grid,
    .page-index__post-grid {
      grid-template-columns: 1fr;
    }
    .page-index__hero-section {
      min-height: 400px;
    }
    .page-index__jackpot-info {
      font-size: 16px;
      padding: 8px 15px;
    }
    .page-index__jackpot-amount {
      font-size: 20px;
    }
    .page-index__section-title {
      font-size: 24px;
    }
    .page-index__ticker-text {
      font-size: 14px;
    }
  }