
        body {
            background-color: #000000;
            color: #ffffff;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            overflow-x: hidden; /* Ngăn chặn cuộn ngang */
        }

        .page-game {
            max-width: 100%;
            overflow-x: hidden; /* Ngăn chặn cuộn ngang */
        }

        .page-game__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 60px 20px;
            padding-top: 10px; /* Đảm bảo không bị che bởi header */
            text-align: center;
            background-color: #000000;
            color: #ffffff;
        }

        .page-game__hero-image-container {
            width: 100%;
            max-width: 1200px;
            margin-bottom: 20px;
            box-sizing: border-box;
        }

        .page-game__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            object-fit: cover;
        }

        .page-game__logo-image {
            width: 100%;
            max-width: 250px;
            height: auto;
            display: block;
            margin: 0 auto 20px auto;
        }

        .page-game__main-title {
            color: #f9d723;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(249, 215, 35, 0.5);
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        .page-game__description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 800px;
            color: #f0f0f0;
        }

        .page-game__cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .page-game__btn-primary {
            background-color: #f9d723;
            color: #000000;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-game__btn-primary:hover {
            background-color: #e0c21e;
            transform: translateY(-2px);
        }

        .page-game__btn-secondary {
            background-color: #2563eb;
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-game__btn-secondary:hover {
            background-color: #1a4dbe;
            transform: translateY(-2px);
        }

        .page-game__section {
            padding: 50px 20px;
            background-color: #111111;
            text-align: center;
            color: #ffffff;
            border-bottom: 1px solid #333333;
            box-sizing: border-box;
            width: 100%;
        }

        .page-game__section-title {
            color: #f9d723;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-game__section-content {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #e0e0e0;
        }

        .page-game__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 40px auto 0 auto;
        }

        .page-game__card {
            background-color: #1a1a1a;
            border-radius: 10px;
            padding: 25px;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
        }

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

        .page-game__card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            display: block;
        }

        .page-game__card-title {
            color: #f9d723;
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 600;
            text-align: center;
        }

        .page-game__card-text {
            font-size: 0.95rem;
            color: #cccccc;
            text-align: center;
            flex-grow: 1;
        }

        .page-game__card-link {
            display: inline-block;
            margin-top: 20px;
            color: #f9d723;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-game__card-link:hover {
            color: #e0c21e;
        }

        .page-game__provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 40px auto 0 auto;
            align-items: center;
            justify-items: center;
        }

        .page-game__provider-item {
            background-color: #1a1a1a;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            height: 120px;
            box-sizing: border-box;
        }

        .page-game__provider-item:hover {
            transform: translateY(-3px);
        }

        .page-game__provider-logo {
            max-width: 100px;
            max-height: 60px;
            object-fit: contain;
            margin-bottom: 10px;
            display: block;
        }

        .page-game__provider-name {
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
        }

        .page-game__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #f9d723;
            color: #000000;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .page-game__floating-button:hover {
            transform: scale(1.05);
        }

        .page-game__floating-button-icon {
            margin-right: 8px;
            font-size: 1.2em;
        }

        .page-game__faq-section {
            background-color: #0a0a0a;
            padding: 50px 20px;
            color: #ffffff;
            border-top: 1px solid #333333;
            box-sizing: border-box;
            width: 100%;
        }

        .page-game__faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .page-game__faq-item {
            margin-bottom: 15px;
            border: 1px solid #333333;
            border-radius: 8px;
            overflow: hidden;
            background-color: #1a1a1a;
            box-sizing: border-box;
        }

        .page-game__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            background-color: #222222;
            font-weight: bold;
            font-size: 1.1rem;
            color: #f0f0f0;
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .page-game__faq-question:hover {
            background-color: #2c2c2c;
        }

        .page-game__faq-question h3 {
            margin: 0;
            color: inherit;
            pointer-events: none; /* Ngăn chặn sự kiện click riêng lẻ */
            flex-grow: 1;
            text-align: left;
        }

        .page-game__faq-toggle {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f9d723;
            transition: transform 0.3s ease;
            pointer-events: none; /* Ngăn chặn sự kiện click riêng lẻ */
            margin-left: 15px;
        }

        .page-game__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            background-color: #1a1a1a;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            color: #cccccc;
            text-align: left;
        }

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

        .page-game__video-section {
            background-color: #000000;
            padding: 50px 20px;
            text-align: center;
            color: #ffffff;
            box-sizing: border-box;
            width: 100%;
            padding-top: 10px; /* Small padding top, body handles header offset */
        }

        .page-game__video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            box-sizing: border-box;
        }

        .page-game__video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            cursor: pointer;
            display: block;
        }

        .page-game__social-media-section {
            padding: 50px 20px;
            background-color: #111111;
            text-align: center;
            color: #ffffff;
            box-sizing: border-box;
            width: 100%;
        }

        .page-game__social-icons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .page-game__social-icon-link {
            color: #ffffff;
            font-size: 2.5rem;
            transition: color 0.3s ease, transform 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .page-game__social-icon-link:hover {
            color: #f9d723;
            transform: translateY(-3px);
        }

        .page-game__social-icon-link img {
            width: 48px; /* Minimum 200px required, but social icons are exceptions */
            height: 48px;
            object-fit: contain;
            display: block;
        }

        .page-game__about-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .page-game__about-link {
            color: #f9d723;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-game__about-link:hover {
            color: #e0c21e;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-game__grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            .page-game__hero-section {
                padding: 40px 15px;
            }
            .page-game__main-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }
            .page-game__description {
                font-size: 1rem;
            }
            .page-game__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }
            .page-game__btn-primary,
            .page-game__btn-secondary {
                width: 100% !important;
                max-width: 100% !important;
                padding: 12px 20px;
                font-size: 1rem;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-game__section {
                padding: 40px 15px;
            }
            .page-game__section-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
            }
            .page-game__grid {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            .page-game__card {
                padding: 20px;
            }
            .page-game__card-image {
                height: 180px;
            }
            .page-game__card-title {
                font-size: 1.2rem;
            }
            .page-game__provider-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 15px;
            }
            .page-game__provider-item {
                height: 100px;
                padding: 10px;
            }
            .page-game__provider-logo {
                max-width: 80px;
            }
            .page-game__floating-button {
                bottom: 15px;
                right: 15px;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .page-game__faq-section {
                padding: 40px 15px;
            }
            .page-game__faq-question {
                padding: 15px 20px;
                font-size: 1rem;
            }
            .page-game__faq-answer {
                padding: 15px 20px;
            }
            .page-game__video-section {
                padding: 40px 15px;
                padding-top: 10px !important;
            }
            .page-game video,
            .page-game__video {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-game__video-container,
            .page-game__video-wrapper {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 0;
                padding-right: 0;
                overflow: hidden !important;
            }
            .page-game__social-icons {
                gap: 15px;
            }
            .page-game__social-icon-link img {
                width: 40px;
                height: 40px;
            }
            .page-game__about-links {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }
            .page-game__about-link {
                width: 100% !important;
                max-width: 100% !important;
            }
            /* Ensure all images are responsive */
            .page-game img {
                max-width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            /* Ensure all containers with images/videos/buttons are responsive */
            .page-game__section,
            .page-game__card,
            .page-game__container,
            .page-game__hero-image-container,
            .page-game__provider-item,
            .page-game__faq-item,
            .page-game__social-media-section,
            .page-game__about-links {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-game__section-content,
            .page-game__faq-container,
            .page-game__grid,
            .page-game__provider-grid {
                padding-left: 0;
                padding-right: 0;
            }
            .page-game p, .page-game li {
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    