
        /* style/beet88.css */
        /* body đã padding-top: var(--header-offset); trang này không cần thêm padding-top cho các phần tử đầu tiên */

        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #333333;
            --text-light: #ffffff;
            --background-light: #f8f9fa;
            --background-dark: #1a202c;
        }

        .page-beet88 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--background-light);
        }

        .page-beet88__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 60px 20px;
            padding-top: 10px; /* Nhỏ hơn để tránh trùng với body padding-top */
            background-color: var(--background-dark);
            color: var(--text-light);
            overflow: hidden;
        }

        .page-beet88__hero-image-wrapper {
            width: 100%;
            max-width: 100%;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .page-beet88__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            object-fit: cover;
        }

        .page-beet88__hero-content {
            max-width: 900px;
            position: relative;
            z-index: 2;
        }

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

        .page-beet88__subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: #e0e0e0;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .page-beet88__btn-primary,
        .page-beet88__btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
            min-width: 180px;
        }

        .page-beet88__btn-primary {
            background-color: var(--primary-color);
            color: var(--text-light);
            border: 2px solid var(--primary-color);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        .page-beet88__btn-primary:hover {
            background-color: #1e50c7;
            border-color: #1e50c7;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

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

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

        .page-beet88__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--background-light);
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .page-beet88__section--dark {
            background-color: var(--background-dark);
            color: var(--text-light);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .page-beet88__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .page-beet88__section-title--light {
            color: var(--text-light);
        }

        .page-beet88__section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .page-beet88__section-title--light::after {
            background-color: var(--text-light);
        }

        .page-beet88__text-block p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.7;
        }

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

        .page-beet88__game-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            color: var(--text-dark);
        }

        .page-beet88__game-card--dark {
            background-color: #2c3e50;
            color: var(--text-light);
        }

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

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

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

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

        .page-beet88__game-card--dark .page-beet88__game-title {
            color: var(--text-light);
        }

        .page-beet88__game-description {
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-beet88__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;
        }

        .page-beet88__game-card-link:hover {
            background-color: #1e50c7;
        }

        .page-beet88__floating-login {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: #ffc107; /* Màu vàng nổi bật */
            color: #212529;
            padding: 12px 25px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
            gap: 8px;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: calc(100% - 40px);
        }

        .page-beet88__floating-login:hover {
            background-color: #e0a800;
            transform: scale(1.05);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .page-beet88__guide-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-beet88__guide-item {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .page-beet88__guide-item--dark {
            background-color: #2c3e50;
            color: var(--text-light);
        }

        .page-beet88__guide-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
        }

        .page-beet88__guide-content h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .page-beet88__guide-item--dark .page-beet88__guide-content h3 {
            color: var(--text-light);
        }

        .page-beet88__faq-list {
            margin-top: 30px;
        }

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

        .page-beet88__faq-item--dark {
            background-color: #2c3e50;
            color: var(--text-light);
        }

        .page-beet88__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            user-select: none;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--primary-color);
            transition: background-color 0.3s ease;
        }

        .page-beet88__faq-item--dark .page-beet88__faq-question {
            color: var(--text-light);
        }

        .page-beet88__faq-question:hover {
            background-color: #f0f0f0;
        }

        .page-beet88__faq-item--dark .page-beet88__faq-question:hover {
            background-color: #3a4b5d;
        }

        .page-beet88__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            pointer-events: none;
        }

        .page-beet88__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: var(--text-dark);
        }

        .page-beet88__faq-item--dark .page-beet88__faq-answer {
            color: var(--text-light);
        }

        .page-beet88__faq-item.active .page-beet88__faq-answer {
            max-height: 2000px !important; /* Đủ lớn để chứa nội dung */
            padding: 20px 25px !important;
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-beet88 {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-beet88__hero-section {
                padding: 40px 15px;
                padding-top: 10px;
            }

            .page-beet88__main-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
                margin-bottom: 15px;
            }

            .page-beet88__subtitle {
                font-size: clamp(0.9rem, 2.8vw, 1.1rem);
                margin-bottom: 20px;
            }

            .page-beet88__cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .page-beet88__btn-primary,
            .page-beet88__btn-secondary {
                width: 100% !important;
                max-width: 100% !important;
                padding: 12px 20px;
                font-size: 1rem;
            }

            .page-beet88__section {
                padding: 30px 15px;
                margin-bottom: 30px;
            }

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

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

            .page-beet88__game-image {
                height: 180px;
            }

            .page-beet88__game-title {
                font-size: 1.2rem;
            }

            .page-beet88__guide-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px;
            }

            .page-beet88__guide-icon {
                margin-bottom: 15px;
            }

            .page-beet88__guide-content h3 {
                font-size: 1.2rem;
            }

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

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

            .page-beet88__floating-login {
                bottom: 15px;
                right: 15px;
                padding: 10px 20px;
                font-size: 0.9rem;
                max-width: calc(100% - 30px);
            }

            /* Đảm bảo tất cả hình ảnh không tràn ra ngoài */
            .page-beet88 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-beet88 video,
            .page-beet88__video {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-beet88__hero-section,
            .page-beet88__section,
            .page-beet88__game-card,
            .page-beet88__guide-item,
            .page-beet88__faq-item,
            .page-beet88__cta-buttons,
            .page-beet88__game-grid,
            .page-beet88__guide-list,
            .page-beet88__faq-list,
            .page-beet88__video-container,
            .page-beet88__video-wrapper {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow: hidden !important;
            }

            .page-beet88__text-block p, .page-beet88__faq-answer p {
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }

            .page-beet88__guide-list li, .page-beet88__faq-list li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 15px;
                padding-right: 15px;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }

            .page-beet88__guide-list, .page-beet88__faq-list {
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }
    