.page-index__ticker-section {
    background-color: #2A1212; /* Card B G */
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #6A1E1E; /* Border */
}

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

.page-index__ticker-text {
    color: #FFF1E8; /* Text Main */
    font-size: 1rem;
    margin: 0;
    padding: 0 20px;
    display: inline-block;
}

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

.page-index__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Reduced for mobile, will adjust for desktop */
    background-color: #140C0C; /* Background */
    padding-bottom: 20px;
}

.page-index__hero-image-wrapper {
    width: 100%;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align image to top of its container */
}

.page-index__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    min-height: 400px;
}

.page-index__hero-content {
    text-align: center;
    color: #FFF1E8; /* Text Main */
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly over image for visual flow, but not overlay */
    position: relative; /* Ensure content is above any potential image overflow */
    z-index: 1;
}

.page-index__hero-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #F3C54D; /* Gold */
}

.page-index__jackpot-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.page-index__jackpot-label {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #FFF1E8;
}

.page-index__jackpot-amount {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(#ff9500, #ff5e3a); /* Orange-red gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    border: 2px solid #D86A14; /* D86A14 from button gradient */
    box-shadow: 0 0 15px rgba(255, 94, 58, 0.6);
    min-width: 250px;
}

.page-index__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-index__hero-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #83a1f2; /* Blue pill button */
    color: #FFF1E8; /* Text Main */
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-index__brand-intro-section {
    background-color: #140C0C; /* Background */
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #6A1E1E; /* Border */
}

.page-index__main-title {
    font-size: clamp(2rem, 4vw, 3.2rem); /* H1 clamp font size */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, #F3C54D 0%, #FFB04A 50%, #D86A14 100%); /* Gold to Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-index__intro-paragraph {
    color: #FFF1E8; /* Text Main */
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.page-index__popular-games-section,
.page-index__category-section,
.page-index__feature-promo-section,
.page-index__winner-section,
.page-index__blog-section,
.page-index__faq-section,
.page-index__brand-logo-section {
    padding: 50px 20px;
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    text-align: center;
    border-bottom: 1px solid #6A1E1E; /* Border */
}

.page-index__category-section--slots,
.page-index__category-section--table-poker,
.page-index__winner-section {
    background-color: #2A1212; /* Card B G */
}

.page-index__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #F3C54D; /* Gold */
}

.page-index__section-title.text-gradient {
    background: linear-gradient(90deg, #F3C54D 0%, #FFB04A 50%, #D86A14 100%); /* Gold to Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-index__section-description {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #FFF1E8;
}

.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: #2A1212; /* Card B G */
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #FFF1E8; /* Text Main */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #6A1E1E; /* Border */
}

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

.page-index__game-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.page-index__game-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 10px;
}

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

.page-index__sports-image-wrapper {
    width: 100%;
    max-width: 800px;
}

.page-index__sports-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-index__sports-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8; /* Text Main */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

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

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

.page-index__feature-card {
    background-color: #2A1212; /* Card B G */
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    border: 1px solid #6A1E1E; /* Border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.page-index__feature-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-index__feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #F3C54D; /* Gold */
}

.page-index__feature-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    color: #FFF1E8;
}

.page-index__feature-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8; /* Text Main */
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.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: #140C0C; /* Background */
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #6A1E1E; /* Border */
    position: relative;
    overflow: hidden;
    text-align: left;
}

.page-index__winner-icon {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #F3C54D; /* Gold */
}

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

.page-index__winner-game {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F3C54D; /* Gold */
}

.page-index__winner-user,
.page-index__winner-date {
    font-size: 0.9rem;
    color: #FFF1E8; /* Text Main */
    opacity: 0.8;
}

.page-index__winner-prize {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.page-index__won-badge {
    background-color: #E53030; /* Auxiliary Red */
    color: #FFF1E8; /* Text Main */
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.page-index__won-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFB04A; /* Part of Button gradient, looks like gold */
}

.page-index__blog-section {
    text-align: center;
}

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

.page-index__post-card {
    background-color: #2A1212; /* Card B G */
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    border: 1px solid #6A1E1E; /* Border */
    display: flex;
    flex-direction: column;
}

.page-index__post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.page-index__post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 15px 15px 10px 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.page-index__post-title a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
}

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

.page-index__post-excerpt {
    font-size: 0.95rem;
    color: #FFF1E8; /* Text Main */
    line-height: 1.5;
    margin: 0 15px 15px 15px;
}

.page-index__read-more {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8; /* Text Main */
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.3s ease;
    margin: 0 15px 15px 15px;
}

.page-index__read-more:hover {
    opacity: 0.9;
}

.page-index__load-more-wrapper {
    margin-top: 30px;
}

.page-index__load-more-button {
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8; /* Text Main */
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.page-index__faq-item {
    background-color: #2A1212; /* Card B G */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-index__faq-question {
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F3C54D; /* Gold */
    cursor: pointer;
    display: block;
    position: relative;
    user-select: none;
}

.page-index__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    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: #FFF1E8; /* Text Main */
}

.page-index__brand-logo-section {
    padding: 40px 20px;
    background-color: #140C0C; /* Background */
    text-align: center;
}

.page-index__brand-logo-link {
    display: inline-block;
}

.page-index__brand-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-index__hero-section {
        min-height: 700px;
    }
    .page-index__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
    .page-index__hero-image {
        height: 100%;
        object-position: center;
    }
    .page-index__hero-content {
        margin-top: 0;
        z-index: 2;
        position: relative;
        padding-top: 100px; /* Add padding to push content down from top */
    }
    .page-index__hero-tagline {
        font-size: 2.5rem;
    }
    .page-index__jackpot-amount {
        font-size: 3.5rem;
    }
    .page-index__game-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .page-index__category-section--sports {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    .page-index__category-section--sports .page-index__category-content {
        flex: 1;
        text-align: left;
        padding-right: 30px;
    }
    .page-index__sports-image-wrapper {
        flex: 1;
    }
    .page-index__feature-promo-section {
        grid-template-columns: repeat(4, 1fr);
    }
    .page-index__winner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-index__post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .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));
    }
}

@media (max-width: 768px) {
    .page-index__ticker-text {
        font-size: 0.9rem;
    }
    .page-index__hero-section {
        min-height: 500px;
    }
    .page-index__hero-image-wrapper {
        max-height: 500px;
    }
    .page-index__hero-tagline {
        font-size: 1.5rem;
    }
    .page-index__jackpot-amount {
        font-size: 2.2rem;
    }
    .page-index__hero-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    .page-index__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-index__intro-paragraph {
        font-size: 1rem;
    }
    .page-index__game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-index__game-image {
        height: 120px;
    }
    .page-index__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    .page-index__feature-promo-section {
        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__post-title {
        font-size: 1.15rem;
    }
    .page-index__faq-question {
        font-size: 1.05rem;
        padding: 15px 20px;
    }
    .page-index__faq-question::after {
        right: 20px;
    }
    .page-index__faq-answer {
        padding: 0 20px 15px 20px;
    }
    /* Ensure images in content sections are responsive and don't overflow */
    .page-index__game-grid img,
    .page-index__sports-image,
    .page-index__feature-image,
    .page-index__winner-icon,
    .page-index__post-image,
    .page-index__brand-logo {
        max-width: 100%;
        height: auto;
    }
    /* Content area image CSS size lower limit */
    .page-index__game-grid img,
    .page-index__sports-image,
    .page-index__feature-image,
    .page-index__post-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-index__winner-icon {
        min-width: 70px;
        min-height: 70px;
    }
}