.page-index {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: sans-serif;
    line-height: 1.6;
  }

  .page-index__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .page-index__ticker-section {
    background-color: #17191F;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 1px solid #A84F0C;
  }

  .page-index__ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
  }

  .page-index__ticker-icon {
    margin-right: 10px;
    font-size: 1.2em;
    color: #FF8C1A;
  }

  .page-index__ticker-text {
    margin: 0;
    color: #FFF3E6;
    font-size: 0.9em;
  }

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

  .page-index__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    padding-top: 10px; /* Small top padding for the first section */
  }

  .page-index__hero-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .page-index__hero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #100224; /* Fallback */
  }

  .page-index__hero-image {
    width: 100%;
    height: 800px; /* Default height */
    object-fit: cover;
    display: block;
  }

  .page-index__hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(13, 14, 18, 0.9) 0%, rgba(13, 14, 18, 0) 100%);
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
  }

  .page-index__hero-subtitle {
    font-size: 2.2em;
    color: #FFB04D;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .page-index__jackpot-counter {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #FF8C1A, #FFA53A);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .page-index__jackpot-label {
    font-size: 1.1em;
    font-weight: bold;
    color: #FFF3E6;
    margin-right: 10px;
  }

  .page-index__jackpot-value {
    font-size: 2em;
    font-weight: bold;
    color: #0D0E12;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }

  .page-index__hero-description {
    font-size: 1.1em;
    color: #FFF3E6;
    margin-bottom: 25px;
  }

  .page-index__hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 26, 0.4);
  }

  .page-index__hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.6);
  }

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

  .page-index__hero-prev, .page-index__hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #FFF3E6;
    font-size: 1.5em;
    padding: 8px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }

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

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

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

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

  .page-index__intro-section {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto 50px;
  }

  .page-index__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .text-gradient {
    background: linear-gradient(90deg, #FFB04D, #FF8C1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers that don't support text-fill-color */
  }

  .page-index__intro-description {
    font-size: 1.1em;
    color: #FFF3E6;
    margin-bottom: 0;
  }

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

  .page-index__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF3E6;
  }

  .page-index__popular-games-section {
    padding: 60px 20px;
    background-color: #0D0E12;
  }

  .page-index__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-index__game-card {
    background-color: #17191F;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #FFF3E6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

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

  .page-index__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card size */
    object-fit: cover;
    display: block;
  }

  .page-index__game-name {
    padding: 15px;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    background-color: rgba(23, 25, 31, 0.8); /* Slightly darker for text contrast */
  }

  .page-index__category-section {
    padding: 60px 20px;
  }

  .page-index__category-section--slots {
    background-color: #17191F;
  }

  .page-index__category-section--fishing {
    background-color: #0D0E12;
  }

  .page-index__category-section--table {
    background-color: #17191F;
  }

  .page-index__category-section--sports {
    background-color: #0D0E12;
    text-align: center;
  }

  .page-index__feature-promo-section {
    padding: 60px 20px;
    background-color: #17191F;
  }

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

  .page-index__feature-card {
    background-color: #0D0E12;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .page-index__feature-title {
    font-size: 1.6em;
    color: #FF8C1A;
    margin-bottom: 15px;
  }

  .page-index__feature-description {
    color: #FFF3E6;
    margin-bottom: 20px;
  }

  .page-index__app-mockup {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .page-index__jackpot-winners-section, .page-index__casino-winners-section {
    padding: 60px 20px;
    background-color: #0D0E12;
  }

  .page-index__winner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

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

  .page-index__winner-game-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #FF8C1A;
  }

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

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

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

  .page-index__winner-amount {
    text-align: right;
    position: relative;
    padding-left: 10px;
  }

  .page-index__winner-badge {
    background-color: #D96800;
    color: #FFF3E6;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
  }

  .page-index__winner-value {
    font-size: 1.3em;
    font-weight: bold;
    color: #FF8C1A;
    display: block;
  }

  .page-index__blog-section {
    padding: 60px 20px;
    background-color: #17191F;
  }

  .page-index__post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }

  .page-index__post-card {
    background-color: #0D0E12;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
  }

  .page-index__post-image {
    width: 100%;
    height: 200px; /* Consistent height for blog images */
    object-fit: cover;
  }

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

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

  .page-index__post-title a:hover {
    color: #FFA53A;
  }

  .page-index__post-excerpt {
    color: #FFF3E6;
    margin: 0 15px 20px;
    flex-grow: 1;
  }

  .page-index__button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 140, 26, 0.3);
  }

  .page-index__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.5);
  }

  .page-index__button--small {
    font-size: 0.9em;
    padding: 8px 20px;
    margin: 0 15px 15px;
  }

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

  .page-index__faq-section {
    padding: 60px 20px;
    background-color: #0D0E12;
  }

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

  .page-index__accordion-item {
    background-color: #17191F;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .page-index__accordion-header {
    background-color: #FF8C1A;
    color: #FFF3E6;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
  }

  .page-index__accordion-header:hover {
    background-color: #FFA53A;
  }

  .page-index__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
  }

  .page-index__accordion-header[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(180deg);
  }

  .page-index__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #17191F;
  }

  .page-index__accordion-content--expanded {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px 25px;
  }

  .page-index__accordion-content p {
    color: #FFF3E6;
    margin-bottom: 15px;
  }

  .page-index__brand-bar {
    text-align: center;
    padding: 40px 20px;
    background-color: #17191F;
    border-top: 1px solid #A84F0C;
  }

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

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .page-index__hero-image {
      height: 600px;
    }
    .page-index__hero-subtitle {
      font-size: 1.8em;
    }
    .page-index__jackpot-value {
      font-size: 1.8em;
    }
    .page-index__main-title {
      font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-index__section-title {
      font-size: 2em;
    }
    .page-index__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .page-index__winner-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index__post-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }

  @media (max-width: 768px) {
    .page-index__hero-image {
      height: 500px;
      max-width: 100%; /* Ensure mobile images don't overflow */
      height: auto; /* Ensure mobile images don't overflow */
    }
    .page-index__hero-content-overlay {
      padding: 20px 15px;
    }
    .page-index__hero-subtitle {
      font-size: 1.5em;
    }
    .page-index__jackpot-value {
      font-size: 1.5em;
    }
    .page-index__hero-button {
      padding: 12px 30px;
      font-size: 1em;
    }
    .page-index__main-title {
      font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-index__intro-description {
      font-size: 1em;
    }
    .page-index__section-title {
      font-size: 1.8em;
    }
    .page-index__section-description {
      font-size: 1em;
    }
    .page-index__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .page-index__game-image {
      height: 150px;
    }
    .page-index__feature-grid {
      grid-template-columns: 1fr;
    }
    .page-index__winner-grid {
      grid-template-columns: 1fr;
    }
    .page-index__post-grid {
      grid-template-columns: 1fr;
    }
    .page-index__post-image {
      height: 180px;
    }
    .page-index__accordion-header {
      font-size: 1.1em;
      padding: 15px 20px;
    }
    .page-index__accordion-content {
      padding: 0 20px;
    }
    .page-index__accordion-content--expanded {
      padding: 10px 20px 20px;
    }
    .page-index__game-image, .page-index__post-image, .page-index__app-mockup {
      max-width: 100% !important;
      height: auto !important;
    }
    .page-index img {
      max-width: 100% !important;
      height: auto !important;
    }
  }

  @media (max-width: 480px) {
    .page-index__hero-image {
      height: 400px;
    }
    .page-index__hero-subtitle {
      font-size: 1.2em;
    }
    .page-index__jackpot-value {
      font-size: 1.3em;
    }
    .page-index__hero-button {
      padding: 10px 25px;
      font-size: 0.9em;
    }
    .page-index__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .page-index__game-image {
      height: 120px;
    }
    .page-index__post-image {
      height: 150px;
    }
  }

  /* Ensure all content area images are at least 200px wide/high */
  .page-index img:not(.page-index__winner-game-icon) {
    min-width: 200px;
    min-height: 200px;
  }
  .page-index__winner-game-icon {
    min-width: 70px;
    min-height: 70px;
  }