.page-index {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
  }

  .page-index__ticker-section {
    background-color: #11271B;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 1px solid #2E7A4E;
  }

  .page-index__ticker-wrapper {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
  }

  .page-index__ticker-text {
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
    font-size: 1.1em;
    color: #A7D9B8;
    margin: 0;
  }

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

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

  .page-index__hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to bottom */
    align-items: center;
    overflow: hidden;
    padding-bottom: 50px;
    background-color: #0A4B2C; /* Fallback */
    padding-top: 10px; /* Small top padding */
  }

  .page-index__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

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

  .page-index__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    width: 100%;
  }

  .page-index__hero-caption {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
    max-width: 600px;
  }

  .page-index__hero-slogan {
    font-size: 2.2em;
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
  }

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

  .page-index__jackpot-label {
    font-weight: bold;
    color: #F2FFF6;
    font-size: 1.1em;
  }

  .page-index__jackpot-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #F2FFF6;
  }

  .page-index__hero-subtext {
    font-size: 1.2em;
    color: #A7D9B8;
    margin-bottom: 25px;
  }

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

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

  .page-index__brand-intro-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-index__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }

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

  .page-index__intro-description {
    font-size: 1.2em;
    color: #A7D9B8;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
  }

  .page-index__popular-games-section,
  .page-index__category-section,
  .page-index__jackpot-winners-section,
  .page-index__blog-section,
  .page-index__faq-section,
  .page-index__brand-bar-section,
  .page-index__feature-promotion-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

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

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

  .page-index__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #F2FFF6;
  }

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

  .page-index__section-description {
    font-size: 1.1em;
    color: #A7D9B8;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-index__game-card {
    background-color: #11271B;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #F2FFF6;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #2E7A4E;
  }

  .page-index__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .page-index__game-card img {
    width: 100%;
    
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #2E7A4E;
  }

  .page-index__game-title {
    padding: 15px 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #F2FFF6;
    display: block;
  }

  .page-index__category-section--sports {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #0A4B2C;
    border-radius: 20px;
    padding: 40px;
  }

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

  .page-index__sports-content .page-index__section-title,
  .page-index__sports-content .page-index__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .page-index__sports-image-wrapper {
    flex: 1;
    min-width: 300px;
  }

  .page-index__sports-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
  }

  .page-index__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    transition: opacity 0.3s ease;
  }

  .page-index__cta-button:hover {
    opacity: 0.9;
  }

  .page-index__feature-promotion-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
  }

  .page-index__feature-card {
    background-color: #11271B;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid #2E7A4E;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .page-index__card-title {
    font-size: 1.8em;
    color: #F2FFF6;
    margin-bottom: 15px;
  }

  .page-index__card-description {
    color: #A7D9B8;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .page-index__app-mockup {
    max-width: 250px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-index__card-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
  }

  .page-index__card-button:hover {
    opacity: 0.9;
  }

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

  .page-index__winner-card {
    background-color: #11271B;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #2E7A4E;
    position: relative;
    overflow: hidden;
  }

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

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

  .page-index__winner-game-name {
    font-weight: bold;
    color: #F2FFF6;
    font-size: 1.1em;
  }

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

  .page-index__winner-amount-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, #F2C14E, #ff9500);
    color: #08160F;
    padding: 10px 15px;
    border-top-left-radius: 15px;
    font-weight: bold;
    text-align: right;
  }

  .page-index__won-label {
    display: block;
    font-size: 0.8em;
  }

  .page-index__won-amount {
    font-size: 1.2em;
    display: block;
  }

  .page-index__blog-title {
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #F2FFF6;
  }

  .page-index__post-card {
    background-color: #11271B;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #2E7A4E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .page-index__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .page-index__post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #2E7A4E;
  }

  .page-index__post-card-title {
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 5px;
    line-height: 1.3;
  }

  .page-index__post-card-title a {
    color: #F2FFF6;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .page-index__post-card-title a:hover {
    color: #2AD16F;
  }

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

  .page-index__post-link {
    display: inline-block;
    color: #2AD16F;
    text-decoration: none;
    font-weight: bold;
    padding: 0 15px 15px;
    transition: color 0.3s ease;
  }

  .page-index__post-link:hover {
    color: #57E38D;
  }

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

  .page-index__load-more-button {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: opacity 0.3s ease;
    display: inline-block;
  }

  .page-index__load-more-button:hover {
    opacity: 0.9;
  }

  .page-index__faq-section {
    background-color: #11271B;
    border-top: 1px solid #2E7A4E;
  }

  .page-index__faq-accordion {
    margin-top: 40px;
  }

  .page-index__faq-item {
    background-color: #08160F;
    border: 1px solid #2E7A4E;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
  }

  .page-index__faq-question {
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6;
    cursor: pointer;
    display: block;
    position: relative;
    user-select: none;
  }

  .page-index__faq-question::marker {
    display: none;
  }

  .page-index__faq-question::before {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #2AD16F;
  }

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

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

  .page-index__faq-answer p {
    margin-bottom: 15px;
  }

  .page-index__faq-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: opacity 0.3s ease;
  }

  .page-index__faq-button:hover {
    opacity: 0.9;
  }

  .page-index__brand-bar-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #0A4B2C;
    border-top: 1px solid #2E7A4E;
  }

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

  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .page-index__hero-section {
      height: 550px;
    }
    .page-index__hero-slogan {
      font-size: 1.8em;
    }
    .page-index__jackpot-amount {
      font-size: 2em;
    }
    .page-index__main-title {
      font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-index__section-title {
      font-size: 2em;
    }
    .page-index__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .page-index__category-section--sports {
      flex-direction: column;
      text-align: center;
    }
    .page-index__sports-content .page-index__section-title,
    .page-index__sports-content .page-index__section-description {
      text-align: center;
    }
    .page-index__feature-promotion-section {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index__winners-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index__blog-title {
      font-size: 1.8em;
    }
    .page-index__post-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }

  @media (max-width: 768px) {
    .page-index__hero-section {
      height: 500px;
      padding-bottom: 30px;
    }
    .page-index__hero-slogan {
      font-size: 1.5em;
    }
    .page-index__jackpot-amount {
      font-size: 1.8em;
    }
    .page-index__hero-cta {
      padding: 12px 25px;
      font-size: 1.1em;
    }
    .page-index__main-title {
      font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-index__intro-description {
      font-size: 1.1em;
    }
    .page-index__section-title {
      font-size: 1.8em;
    }
    .page-index__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .page-index__game-card img {
      
    }
    .page-index__feature-promotion-section {
      grid-template-columns: 1fr;
    }
    .page-index__winners-grid {
      grid-template-columns: 1fr;
    }
    .page-index__winner-card {
      padding: 15px;
    }
    .page-index__blog-title {
      font-size: 1.6em;
    }
    .page-index__post-grid {
      grid-template-columns: 1fr;
    }
    .page-index__post-image {
      height: 180px;
    }
    .page-index__faq-question {
      font-size: 1.1em;
    }
    .page-index__ticker-text {
      font-size: 1em;
    }
    /* Ensure content images do not overflow */
    .page-index__popular-games-section img,
    .page-index__category-section img,
    .page-index__feature-promotion-section img,
    .page-index__jackpot-winners-section img,
    .page-index__blog-section img {
      max-width: 100%;
      height: auto;
    }
  }

  @media (max-width: 480px) {
    .page-index__hero-section {
      height: 400px;
      padding-bottom: 20px;
    }
    .page-index__hero-caption {
      padding: 15px 20px;
    }
    .page-index__hero-slogan {
      font-size: 1.2em;
    }
    .page-index__jackpot-amount {
      font-size: 1.5em;
    }
    .page-index__jackpot-counter {
      padding: 8px 15px;
    }
    .page-index__hero-subtext {
      font-size: 1em;
    }
    .page-index__hero-cta {
      padding: 10px 20px;
      font-size: 1em;
    }
    .page-index__main-title {
      font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-index__intro-description {
      font-size: 1em;
    }
    .page-index__section-title {
      font-size: 1.6em;
    }
    .page-index__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
    }
    .page-index__game-card img {
      
    }
    .page-index__game-title {
      font-size: 1em;
      padding: 10px;
    }
    .page-index__winner-game-icon {
      width: 60px;
      height: 60px;
    }
    .page-index__winner-game-name {
      font-size: 1em;
    }
    .page-index__won-amount {
      font-size: 1em;
    }
    .page-index__post-image {
      height: 150px;
    }
    .page-index__post-card-title {
      font-size: 1.2em;
    }
    .page-index__faq-question {
      font-size: 1em;
      padding: 15px 15px 15px 20px;
    }
    .page-index__faq-question::before {
      right: 15px;
    }
    .page-index__faq-answer {
      padding: 0 15px 15px;
    }
  }