
        .page--g {
            font-family: 'Arial', sans-serif;
            color: #333333; /* Dark text for light background */
            line-height: 1.6;
            background-color: #f8f9fa; /* Slightly off-white for body */
        }

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

        /* Hero Section */
        .page--g__hero-section {
            display: flex;
            flex-direction: column; /* Default column for mobile, will change to row for desktop */
            align-items: center;
            text-align: center;
            padding-top: 10px; /* Small top padding, body handles header offset */
            padding-bottom: 40px;
            background: linear-gradient(135deg, #2563eb, #64748b);
            color: #ffffff;
            overflow: hidden; /* Ensure no overflow */
        }

        .page--g__hero-content {
            max-width: 800px;
            margin-bottom: 30px;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .page--g__main-title {
            font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffffff;
        }

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

        .page--g__hero-cta {
            display: flex;
            flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
            justify-content: center;
            gap: 15px;
            width: 100%;
            max-width: 500px; /* Limit button group width */
            margin: 0 auto;
            box-sizing: border-box;
            padding: 0 15px; /* Add padding for mobile */
        }

        .page--g__btn-primary,
        .page--g__btn-secondary {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            max-width: 100%; /* Ensure buttons are responsive */
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--g__btn-primary {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #ffffff;
        }

        .page--g__btn-primary:hover {
            background-color: #e0e0e0;
            color: #1a4fba;
        }

        .page--g__btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .page--g__btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .page--g__hero-image-container {
            width: 100%;
            max-width: 1000px;
            overflow: hidden;
            margin-top: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

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

        /* General Sections */
        .page--g__introduction-section,
        .page--g__guide-section,
        .page--g__cta-section,
        .page--g__faq-section {
            padding: 60px 0;
        }

        .page--g__dark-section {
            background-color: #2563eb;
            color: #ffffff;
            padding: 60px 0;
        }

        .page--g__light-bg {
            background-color: #ffffff;
            color: #333333;
        }

        .page--g__section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #2563eb;
        }

        .page--g__section-title--white {
            color: #ffffff;
        }

        .page--g__sub-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 20px;
            color: #2563eb;
            text-align: left;
        }

        .page--g__text-block {
            font-size: 1rem;
            margin-bottom: 20px;
            text-align: left;
        }

        .page--g__text-block--white {
            color: #f0f0f0;
        }

        .page--g a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
        }

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

        /* Features Section */
        .page--g__features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .page--g__feature-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, background-color 0.3s ease;
            height: 100%; /* Ensure equal height */
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            color: #ffffff;
        }

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

        .page--g__feature-icon {
            width: 100%;
            height: auto;
            max-width: 250px; /* Limit icon width */
            margin-bottom: 20px;
            border-radius: 8px;
            display: block;
        }

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

        .page--g__feature-description {
            font-size: 0.95rem;
            color: #f0f0f0;
        }

        /* Ordered/Unordered Lists */
        .page--g__ordered-list,
        .page--g__unordered-list {
            list-style-type: decimal;
            padding-left: 25px;
            margin-bottom: 20px;
        }

        .page--g__unordered-list {
            list-style-type: disc;
        }

        .page--g__unordered-list--white .page--g__list-item {
            color: #f0f0f0;
        }

        .page--g__list-item {
            margin-bottom: 10px;
            font-size: 1rem;
            box-sizing: border-box; /* Ensure list items are responsive */
            word-wrap: break-word;
        }

        .page--g__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            width: 100%; /* Ensure container takes full width */
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
            padding: 0 15px; /* Add padding for mobile */
        }

        /* CTA Section (Image + Text) */
        .page--g__cta-container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-direction: column; /* Default column for mobile */
            text-align: center;
        }

        .page--g__cta-image {
            width: 100%;
            height: auto;
            max-width: 600px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            display: block;
        }

        .page--g__cta-content {
            flex: 1;
            text-align: left;
        }

        .page--g__cta-content .page--g__section-title {
            text-align: left;
            margin-bottom: 20px;
        }

        /* FAQ Section */
        .page--g__faq-list {
            margin-top: 40px;
        }

        .page--g__faq-item {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .page--g__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            background-color: #f5f5f5;
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .page--g__faq-question:hover {
            background-color: #e0e0e0;
        }

        .page--g__faq-qtext {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2563eb;
            pointer-events: none; /* Prevent text from blocking click event */
            flex-grow: 1;
        }

        .page--g__faq-toggle {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2563eb;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle icon from blocking click event */
        }

        .page--g__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        }

        .page--g__faq-item.active .page--g__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to show content */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page--g__faq-answer p {
            margin-bottom: 15px;
            font-size: 0.95rem;
            color: #555555;
        }

        /* Related Content Section */
        .page--g__game-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .page--g__game-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            text-decoration: none;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, background-color 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }

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

        .page--g__game-card-image {
            width: 100%;
            height: auto;
            max-width: 200px; /* Adjust as needed */
            margin-bottom: 15px;
            border-radius: 8px;
            display: block;
        }

        .page--g__game-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .page--g__game-card-description {
            font-size: 0.9rem;
            color: #f0f0f0;
        }

        /* General image responsiveness */
        .page--g img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Desktop styles (min-width: 769px) */
        @media (min-width: 769px) {
            .page--g__hero-section {
                flex-direction: row;
                text-align: left;
                padding-top: 60px;
                padding-bottom: 80px;
            }

            .page--g__hero-content {
                margin-bottom: 0;
                text-align: left;
                flex: 1;
                padding-left: 20px;
                padding-right: 20px;
            }

            .page--g__main-title {
                text-align: left;
            }

            .page--g__hero-description {
                text-align: left;
            }

            .page--g__hero-cta {
                justify-content: flex-start;
                max-width: none;
                padding: 0;
            }

            .page--g__hero-image-container {
                flex: 1;
                margin-top: 0;
                margin-left: 40px;
            }

            .page--g__cta-container {
                flex-direction: row;
                text-align: left;
            }

            .page--g__cta-image {
                margin-right: 40px;
                margin-bottom: 0;
                flex-shrink: 0;
            }

            .page--g__cta-content .page--g__section-title {
                text-align: left;
            }

            .page--g__cta-content .page--g__text-block {
                text-align: left;
            }
        }


        /* Mobile styles (max-width: 768px) */
        @media (max-width: 768px) {
            .page--g {
                font-size: 16px;
                line-height: 1.6;
            }

            .page--g__container {
                padding: 0 15px; /* Adjust container padding for mobile */
            }

            /* HERO 主图区域 */
            .page--g__hero-section {
                padding-top: 10px !important; /* Small top padding for mobile */
                padding-bottom: 30px;
            }

            .page--g__main-title {
                font-size: 2rem;
                text-align: center;
            }

            .page--g__hero-description {
                font-size: 1rem;
                text-align: center;
            }

            .page--g__hero-cta {
                flex-direction: column;
                gap: 10px;
                padding: 0 15px; /* Ensure buttons have side padding */
            }

            .page--g__btn-primary,
            .page--g__btn-secondary {
                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--g__hero-image-container {
                margin-top: 20px;
                padding: 0 15px;
            }

            /* 通用图片与容器 */
            .page--g img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page--g__section,
            .page--g__card,
            .page--g__container,
            .page--g__hero-section,
            .page--g__introduction-section,
            .page--g__features-section,
            .page--g__guide-section,
            .page--g__tips-section,
            .page--g__cta-section,
            .page--g__faq-section,
            .page--g__related-content {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow-x: hidden; /* Prevent horizontal scroll */
            }

            .page--g__section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .page--g__sub-title {
                font-size: 1.5rem;
                text-align: center;
            }

            .page--g__text-block {
                text-align: center;
            }

            /* 产品展示图区域 (features-grid and game-categories) */
            .page--g__features-grid,
            .page--g__game-categories {
                grid-template-columns: 1fr; /* Single column layout for cards */
                gap: 20px;
            }

            .page--g__feature-card,
            .page--g__game-card {
                padding: 20px;
            }

            .page--g__feature-icon,
            .page--g__game-card-image {
                max-width: 150px;
                margin-left: auto;
                margin-right: auto;
            }

            /* CTA Section Mobile */
            .page--g__cta-container {
                flex-direction: column;
                gap: 30px;
            }

            .page--g__cta-image {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .page--g__cta-content .page--g__section-title {
                text-align: center;
            }

            .page--g__cta-content .page--g__text-block {
                text-align: center;
            }

            /* FAQ Section Mobile */
            .page--g__faq-question {
                padding: 15px 20px;
            }

            .page--g__faq-qtext {
                font-size: 1rem;
            }

            .page--g__faq-answer {
                padding: 0 20px;
            }

            .page--g__faq-item.active .page--g__faq-answer {
                padding: 15px 20px !important;
            }

            .page--g__faq-answer p {
                font-size: 0.9rem;
            }

            /* Ordered/Unordered Lists Mobile */
            .page--g__ordered-list,
            .page--g__unordered-list {
                padding-left: 20px;
            }
            .page--g__list-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    