
        /* style/resources-vivu88-platform-review.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #333333;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
            --bg-dark-card: rgba(0, 0, 0, 0.1);
            --border-color: #e0e0e0;
        }

        .page-resources-vivu88-platform-review {
            font-family: 'Arial', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
        }

        .page-resources-vivu88-platform-review__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            padding-top: 10px; /* body 已承担 --header-offset，此处禁止 var(--header-offset) */
            text-align: center;
            color: var(--text-light);
            background-color: var(--primary-color);
            overflow: hidden;
        }

        .page-resources-vivu88-platform-review__hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            z-index: 0;
        }

        .page-resources-vivu88-platform-review__hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-resources-vivu88-platform-review__main-title {
            font-size: clamp(2em, 5vw, 3.5em);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .page-resources-vivu88-platform-review__hero-description {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: var(--text-light);
        }

        .page-resources-vivu88-platform-review__cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .page-resources-vivu88-platform-review__btn-primary,
        .page-resources-vivu88-platform-review__btn-secondary {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-resources-vivu88-platform-review__btn-primary {
            background-color: var(--text-light);
            color: var(--primary-color);
            border: 2px solid var(--text-light);
        }

        .page-resources-vivu88-platform-review__btn-primary:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
            border-color: var(--text-light);
            transform: translateY(-2px);
        }

        .page-resources-vivu88-platform-review__btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
        }

        .page-resources-vivu88-platform-review__btn-secondary:hover {
            background-color: var(--text-light);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .page-resources-vivu88-platform-review__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
            background-color: var(--text-light);
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .page-resources-vivu88-platform-review__section--dark {
            background-color: var(--secondary-color);
            color: var(--text-light);
        }

        .page-resources-vivu88-platform-review__section-title {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            color: var(--primary-color);
        }

        .page-resources-vivu88-platform-review__section--dark .page-resources-vivu88-platform-review__section-title {
            color: var(--text-light);
        }

        .page-resources-vivu88-platform-review__content-block {
            margin-bottom: 40px;
        }

        .page-resources-vivu88-platform-review__content-block h3 {
            font-size: 1.8em;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .page-resources-vivu88-platform-review__section--dark .page-resources-vivu88-platform-review__content-block h3 {
            color: var(--text-light);
        }

        .page-resources-vivu88-platform-review__content-block p {
            font-size: 1em;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .page-resources-vivu88-platform-review__image-full-width {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .page-resources-vivu88-platform-review__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .page-resources-vivu88-platform-review__game-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: var(--text-dark);
        }

        .page-resources-vivu88-platform-review__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .page-resources-vivu88-platform-review__game-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-resources-vivu88-platform-review__game-card-content {
            padding: 20px;
        }

        .page-resources-vivu88-platform-review__game-card-title {
            font-size: 1.4em;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-resources-vivu88-platform-review__game-card-description {
            font-size: 0.95em;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .page-resources-vivu88-platform-review__game-card-link {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-resources-vivu88-platform-review__game-card-link:hover {
            background-color: #1a4aae;
        }

        .page-resources-vivu88-platform-review__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--text-light);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .page-resources-vivu88-platform-review__faq-title {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
            color: var(--primary-color);
        }

        .page-resources-vivu88-platform-review__faq-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-resources-vivu88-platform-review__faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .page-resources-vivu88-platform-review__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            background-color: var(--bg-light);
            cursor: pointer;
            font-size: 1.15em;
            font-weight: 600;
            color: var(--primary-color);
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-resources-vivu88-platform-review__faq-question h3 {
            margin: 0;
            font-size: 1.15em;
            color: var(--primary-color);
            pointer-events: none; /* Prevent h3 from blocking click event */
        }

        .page-resources-vivu88-platform-review__faq-question:hover {
            background-color: #e9ecef;
        }

        .page-resources-vivu88-platform-review__faq-toggle {
            font-size: 1.5em;
            font-weight: 700;
            color: var(--primary-color);
            pointer-events: none; /* Prevent toggle from blocking click event */
        }

        .page-resources-vivu88-platform-review__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            background-color: var(--text-light);
            color: var(--text-dark);
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .page-resources-vivu88-platform-review__faq-item.active .page-resources-vivu88-platform-review__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-resources-vivu88-platform-review__faq-answer p {
            margin-bottom: 15px;
        }

        .page-resources-vivu88-platform-review__link-block {
            text-align: center;
            margin-top: 40px;
        }

        .page-resources-vivu88-platform-review__internal-link {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--secondary-color);
            color: var(--text-light);
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
            margin: 10px;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-resources-vivu88-platform-review__internal-link:hover {
            background-color: #526174;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-resources-vivu88-platform-review__section {
                padding: 50px 15px;
            }

            .page-resources-vivu88-platform-review__game-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-resources-vivu88-platform-review__hero-section {
                padding: 60px 15px;
            }

            .page-resources-vivu88-platform-review__main-title {
                font-size: clamp(1.8em, 8vw, 2.8em);
            }

            .page-resources-vivu88-platform-review__hero-description {
                font-size: 1em;
            }

            .page-resources-vivu88-platform-review__cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .page-resources-vivu88-platform-review__btn-primary,
            .page-resources-vivu88-platform-review__btn-secondary {
                width: 100% !important;
                max-width: 100% !important;
                padding: 12px 20px;
                font-size: 1em;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-resources-vivu88-platform-review__section {
                padding: 40px 15px;
            }

            .page-resources-vivu88-platform-review__section-title {
                font-size: 2em;
            }

            .page-resources-vivu88-platform-review__content-block h3 {
                font-size: 1.5em;
            }

            .page-resources-vivu88-platform-review__game-grid {
                grid-template-columns: 1fr;
            }

            .page-resources-vivu88-platform-review__game-card-image {
                height: 180px;
            }

            .page-resources-vivu88-platform-review__faq-section {
                padding: 40px 15px;
            }

            .page-resources-vivu88-platform-review__faq-title {
                font-size: 1.8em;
            }

            .page-resources-vivu88-platform-review__faq-question {
                padding: 15px 20px;
                font-size: 1em;
            }

            .page-resources-vivu88-platform-review__faq-question h3 {
                font-size: 1em;
            }

            .page-resources-vivu88-platform-review__faq-answer {
                padding: 0 20px;
            }

            .page-resources-vivu88-platform-review__faq-item.active .page-resources-vivu88-platform-review__faq-answer {
                padding: 15px 20px !important;
            }

            .page-resources-vivu88-platform-review__image-full-width,
            .page-resources-vivu88-platform-review img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
                box-sizing: border-box !important;
            }

            .page-resources-vivu88-platform-review__section,
            .page-resources-vivu88-platform-review__card,
            .page-resources-vivu88-platform-review__container,
            .page-resources-vivu88-platform-review__game-card,
            .page-resources-vivu88-platform-review__faq-item,
            .page-resources-vivu88-platform-review__faq-list {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-resources-vivu88-platform-review__internal-link {
                width: 100% !important;
                max-width: 100% !important;
                margin: 5px 0;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-resources-vivu88-platform-review__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;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }

            .page-resources-vivu88-platform-review__game-grid {
                padding-left: 0;
                padding-right: 0;
            }
        }
    