
        :root {
            --primary-color: #FFD700; /* Vàng */
            --secondary-color: #FFFFFF; /* Trắng */
            --background-color: #000000; /* Đen */
            --text-color-light: #FFFFFF;
            --text-color-dark: #1a1a1a;
            --accent-color: #EA7C07; /* Màu cam cho nút đăng nhập nổi */
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color-light);
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding-top: var(--header-offset); /* Đã được shared.css xử lý */
        }

        .page--blog-12bet-mobile {
            color: var(--text-color-light);
            background-color: var(--background-color);
            padding-bottom: 80px;
        }

        .page--blog-12bet-mobile__hero-section {
            text-align: center;
            padding: 10px 20px 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .page--blog-12bet-mobile__hero-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .page--blog-12bet-mobile__hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page--blog-12bet-mobile__hero-content h1 {
            font-size: clamp(2em, 5vw, 3.5em);
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .page--blog-12bet-mobile__hero-content p {
            font-size: clamp(1em, 2.5vw, 1.2em);
            color: var(--secondary-color);
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .page--blog-12bet-mobile__btn-primary {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--background-color);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--blog-12bet-mobile__btn-primary:hover {
            background-color: #e6c200;
            transform: translateY(-3px);
        }

        .page--blog-12bet-mobile__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            box-sizing: border-box;
        }

        .page--blog-12bet-mobile__section h2 {
            font-size: clamp(1.8em, 4vw, 2.8em);
            color: var(--primary-color);
            margin-bottom: 40px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .page--blog-12bet-mobile__section p {
            font-size: 1.1em;
            color: var(--text-color-light);
            margin-bottom: 20px;
        }

        .page--blog-12bet-mobile__game-grid, .page--blog-12bet-mobile__provider-grid, .page--blog-12bet-mobile__social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
            justify-content: center;
        }

        .page--blog-12bet-mobile__card {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: var(--text-color-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            max-width: 100%;
            box-sizing: border-box;
        }

        .page--blog-12bet-mobile__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
        }

        .page--blog-12bet-mobile__card-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
            object-fit: cover;
        }

        .page--blog-12bet-mobile__card h3 {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .page--blog-12bet-mobile__card p {
            font-size: 0.95em;
            color: var(--secondary-color);
            flex-grow: 1;
            margin-bottom: 20px;
        }

        .page--blog-12bet-mobile__provider-logo {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: contain;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            box-sizing: border-box;
        }

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

        .page--blog-12bet-mobile__guide-item {
            background-color: rgba(255, 255, 255, 0.08);
            border-left: 5px solid var(--primary-color);
            margin-bottom: 20px;
            padding: 20px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s ease;
        }

        .page--blog-12bet-mobile__guide-item:hover {
            background-color: rgba(255, 255, 255, 0.12);
        }

        .page--blog-12bet-mobile__guide-item h3 {
            color: var(--primary-color);
            margin-top: 0;
            font-size: 1.3em;
        }

        .page--blog-12bet-mobile__guide-item p {
            color: var(--secondary-color);
            font-size: 1em;
        }

        .page--blog-12bet-mobile__app-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }

        .page--blog-12bet-mobile__social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-color-light);
            font-size: 1.1em;
            transition: color 0.3s ease;
        }

        .page--blog-12bet-mobile__social-link:hover {
            color: var(--primary-color);
        }

        .page--blog-12bet-mobile__social-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
            border-radius: 50%;
            object-fit: contain;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .page--blog-12bet-mobile__faq-item {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .page--blog-12bet-mobile__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            background-color: rgba(255, 255, 255, 0.08);
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .page--blog-12bet-mobile__faq-question:hover {
            background-color: rgba(255, 255, 255, 0.12);
        }

        .page--blog-12bet-mobile__faq-question h3 {
            color: var(--primary-color);
            margin: 0;
            font-size: 1.2em;
            pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
        }

        .page--blog-12bet-mobile__faq-toggle {
            font-size: 1.8em;
            color: var(--primary-color);
            font-weight: bold;
            pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
            transition: transform 0.3s ease;
        }

        .page--blog-12bet-mobile__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(--secondary-color);
            text-align: left;
        }

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

        .page--blog-12bet-mobile__floating-login-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent-color);
            color: var(--secondary-color);
            padding: 15px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1em;
            box-shadow: 0 4px 15px rgba(234, 124, 7, 0.6);
            z-index: 1000;
            transition: background-color 0.3s ease, transform 0.3s ease;
            max-width: 200px; /* Giới hạn chiều rộng để không quá lớn */
            text-align: center;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--blog-12bet-mobile__floating-login-btn:hover {
            background-color: #d16b00;
            transform: translateY(-5px);
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page--blog-12bet-mobile__game-grid, .page--blog-12bet-mobile__provider-grid, .page--blog-12bet-mobile__social-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .page--blog-12bet-mobile__floating-login-btn {
                right: 15px;
                bottom: 15px;
                padding: 12px 20px;
                font-size: 0.9em;
            }
        }

        @media (max-width: 768px) {
            .page--blog-12bet-mobile__hero-content h1 {
                font-size: 2.2em;
            }
            .page--blog-12bet-mobile__hero-content p {
                font-size: 1em;
            }
            .page--blog-12bet-mobile__section {
                padding: 40px 15px;
            }
            .page--blog-12bet-mobile__section h2 {
                font-size: 1.8em;
            }
            .page--blog-12bet-mobile__game-grid, .page--blog-12bet-mobile__provider-grid, .page--blog-12bet-mobile__social-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page--blog-12bet-mobile__card {
                padding: 20px;
            }
            .page--blog-12bet-mobile__guide-item {
                padding: 15px 20px;
            }
            .page--blog-12bet-mobile__floating-login-btn {
                max-width: 180px;
                padding: 10px 18px;
                font-size: 0.85em;
            }
            /* Mobile specific image adaptation */
            .page--blog-12bet-mobile img {
                max-width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page--blog-12bet-mobile__section,
            .page--blog-12bet-mobile__card,
            .page--blog-12bet-mobile__container,
            .page--blog-12bet-mobile__game-grid,
            .page--blog-12bet-mobile__provider-grid,
            .page--blog-12bet-mobile__social-grid,
            .page--blog-12bet-mobile__guide-list {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page--blog-12bet-mobile__hero-section {
                padding-top: 10px !important;
            }
            /* Button mobile adaptation */
            .page--blog-12bet-mobile__cta-button,
            .page--blog-12bet-mobile__btn-primary,
            .page--blog-12bet-mobile__btn-secondary,
            .page--blog-12bet-mobile a[class*="button"],
            .page--blog-12bet-mobile 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--blog-12bet-mobile__cta-buttons,
            .page--blog-12bet-mobile__button-group,
            .page--blog-12bet-mobile__btn-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                flex-wrap: wrap !important;
                gap: 10px;
                display: flex;
                flex-direction: column;
            }
             .page--blog-12bet-mobile__faq-answer {
                padding: 15px !important;
            }
            .page--blog-12bet-mobile__faq-question {
                padding: 15px;
            }
            .page--blog-12bet-mobile__faq-question h3 {
                font-size: 1em;
            }
        }
    