
        /* CSS cho trang mv88slot */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #111111;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
            --bg-dark: #0d0d0d;
        }

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

        .page-mv88slot__hero-section {
            position: relative;
            text-align: center;
            padding-top: 10px; /* Adjust for fixed header, small top padding */
            padding-bottom: 40px;
            background-color: var(--bg-dark);
            overflow: hidden;
        }

        .page-mv88slot__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
        }

        .page-mv88slot__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            color: var(--text-light);
        }

        .page-mv88slot__hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            color: var(--text-light);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .page-mv88slot__hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .page-mv88slot__btn-primary {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-mv88slot__btn-primary:hover {
            background-color: #1e40af;
            transform: translateY(-2px);
        }

        .page-mv88slot__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-mv88slot__section h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-mv88slot__section p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .page-mv88slot__image-container {
            margin: 40px auto;
            max-width: 800px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .page-mv88slot__image-container img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .page-mv88slot__game-categories-section {
            background-color: var(--bg-light);
        }

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

        .page-mv88slot__game-card {
            background-color: var(--text-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-mv88slot__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

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

        .page-mv88slot__game-card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-mv88slot__game-card h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-mv88slot__game-card p {
            font-size: 0.95rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-mv88slot__game-card .page-mv88slot__btn-primary {
            width: 100%;
            padding: 12px 20px;
            font-size: 1rem;
            text-align: center;
        }

        .page-mv88slot__promotions-section {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .page-mv88slot__promotions-section h2 {
            color: var(--text-light);
        }

        .page-mv88slot__promotions-list {
            list-style: none;
            padding: 0;
            margin: 40px auto 0;
            max-width: 800px;
            text-align: left;
        }

        .page-mv88slot__promotions-list li {
            background-color: rgba(255, 255, 255, 0.1);
            margin-bottom: 15px;
            padding: 20px;
            border-radius: 8px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .page-mv88slot__promotions-list li:last-child {
            margin-bottom: 0;
        }

        .page-mv88slot__promotions-list li::before {
            content: '⭐';
            font-size: 1.5rem;
            line-height: 1;
        }

        .page-mv88slot__guide-section {
            background-color: var(--bg-light);
        }

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

        .page-mv88slot__step-card {
            background-color: var(--text-light);
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: left;
        }

        .page-mv88slot__step-card h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .page-mv88slot__step-card h3::before {
            content: attr(data-step);
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            font-size: 1rem;
            font-weight: 700;
        }

        .page-mv88slot__step-card p {
            font-size: 1rem;
            color: var(--secondary-color);
        }

        .page-mv88slot__app-download-section {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .page-mv88slot__app-download-section h2 {
            color: var(--text-light);
        }

        .page-mv88slot__app-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }

        .page-mv88slot__app-image {
            max-width: 400px;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .page-mv88slot__faq-section {
            background-color: var(--bg-light);
        }

        .page-mv88slot__faq-list {
            max-width: 900px;
            margin: 40px auto 0;
            text-align: left;
        }

        .page-mv88slot__faq-item {
            background-color: var(--text-light);
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .page-mv88slot__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            user-select: none;
            background-color: #f0f4f8;
            border-bottom: 1px solid #e2e8f0;
        }

        .page-mv88slot__faq-question:hover {
            background-color: #e2e8f0;
        }

        .page-mv88slot__faq-question h3 {
            margin: 0;
            flex-grow: 1;
            pointer-events: none; /* Prevent h3 from blocking click */
            color: var(--primary-color);
        }

        .page-mv88slot__faq-toggle {
            font-size: 1.8rem;
            font-weight: 300;
            margin-left: 15px;
            line-height: 1;
            pointer-events: none; /* Prevent icon from blocking click */
            color: var(--primary-color);
        }

        .page-mv88slot__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: var(--secondary-color);
            text-align: left;
        }

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

        .page-mv88slot__cta-section {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .page-mv88slot__cta-section h2 {
            color: var(--text-light);
        }

        .page-mv88slot__cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

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

        .page-mv88slot__section,
        .page-mv88slot__image-container,
        .page-mv88slot__game-card,
        .page-mv88slot__promotions-list,
        .page-mv88slot__promotions-list li,
        .page-mv88slot__guide-steps,
        .page-mv88slot__step-card,
        .page-mv88slot__app-content,
        .page-mv88slot__faq-list,
        .page-mv88slot__faq-item {
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-mv88slot {
                font-size: 16px;
                line-height: 1.5;
            }

            .page-mv88slot__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }

            .page-mv88slot__hero-content h1 {
                font-size: clamp(2rem, 8vw, 2.5rem);
            }

            .page-mv88slot__hero-content p {
                font-size: clamp(0.9rem, 3vw, 1.1rem);
            }

            .page-mv88slot__btn-primary {
                padding: 12px 20px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                margin-left: auto;
                margin-right: auto;
            }

            .page-mv88slot__section {
                padding: 40px 15px;
            }

            .page-mv88slot__section h2 {
                font-size: clamp(1.6rem, 6vw, 2.2rem);
            }

            .page-mv88slot__section p {
                font-size: 1rem;
            }

            .page-mv88slot__image-container {
                margin: 30px auto;
            }

            .page-mv88slot__games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-mv88slot__game-card-image {
                height: 180px;
            }

            .page-mv88slot__game-card-content {
                padding: 20px;
            }

            .page-mv88slot__game-card h3 {
                font-size: 1.2rem;
            }

            .page-mv88slot__promotions-list {
                margin-top: 30px;
                padding: 0 15px;
            }

            .page-mv88slot__promotions-list li {
                font-size: 1rem;
                padding: 15px;
            }

            .page-mv88slot__guide-steps {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-mv88slot__step-card {
                padding: 25px;
            }

            .page-mv88slot__step-card h3 {
                font-size: 1.2rem;
            }

            .page-mv88slot__app-content {
                gap: 20px;
            }

            .page-mv88slot__app-image {
                max-width: 300px;
            }

            .page-mv88slot__faq-list {
                margin-top: 30px;
                padding: 0 15px;
            }

            .page-mv88slot__faq-question {
                font-size: 1rem;
                padding: 15px;
            }

            .page-mv88slot__faq-answer {
                padding: 15px !important;
            }

            /* General image and container responsiveness for mobile */
            .page-mv88slot img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-mv88slot__section,
            .page-mv88slot__image-container,
            .page-mv88slot__game-card,
            .page-mv88slot__promotions-list,
            .page-mv88slot__promotions-list li,
            .page-mv88slot__guide-steps,
            .page-mv88slot__step-card,
            .page-mv88slot__app-content,
            .page-mv88slot__faq-list,
            .page-mv88slot__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-mv88slot__cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
                padding-left: 15px;
                padding-right: 15px;
            }
        }
    