.page-index__ticker-section {
    background: #017439;
    color: #FFFFFF;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.page-index__ticker-wrapper {
    display: inline-block;
    padding-left: 100%;
    animation: page-index__marquee 20s linear infinite;
}

.page-index__ticker-text {
    margin: 0;
    display: inline-block;
    padding-right: 20px;
}

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

.page-index__hero-jackpot {
    width: 100%;
    background: #100224; /* Deep purple-black */
    color: #FFFFFF;
    position: relative;
    padding-bottom: 20px; /* Space for content below image */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding to avoid header overlap */
}

.page-index__hero-visual {
    margin: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.page-index__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* Wider aspect ratio for desktop hero */
    object-fit: cover;
    max-height: 600px;
}

.page-index__hero-copy {
    padding: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure text is above any background elements but not overlapping main image */
}

.page-index__hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-index__jackpot-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    border: 2px solid;
    border-image: linear-gradient(to right, #ff9500, #ff5e3a) 1;
    padding: 15px 25px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
}

.page-index__jackpot-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #FFFFFF;
}

.page-index__jackpot-amount {
    font-size: clamp(1.8rem, 6.5vw, 3.5rem); /* Responsive font size for jackpot */
    font-weight: 700;
    color: #FFFF00; /* Gold-yellow for numbers */
    letter-spacing: 1px;
    word-break: break-all;
    line-height: 1.1;
}

.page-index__hero-sub {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-index__btn-cta {
    background: #83a1f2;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

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

.page-index__brand-intro {
    padding: 40px 20px;
    text-align: center;
    background-color: #100224;
    color: #FFFFFF;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__main-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive H1 font size */
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.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__intro-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

.page-index__popular-games,
.page-index__category-section,
.page-index__winners-section,
.page-index__blog-section,
.page-index__faq-section {
    padding: 60px 20px;
    background-color: #0d011f;
    color: #FFFFFF;
    text-align: center;
}

.page-index__category-section:nth-of-type(odd) {
    background-color: #100224; /* Alternate background for sections */
}

.page-index__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.3;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.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.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

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

.page-index__game-tile {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    line-height: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-index__game-tile:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0,0,0,0.5);
}

.page-index__game-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
}

.page-index__category-section--sports {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__sports-content {
    flex: 1;
    padding-right: 20px;
}

.page-index__sports-content .page-index__section-title {
    text-align: left;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

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

.page-index__sports-image {
    flex: 1;
    margin: 0;
    min-width: 400px;
}

.page-index__sports-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-index__btn-primary {
    background: #017439;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    min-width: 150px;
    text-align: center;
}

.page-index__btn-primary:hover {
    background: #005a2d;
}

.page-index__feature-promo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    background-color: #0d011f;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__promo-card {
    background-color: #1a0335; /* Darker card background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-index__promo-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-index__promo-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index__app-mockup {
    margin: 20px 0;
    width: 100%;
    max-width: 250px;
    height: auto;
}

.page-index__app-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-index__btn-secondary {
    background: #83a1f2;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.page-index__btn-secondary:hover {
    background: #688cec;
}

.page-index__winners-section {
    background-color: #100224;
}

.page-index__winner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

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

.page-index__winner-game-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #017439;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index__winner-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    min-
    min-
}

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

.page-index__winner-game-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
}

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

.page-index__winner-amount {
    position: absolute;
    bottom: 15px;
    right: 15px;
    text-align: right;
}

.page-index__won-badge {
    background: linear-gradient(to right, #ff9500, #ff5e3a);
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
}

.page-index__winner-amount strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFF00;
    display: block;
}

.page-index__blog-section {
    background-color: #0d011f;
}

.page-index__blog-section .page-index__section-title {
    margin-bottom: 40px;
}

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

.page-index__post-card {
    background-color: #1a0335;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.page-index__post-thumbnail {
    margin: 0;
    width: 100%;
    height: 225px; /* Fixed height for consistent thumbnails */
}

.page-index__post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-index__post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

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

.page-index__post-excerpt {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index__btn-read-more {
    background: #017439;
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    align-self: flex-start;
}

.page-index__btn-read-more:hover {
    background: #005a2d;
}

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

.page-index__btn-load-more {
    background: #83a1f2;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.page-index__btn-load-more:hover {
    background: #688cec;
}

.page-index__faq-section {
    background-color: #100224;
}

.page-index__faq-section .page-index__section-title {
    margin-bottom: 30px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.page-index__faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-index__faq-item {
    background-color: #1a0335;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-index__faq-question {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
    display: block;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-index__faq-question:hover {
    background-color: #25044a;
}

.page-index__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    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: 0 25px 20px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

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

.page-index__brand-bar {
    padding: 30px 20px;
    text-align: center;
    background-color: #0d011f;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-index__game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-index__winner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .page-index__category-section--sports {
        flex-direction: column;
        text-align: center;
    }

    .page-index__sports-content {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .page-index__sports-content .page-index__section-title,
    .page-index__sports-content .page-index__section-description {
        text-align: center;
    }
}

@media (max-width: 849px) {
    .page-index__hero-visual img {
        aspect-ratio: 4/3; /* Adjust aspect ratio for better mobile fit */
    }

    .page-index__jackpot-counter {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .page-index__ticker-section {
        font-size: 0.8rem;
    }

    .page-index__hero-jackpot,
    .page-index__brand-intro,
    .page-index__popular-games,
    .page-index__category-section,
    .page-index__feature-promo,
    .page-index__winners-section,
    .page-index__blog-section,
    .page-index__faq-section {
        padding: 40px 15px;
    }

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

    .page-index__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .page-index__game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-index__winner-grid {
        grid-template-columns: 1fr; /* Single column for winners on small mobile */
    }

    .page-index__post-grid {
        grid-template-columns: 1fr;
    }

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

    .page-index__post-thumbnail img,
    .page-index__app-mockup img,
    .page-index__sports-image img,
    .page-index__game-tile img {
        max-width: 100%;
        height: auto;
        display: block;
        min-width: 200px;
        min-height: 200px;
    }

    .page-index__winner-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .page-index__winner-amount {
        position: static;
        margin-top: 10px;
        width: 100%;
    }

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

@media (max-width: 549px) {
    .page-index__game-grid {
        grid-template-columns: 1fr;
    }

    .page-index__hero-tagline {
        font-size: 1.3rem;
    }

    .page-index__hero-sub {
        font-size: 1rem;
    }

    .page-index__jackpot-amount {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }

    .page-index__intro-description {
        font-size: 1rem;
    }

    .page-index__section-description {
        font-size: 1rem;
    }

    .page-index__promo-title {
        font-size: 1.3rem;
    }

    .page-index__promo-text {
        font-size: 0.9rem;
    }

    .page-index__post-title {
        font-size: 1.1rem;
    }

    .page-index__post-excerpt {
        font-size: 0.85rem;
    }

    .page-index__faq-question {
        font-size: 1rem;
    }
}