
        :root {
            --primary-color: #f7d32c; /* Yellow */
            --secondary-color: #ffffff; /* White */
            --dark-bg-color: #1a1a1a; /* Black/Dark Grey */
            --text-light: #ffffff;
            --text-dark: #333333;
            --header-offset: 120px; /* Assumed from shared.css */
        }

        .page-index {
            background-color: var(--dark-bg-color);
            color: var(--text-light);
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        .page-index__section-title {
            font-size: 36px;
            font-weight: bold;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .page-index__section-description {
            font-size: 18px;
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-index__main-title {
            font-weight: bold;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.2;
            font-size: clamp(28px, 4vw, 40px); /* Responsive H1 font size */
        }

        .page-index__intro-text {
            font-size: 18px;
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* HERO Main Image Area */
        .page-index__hero-section {
            position: relative;
            padding-bottom: 0;
            padding-left: 0;
            padding-right: 0;
            padding-top: 10px; /* Assuming shared.css handles body padding-top */
            margin-top: 0;
            background-color: var(--dark-bg-color);
        }

        .page-index__hero-container {
            position: relative;
            margin: 0 auto;
            width: 100%;
            max-width: 1920px;
        }

        .page-index__hero-image {
            width: 100%;
            margin: 0;
        }

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

        /* Product Showcase Area */
        .page-index__products-section {
            width: 100%;
            padding: 60px 20px;
            background-color: var(--dark-bg-color);
            box-sizing: border-box;
        }

        .page-index__products-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 4fr 2fr;
            gap: 20px;
            box-sizing: border-box;
        }

        .page-index__products-grid {
            display: grid;
            gap: 20px;
        }

        .page-index__products-grid--small {
            grid-template-columns: repeat(4, 1fr);
        }

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

        .page-index__product-card {
            width: 100%;
            max-width: 300px;
            border-radius: 0;
            overflow: hidden;
            background: transparent;
            box-shadow: none;
            transition: transform 0.3s ease;
            justify-self: center;
        }

        .page-index__product-card:hover {
            transform: translateY(-5px);
        }

        .page-index__product-card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .page-index__product-card-image {
            width: 100%;
            max-width: 300px;
            overflow: hidden;
        }

        .page-index__product-card-image img {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
        }

        /* Module 1: Homepage Introduction */
        .page-index__intro-section {
            padding: 80px 20px;
            background-color: var(--dark-bg-color);
            box-sizing: border-box;
        }

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

        .page-index__feature-item {
            text-align: center;
            padding: 25px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .page-index__feature-item:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .page-index__feature-item img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
        }

        .page-index__feature-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .page-index__feature-item p {
            font-size: 16px;
            color: var(--secondary-color);
        }

        /* Module 2: Quick Access Links */
        .page-index__quick-access-section {
            padding: 80px 20px;
            background-color: #2a2a2a;
            box-sizing: border-box;
        }

        .page-index__button-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .page-index__cta-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            min-width: 200px;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-index__btn-primary:hover {
            background-color: #e0bb25;
            border-color: #e0bb25;
        }

        .page-index__btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .page-index__btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--text-dark);
        }

        /* Module 3: Core Game/Service Introduction */
        .page-index__games-section {
            padding: 80px 20px;
            background-color: var(--dark-bg-color);
            box-sizing: border-box;
        }

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

        .page-index__game-category-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .page-index__game-category-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .page-index__game-title {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 10px;
            padding: 0 15px;
        }

        .page-index__game-category-card p {
            font-size: 15px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            padding: 0 15px;
        }

        .page-index__read-more-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-bottom: 20px;
            transition: background-color 0.3s ease;
        }

        .page-index__read-more-btn:hover {
            background-color: #e0bb25;
        }

        /* Module 4: Promotions */
        .page-index__promotions-section {
            padding: 80px 20px;
            background-color: #2a2a2a;
            box-sizing: border-box;
        }

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

        .page-index__promo-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .page-index__promo-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .page-index__promo-title {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 10px;
            padding: 0 15px;
        }

        .page-index__promo-card p {
            font-size: 15px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            padding: 0 15px;
        }

        .page-index__promo-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-bottom: 20px;
            transition: background-color 0.3s ease;
        }

        .page-index__promo-btn:hover {
            background-color: #e0bb25;
        }

        /* Module 5: Security & Customer Service */
        .page-index__security-support-section {
            padding: 80px 20px;
            background-color: var(--dark-bg-color);
            box-sizing: border-box;
        }

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

        .page-index__info-card {
            text-align: center;
            padding: 25px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .page-index__info-card:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .page-index__info-card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
        }

        .page-index__info-title {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .page-index__info-card p {
            font-size: 16px;
            color: var(--secondary-color);
        }

        /* Module 6: FAQ */
        .page-index__faq-section {
            padding: 80px 20px;
            background-color: #2a2a2a;
            box-sizing: border-box;
        }

        .page-index__faq-list {
            max-width: 800px;
            margin: 50px auto 0;
        }

        details.page-index__faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.05); /* Light background for FAQ item */
            color: var(--text-light);
        }
        details.page-index__faq-item summary.page-index__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: background-color 0.3s ease;
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-color);
        }
        details.page-index__faq-item summary.page-index__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-index__faq-item summary.page-index__faq-question:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .page-index__faq-qtext {
            flex: 1;
            line-height: 1.5;
            text-align: left;
        }
        .page-index__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-index__faq-item .page-index__faq-answer {
            padding: 0 20px 20px;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 0 0 8px 8px;
            color: var(--secondary-color);
        }

        /* Module 7: Latest Blog Content */
        .page-index__blog-section {
            padding: 80px 20px;
            background-color: var(--dark-bg-color);
            box-sizing: border-box;
        }

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

        .page-index__blog-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .page-index__blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .page-index__blog-content {
            padding: 20px;
        }

        .page-index__blog-title {
            font-size: 22px;
            margin-bottom: 10px;
        }

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

        .page-index__blog-title a:hover {
            color: #e0bb25;
        }

        .page-index__blog-date {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 10px;
        }

        .page-index__blog-excerpt {
            font-size: 15px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .page-index__view-all-button-container {
            text-align: center;
            margin-top: 50px;
        }

        /* General image styling for content sections */
        .page-index img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive Styles for Mobile */
        @media (max-width: 1024px) {
            .page-index__products-container {
                grid-template-columns: 1fr;
            }
            .page-index__products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .page-index__section-title {
                font-size: 30px;
            }
            .page-index__main-title {
                font-size: clamp(24px, 5vw, 36px);
            }
            .page-index__intro-text,
            .page-index__section-description {
                font-size: 16px;
            }
            .page-index__feature-title,
            .page-index__game-title,
            .page-index__promo-title,
            .page-index__info-title,
            .page-index__blog-title {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            /* HERO Main Image Area */
            .page-index__hero-section {
                padding-top: 10px !important; /* Assuming shared.css handles body padding-top */
            }

            /* Product Showcase Area - NO HORIZONTAL SCROLL */
            .page-index__products-section {
                padding: 40px 15px;
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
                box-sizing: border-box;
            }
            .page-index__products-container {
                grid-template-columns: 1fr;
                gap: 15px;
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
                box-sizing: border-box;
            }
            .page-index__products-grid--small {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .page-index__products-grid--small .page-index__product-card,
            .page-index__products-grid--small .page-index__product-card-image {
                max-width: 100%; /* Allow cards to fill available space within 2-col grid */
            }
            .page-index__products-grid--small .page-index__product-card-image img {
                width: 100%;
                height: auto; /* Maintain aspect ratio */
            }
            .page-index__products-grid--large {
                grid-template-columns: 1fr; /* Each large card takes full width */
                gap: 15px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .page-index__products-grid--large .page-index__product-card,
            .page-index__products-grid--large .page-index__product-card-image {
                max-width: 100%;
            }
            .page-index__products-grid--large .page-index__product-card-image img {
                width: 100%;
                height: auto; /* Maintain aspect ratio */
            }

            /* General Image Adaptation */
            .page-index img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-index__container {
                padding: 20px 15px;
            }
            .page-index__section-title {
                font-size: 24px;
            }
            .page-index__main-title {
                font-size: clamp(20px, 6vw, 30px);
            }
            .page-index__intro-text,
            .page-index__section-description,
            .page-index p,
            .page-index li {
                font-size: 15px;
            }

            /* Buttons Adaptation */
            .page-index__cta-button,
            .page-index__btn-primary,
            .page-index__btn-secondary,
            .page-index a[class*="button"],
            .page-index a[class*="btn"] {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-index__button-group,
            .page-index__btn-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                flex-wrap: wrap !important;
                gap: 10px;
            }
            .page-index__button-group {
                flex-direction: column !important;
            }

            /* Other Content Modules */
            .page-index__intro-section,
            .page-index__quick-access-section,
            .page-index__games-section,
            .page-index__promotions-section,
            .page-index__security-support-section,
            .page-index__faq-section,
            .page-index__blog-section {
                padding: 40px 15px;
                box-sizing: border-box;
            }
            .page-index__feature-list,
            .page-index__game-categories,
            .page-index__promo-grid,
            .page-index__info-grid,
            .page-index__blog-grid {
                gap: 20px;
            }
            details.page-index__faq-item summary.page-index__faq-question {
                padding: 15px;
                font-size: 16px;
            }
            .page-index__faq-qtext {
                font-size: 16px;
            }
            .page-index__faq-toggle {
                font-size: 20px;
                width: 24px;
                height: 24px;
            }
            details.page-index__faq-item .page-index__faq-answer {
                padding: 0 15px 15px;
            }
        }
    