/* style/index.css */
:root {
    --primary-color: #007BFF;
    --secondary-color: #FFC107;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f1f3f5;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
}

.page-index {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    background: var(--background-light); /* Body background from shared.css is dark, but page-index section will use light backgrounds */
    line-height: 1.6;
}

/* HERO Section */
.page-index__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 180px; /* Desktop: Adjust for fixed header */
    background: linear-gradient(135deg, var(--primary-color), #0056b3); /* Darker blue gradient for hero background */
    color: var(--text-color-light);
    overflow: hidden;
}

.page-index__hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px; /* Slightly wider for hero */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-index__hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-index__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-index__hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index__cta-button {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.page-index__cta-button--primary {
    background: var(--secondary-color);
    color: var(--text-color-dark);
    border: 2px solid var(--secondary-color);
}

.page-index__cta-button--primary:hover {
    background: #e6a000;
    border-color: #e6a000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index__cta-button--secondary {
    background: transparent;
    color: var(--text-color-light);
    border: 2px solid var(--text-color-light);
}

.page-index__cta-button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Game Leaderboard Section */
.page-index__game-leaderboard-section {
    padding: 60px 20px;
    background: var(--background-light);
    text-align: center;
}

.page-index__page-title {
    font-size: 2.5em;
    color: var(--text-color-dark);
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index__game-leaderboard {
    max-width: 1400px; /* Wider for leaderboard */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-index__game-card {
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-index__game-card-segment {
    padding: 0 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-index__game-card-segment:not(:first-child) {
    border-left: 1px solid #e4e4e4; /* Vertical line separator */
}

.page-index__segment-1 {
    flex-basis: 150px;
    min-width: 120px;
    max-width: 150px;
    position: relative;
    padding-left: 0;
}

.page-index__rank-badge {
    position: absolute;
    top: -10px;
    left: 0px;
    width: 35px; /* Smaller badge size */
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: var(--text-color-light);
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 2px solid var(--background-white);
}

.page-index__rank-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold */
}

.page-index__rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0); /* Silver */
}

.page-index__rank-3 {
    background: linear-gradient(135deg, #CD7F32, #B87333); /* Bronze */
}

.page-index__game-icon {
    max-width: 100px; /* Max width 100px */
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index__segment-2 {
    flex: 2;
    justify-content: center;
}

.page-index__game-name {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 8px;
    text-align: center;
}

.page-index__game-name-link {
    text-decoration: none;
    color: var(--text-color-dark);
    transition: color 0.3s ease;
}

.page-index__game-name-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-index__game-description {
    font-size: 0.95em;
    color: var(--text-color-dark);
    font-weight: bold;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.page-index__game-description a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-index__game-description a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index__segment-3 {
    flex-basis: 200px;
    min-width: 150px;
    max-width: 200px;
}

.page-index__game-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.page-index__stars {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-right: 5px;
    font-weight: bold;
}

.page-index__rating-number {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--text-color-dark);
}

.page-index__promotion-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-index__promotion-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95em;
}

.page-index__promotion-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index__hot-badge {
    background: #dc3545;
    color: var(--text-color-light);
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    white-space: nowrap;
}

.page-index__segment-4 {
    flex-basis: 250px;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-index__btn-download,
.page-index__btn-review {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.page-index__btn-download {
    background: var(--primary-color);
    color: var(--text-color-light);
}

.page-index__btn-download:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index__btn-review {
    background: var(--background-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.page-index__btn-review:hover {
    background: #e0e0e0;
    color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Brand Review Content Section */
.page-index__review-content-section {
    padding: 60px 20px;
    background: var(--background-light);
}

.page-index__review-content-container {
    max-width: 1400px; /* Wider for reading */
    margin: 0 auto;
}

.page-index__review-content-card {
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.page-index__review-content-card h2 {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 25px;
    text-align: center;
}

.page-index__review-content-card h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index__review-body {
    color: var(--text-color-dark);
    line-height: 1.7;
    font-size: 1em;
}

.page-index__review-body p {
    margin-bottom: 18px;
}

.page-index__review-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__review-body a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Homepage Introduction Section */
.page-index__intro-section {
    padding: 60px 20px;
    background: var(--background-light);
    text-align: center;
}

.page-index__intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__intro-title {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 30px;
}

.page-index__intro-content {
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-color-dark);
}

.page-index__intro-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
}

.page-index__intro-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__intro-content a:hover {
    text-decoration: underline;
    color: #0056b3;
}

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

.page-index__feature-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-index__feature-item:hover {
    transform: translateY(-5px);
}

.page-index__feature-item img {
    max-width: 150px; /* Ensure images are larger than 100px */
    height: auto;
    margin-bottom: 15px;
}

.page-index__feature-item h3 {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-index__feature-item p {
    font-size: 0.95em;
    color: var(--text-color-dark);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Core Games/Services Section */
.page-index__core-games-section {
    padding: 60px 20px;
    background: var(--background-light);
    text-align: center;
}

.page-index__core-games-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__core-games-title {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

.page-index__core-games-description {
    font-size: 1.1em;
    color: var(--text-color-dark);
    margin-bottom: 40px;
}

.page-index__core-games-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__core-games-description a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index__game-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.page-index__tab-button {
    background: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-index__tab-button:hover {
    background: var(--primary-color);
    color: var(--text-color-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-index__tab-button--active {
    background: var(--primary-color);
    color: var(--text-color-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__game-content {
    position: relative;
    min-height: 400px; /* Ensure space for content */
}

.page-index__game-item {
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid var(--border-color);
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.5s ease-out forwards;
}

.page-index__game-item--active {
    display: flex;
}

.page-index__game-item-image {
    max-width: 600px; /* Larger image for game items */
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index__game-item h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index__game-item p {
    font-size: 1.1em;
    color: var(--text-color-dark);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-index__game-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__game-item p a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index__cta-button--small {
    padding: 12px 30px;
    font-size: 0.95em;
    border-radius: 8px;
    background: var(--secondary-color);
    color: var(--text-color-dark);
}

.page-index__cta-button--small:hover {
    background: #e6a000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Promotions Section */
.page-index__promotions-section {
    padding: 60px 20px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
}

.page-index__promotions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__promotions-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.page-index__promotions-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-index__promotions-description a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__promotions-description a:hover {
    text-decoration: underline;
    color: #e6a000;
}

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

.page-index__promotion-card {
    background: var(--background-white);
    color: var(--text-color-dark);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__promotion-image {
    max-width: 250px; /* Ensure images are larger than 200px */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-index__promotion-card h3 {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index__promotion-card p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index__promotion-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__promotion-card p a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Latest Blog Section */
.page-index__latest-blog-section {
    padding: 60px 20px;
    background: var(--background-light);
    text-align: center;
}

.page-index__latest-blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__latest-blog-title {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

.page-index__latest-blog-description {
    font-size: 1.1em;
    color: var(--text-color-dark);
    margin-bottom: 40px;
}

.page-index__latest-blog-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__latest-blog-description a:hover {
    text-decoration: underline;
    color: #0056b3;
}

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

.page-index__blog-card {
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-index__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__blog-image {
    width: 100%;
    height: 220px; /* Fixed height for blog images */
    object-fit: cover;
    display: block;
}

.page-index__blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--text-color-dark);
}

.page-index__blog-content h3 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

.page-index__blog-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index__blog-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-index__blog-content p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-index__blog-content p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index__blog-content p a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index__blog-date {
    font-size: 0.85em;
    color: #666;
}

.page-index__view-all-button-container {
    margin-top: 40px;
}

.page-index__cta-button--large {
    padding: 15px 40px;
    font-size: 1.1em;
    background: var(--primary-color);
    color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index__cta-button--large:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-index__hero-title {
        font-size: 3em;
    }
    .page-index__hero-description {
        font-size: 1.2em;
    }
    .page-index__page-title {
        font-size: 2.2em;
    }
    .page-index__review-content-card h2 {
        font-size: 2em;
    }
    .page-index__review-content-card h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 992px) {
    .page-index__hero-section {
        padding-top: 160px; /* Tablet: Adjust for fixed header */
    }
    .page-index__hero-title {
        font-size: 2.5em;
    }
    .page-index__hero-description {
        font-size: 1.1em;
    }
    .page-index__cta-button {
        padding: 15px 35px;
        font-size: 1em;
    }
    .page-index__game-card {
        flex-wrap: wrap;
        padding: 20px;
        justify-content: center;
    }
    .page-index__game-card-segment {
        width: 100%;
        border-left: none !important; /* Remove vertical lines on tablet/mobile */
        padding: 10px 0;
    }
    .page-index__game-card-segment:not(:first-child) {
        border-top: 1px solid #e4e4e4; /* Horizontal line for separation */
    }
    .page-index__segment-1, .page-index__segment-3, .page-index__segment-4 {
        max-width: 100%;
        flex-basis: auto;
    }
    .page-index__segment-1 {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .page-index__rank-badge {
        position: static;
        margin-right: 10px;
        border: none;
    }
    .page-index__game-name {
        font-size: 1.3em;
    }
    .page-index__game-description {
        font-size: 0.9em;
    }
    .page-index__segment-4 {
        flex-direction: row;
        gap: 10px;
        max-width: 100%;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index__btn-download, .page-index__btn-review {
        flex: 1;
        font-size: 0.9em;
        padding: 12px 15px;
        white-space: normal;
        word-wrap: break-word;
        min-width: auto;
    }
    .page-index__intro-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-index__promotion-grid, .page-index__blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index__hero-section {
        padding-top: 160px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index__hero-title {
        font-size: 2em;
    }
    .page-index__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-index__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index__cta-button {
        width: 100%;
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-index__page-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index__game-leaderboard-section, .page-index__review-content-section, .page-index__intro-section, .page-index__core-games-section, .page-index__promotions-section, .page-index__latest-blog-section {
        padding: 40px 15px;
    }
    .page-index__review-content-card, .page-index__intro-content, .page-index__game-item, .page-index__promotion-card, .page-index__blog-card {
        padding: 25px;
        border-radius: 8px;
    }
    .page-index__review-content-card h2, .page-index__intro-title, .page-index__core-games-title, .page-index__promotions-title, .page-index__latest-blog-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-index__review-content-card h3 {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-index__review-body p, .page-index__intro-content p, .page-index__core-games-description, .page-index__game-item p, .page-index__promotions-description, .page-index__promotion-card p, .page-index__blog-content p {
        font-size: 0.95em;
    }
    .page-index__feature-item img {
        max-width: 120px;
    }
    .page-index__feature-item h3 {
        font-size: 1.2em;
    }
    .page-index__tab-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index__game-item-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index__promotion-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index__blog-image {
        height: 180px;
    }
    .page-index__blog-content h3 {
        font-size: 1.2em;
    }
    .page-index__cta-button--large {
        width: 100%;
        font-size: 1em;
        padding: 12px 25px;
    }
    /* Ensure all images and containers adapt to mobile */
    .page-index img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index__section,
    .page-index__card,
    .page-index__container,
    .page-index__hero-container,
    .page-index__game-leaderboard,
    .page-index__review-content-container,
    .page-index__intro-container,
    .page-index__core-games-container,
    .page-index__promotions-container,
    .page-index__latest-blog-container,
    .page-index__game-card,
    .page-index__review-content-card,
    .page-index__intro-content,
    .page-index__game-item,
    .page-index__promotion-card,
    .page-index__blog-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index__segment-4 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .page-index__btn-download, .page-index__btn-review {
        font-size: 0.85em !important;
        padding: 10px 12px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        min-width: auto !important;
    }
    .page-index__rank-badge {
        width: 28px; /* Smaller badge size for mobile */
        height: 28px;
        font-size: 0.9em;
    }
    .page-index__game-icon {
        max-width: 80px;
    }
    .page-index__game-name {
        font-size: 1.2em;
    }
    .page-index__game-description {
        font-size: 0.85em;
    }
    .page-index__promotion-text {
        gap: 5px;
    }
    .page-index__hot-badge {
        font-size: 0.75em;
        padding: 3px 6px;
    }
    .page-index__promotion-link {
        font-size: 0.85em;
    }
}