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

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

        .page-bl555game__section {
            padding: 40px 20px;
            margin-bottom: 20px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page-bl555game__dark-section {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-bl555game__dark-section h2,
        .page-bl555game__dark-section h3,
        .page-bl555game__dark-section p {
            color: #ffffff;
        }

        .page-bl555game h1,
        .page-bl555game h2,
        .page-bl555game h3 {
            color: #2563eb;
            margin-bottom: 15px;
            text-align: center;
        }

        .page-bl555game h1 {
            font-size: clamp(2em, 5vw, 3em);
            font-weight: 700;
            line-height: 1.2;
        }

        .page-bl555game h2 {
            font-size: clamp(1.8em, 4vw, 2.5em);
            font-weight: 600;
            padding-bottom: 10px;
            margin-bottom: 25px;
            position: relative;
        }

        .page-bl555game h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #2563eb;
            border-radius: 2px;
        }

        .page-bl555game h3 {
            font-size: clamp(1.4em, 3vw, 1.8em);
            font-weight: 500;
        }

        .page-bl555game p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .page-bl555game strong {
            color: #64748b;
        }

        .page-bl555game__hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            text-align: center;
            padding-top: 10px; /* Adjusted to avoid double padding-top */
            padding-bottom: 40px;
            background-color: #f0f8ff;
        }

        .page-bl555game__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
            margin: 0 auto 20px auto;
            border-radius: 8px;
        }

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

        .page-bl555game__hero-content p {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: #444444;
        }

        .page-bl555game__hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .page-bl555game__btn-primary,
        .page-bl555game__btn-secondary,
        .page-bl555game__btn-tertiary,
        .page-bl555game__floating-button-link {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            box-sizing: border-box;
            text-align: center;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

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

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

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

        .page-bl555game__btn-secondary:hover {
            background-color: #e0f2fe;
            transform: translateY(-2px);
        }

        .page-bl555game__btn-tertiary {
            background-color: #64748b;
            color: #ffffff;
            border: 2px solid #64748b;
            font-size: 0.9em;
            padding: 10px 20px;
            border-radius: 20px;
        }

        .page-bl555game__btn-tertiary:hover {
            background-color: #4a5568;
            transform: translateY(-1px);
        }

        .page-bl555game__text-link {
            color: #2563eb;
            text-decoration: none;
            font-weight: bold;
        }

        .page-bl555game__text-link:hover {
            text-decoration: underline;
        }

        .page-bl555game__games-section {
            background-color: #f0f8ff;
        }

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

        .page-bl555game__game-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            padding-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .page-bl555game__game-card:hover {
            transform: translateY(-5px);
        }

        .page-bl555game__game-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            margin-bottom: 15px;
        }

        .page-bl555game__game-card h3 {
            font-size: 1.25em;
            margin-bottom: 10px;
            padding: 0 15px;
        }

        .page-bl555game__game-card p {
            font-size: 0.95em;
            color: #666666;
            padding: 0 15px;
            margin-bottom: 20px;
            text-align: center;
        }

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

        .page-bl555game__promo-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            padding-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .page-bl555game__promo-card:hover {
            transform: translateY(-5px);
        }

        .page-bl555game__promo-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            margin-bottom: 15px;
        }

        .page-bl555game__promo-card h3 {
            font-size: 1.3em;
            margin-bottom: 10px;
            padding: 0 15px;
        }

        .page-bl555game__promo-card p {
            font-size: 0.95em;
            color: #666666;
            padding: 0 15px;
            margin-bottom: 20px;
            text-align: center;
        }

        .page-bl555game__guide-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .page-bl555game__guide-list li {
            background-color: #f0f8ff;
            margin-bottom: 10px;
            padding: 15px 20px;
            border-left: 5px solid #2563eb;
            border-radius: 5px;
            font-size: 1.05em;
            color: #444444;
            box-sizing: border-box;
        }

        .page-bl555game__guide-list li strong {
            color: #2563eb;
        }

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

        .page-bl555game__why-choose-section ul {
            list-style: none;
            padding: 0;
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .page-bl555game__why-choose-section li {
            background-color: #f0f8ff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            text-align: center;
            font-size: 1.1em;
            font-weight: 500;
            color: #333333;
            transition: transform 0.3s ease;
            box-sizing: border-box;
        }

        .page-bl555game__why-choose-section li:hover {
            transform: translateY(-3px);
        }

        .page-bl555game__why-choose-section li img {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

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

        .page-bl555game__faq-item {
            background-color: #f0f8ff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .page-bl555game__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            cursor: pointer;
            user-select: none;
            background-color: #ffffff;
            border-bottom: 1px solid #e0e0e0;
            transition: background-color 0.3s ease;
        }

        .page-bl555game__faq-question:hover {
            background-color: #f5f5f5;
        }

        .page-bl555game__faq-question h3 {
            margin: 0;
            font-size: 1.15em;
            color: #2563eb;
            text-align: left;
            pointer-events: none; /* Prevent h3 from blocking click event */
        }

        .page-bl555game__faq-toggle {
            font-size: 1.8em;
            font-weight: bold;
            color: #2563eb;
            transition: transform 0.3s ease;
            pointer-events: none; /* Prevent toggle from blocking click event */
        }

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

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

        .page-bl555game__faq-item.active .page-bl555game__faq-answer {
            max-height: 2000px !important; /* Use !important for override */
            padding: 20px !important;
            opacity: 1;
        }

        .page-bl555game__cta-section {
            text-align: center;
            padding-top: 50px;
            padding-bottom: 50px;
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-bl555game__cta-section h2,
        .page-bl555game__cta-section p {
            color: #ffffff;
        }

        .page-bl555game__cta-section .page-bl555game__btn-primary {
            background-color: #ffffff;
            color: #2563eb;
            border-color: #ffffff;
        }

        .page-bl555game__cta-section .page-bl555game__btn-primary:hover {
            background-color: #e0f2fe;
            color: #2563eb;
        }

        .page-bl555game__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .page-bl555game__floating-button-link {
            background-color: #ffc107;
            color: #333333;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .page-bl555game__floating-button-link:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }

        .page-bl555game img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 1024px) {
            .page-bl555game__hero-content h1 {
                font-size: clamp(1.8em, 4.5vw, 2.8em);
            }

            .page-bl555game__game-grid,
            .page-bl555game__promo-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .page-bl555game__why-choose-section ul {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-bl555game__container {
                padding: 15px;
            }

            .page-bl555game__section {
                padding: 30px 15px;
            }

            .page-bl555game h1 {
                font-size: clamp(1.6em, 6vw, 2.5em);
            }

            .page-bl555game h2 {
                font-size: clamp(1.5em, 5vw, 2em);
                padding-bottom: 8px;
                margin-bottom: 20px;
            }

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

            .page-bl555game__hero-image {
                max-height: 300px;
            }

            .page-bl555game__hero-buttons,
            .page-bl555game__download-buttons {
                flex-direction: column;
                gap: 15px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-bl555game__btn-primary,
            .page-bl555game__btn-secondary,
            .page-bl555game__btn-tertiary,
            .page-bl555game a[class*="button"],
            .page-bl555game a[class*="btn"] {
                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-bl555game__game-grid,
            .page-bl555game__promo-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-bl555game__game-card img,
            .page-bl555game__promo-card img {
                height: 180px;
            }

            .page-bl555game__why-choose-section ul {
                grid-template-columns: 1fr;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-bl555game__why-choose-section li {
                font-size: 1em;
                padding: 20px;
            }

            .page-bl555game__faq-question h3 {
                font-size: 1em;
            }

            .page-bl555game__faq-answer {
                padding: 0 15px;
            }

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

            .page-bl555game__floating-button {
                bottom: 15px;
                right: 15px;
            }

            .page-bl555game__floating-button-link {
                font-size: 1em;
                padding: 10px 20px;
            }

            .page-bl555game img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }

            .page-bl555game__section,
            .page-bl555game__card,
            .page-bl555game__container,
            .page-bl555game__game-grid,
            .page-bl555game__promo-grid,
            .page-bl555game__why-choose-section ul,
            .page-bl555game__guide-list li {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow-x: hidden;
            }

            .page-bl555game__guide-list li {
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 10px;
                padding-right: 10px;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    