
        .page-online-entertainment {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-online-entertainment__hero-section {
            position: relative;
            padding-top: 10px; /* body đã xử lý padding-top: var(--header-offset) */
            padding-bottom: 60px;
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .page-online-entertainment__hero-image-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 20px auto;
        }

        .page-online-entertainment__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        .page-online-entertainment__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-online-entertainment__hero-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-online-entertainment__hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-online-entertainment__cta-button {
            display: inline-block;
            background-color: #64748b;
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-online-entertainment__cta-button:hover {
            background-color: #526071;
            transform: translateY(-2px);
        }

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

        .page-online-entertainment__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #2563eb;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

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

        .page-online-entertainment__card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: #333333;
        }

        .page-online-entertainment__card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .page-online-entertainment__card-image-wrapper {
            margin-bottom: 20px;
        }

        .page-online-entertainment__card-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
            margin: 0 auto;
        }

        .page-online-entertainment__card-title {
            font-size: 1.5rem;
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-online-entertainment__card-description {
            font-size: 1rem;
            color: #555555;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-online-entertainment__card-link {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-online-entertainment__card-link:hover {
            background-color: #1a4aae;
        }

        .page-online-entertainment__text-block {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            color: #333333;
        }

        .page-online-entertainment__text-block h2 {
            color: #2563eb;
            font-size: 2.2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .page-online-entertainment__text-block h3 {
            color: #2563eb;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .page-online-entertainment__text-block p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .page-online-entertainment__text-block ul {
            list-style: disc inside;
            margin-left: 20px;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .page-online-entertainment__text-block li {
            margin-bottom: 8px;
            color: #555555;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .page-online-entertainment__faq-section {
            background-color: #e3f2fd;
            padding: 60px 20px;
            margin-bottom: 40px;
            color: #333333;
        }

        .page-online-entertainment__faq-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #2563eb;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-online-entertainment__faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .page-online-entertainment__faq-item {
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .page-online-entertainment__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #333333;
            cursor: pointer;
            user-select: none;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s ease;
        }

        .page-online-entertainment__faq-question:hover {
            background-color: #f0f8ff;
        }

        .page-online-entertainment__faq-question h3 {
            margin: 0;
            color: #333333;
            pointer-events: none;
        }

        .page-online-entertainment__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            pointer-events: none;
            transition: transform 0.3s ease;
            color: #2563eb;
        }

        .page-online-entertainment__faq-item.active .page-online-entertainment__faq-toggle {
            transform: rotate(45deg);
        }

        .page-online-entertainment__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;
            color: #555555;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .page-online-entertainment__faq-item.active .page-online-entertainment__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-online-entertainment__section {
                padding: 40px 20px;
            }
            .page-online-entertainment__hero-title {
                font-size: clamp(2rem, 5vw, 3rem);
            }
            .page-online-entertainment__hero-description {
                font-size: clamp(0.95rem, 2vw, 1.1rem);
            }
            .page-online-entertainment__section-title {
                font-size: clamp(1.6rem, 4vw, 2.5rem);
            }
            .page-online-entertainment__card-title {
                font-size: 1.4rem;
            }
            .page-online-entertainment__card-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .page-online-entertainment {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-online-entertainment__hero-section {
                padding: 40px 15px;
                padding-top: 10px !important;
            }

            .page-online-entertainment__hero-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }

            .page-online-entertainment__hero-description {
                font-size: clamp(0.9rem, 3vw, 1rem);
            }

            .page-online-entertainment__cta-button {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            
            .page-online-entertainment__section {
                padding: 30px 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-online-entertainment__section-title {
                font-size: clamp(1.5rem, 6vw, 2.2rem);
                margin-bottom: 30px;
            }

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

            .page-online-entertainment__card {
                padding: 25px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-online-entertainment__card-title {
                font-size: 1.3rem;
            }

            .page-online-entertainment__card-description {
                font-size: 0.9rem;
            }

            .page-online-entertainment__card-link {
                padding: 10px 15px;
                font-size: 0.9rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-online-entertainment__text-block {
                padding: 30px 20px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-online-entertainment__text-block h2 {
                font-size: 1.8rem;
            }

            .page-online-entertainment__text-block h3 {
                font-size: 1.5rem;
            }

            .page-online-entertainment__text-block p,
            .page-online-entertainment__text-block ul,
            .page-online-entertainment__text-block li {
                font-size: 1rem;
            }

            .page-online-entertainment__faq-section {
                padding: 40px 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-online-entertainment__faq-title {
                font-size: clamp(1.6rem, 6vw, 2.2rem);
            }

            .page-online-entertainment__faq-question {
                padding: 15px 20px;
                font-size: 1.1rem;
            }

            .page-online-entertainment__faq-answer {
                padding: 15px 20px !important;
                font-size: 0.95rem;
            }
            
            .page-online-entertainment img {
                max-width: 100% !important;
                height: auto !important;
                display: block !important;
            }
        }
    