
    .page-3bet999 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
        padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-3bet999__hero-section {
        position: relative;
        text-align: center;
        padding: 10px 0 40px; /* padding-top cho tiêu đề cố định */
        background-color: #222;
        overflow: hidden;
        color: #fff;
    }

    .page-3bet999__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: cover;
        filter: brightness(0.7); /* Làm tối hình ảnh để chữ dễ đọc hơn */
    }

    .page-3bet999__hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 90%;
        max-width: 800px;
    }

    .page-3bet999__main-title {
        font-size: 2.5em;
        margin-bottom: 15px;
        color: #ffcc00; /* Màu vàng kim làm điểm nhấn */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-3bet999__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-3bet999__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-3bet999__section-title {
        font-size: 2em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .page-3bet999__section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #ffcc00;
        margin: 10px auto 0;
    }

    .page-3bet999__text-content {
        font-size: 1em;
        margin-bottom: 20px;
        color: #ccc;
    }

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

    .page-3bet999__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-3bet999__game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-3bet999__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-3bet999__game-image {
        width: 100%;
        height: 200px; /* Chiều cao cố định cho hình ảnh game */
        object-fit: cover;
        display: block;
    }

    .page-3bet999__game-info {
        padding: 20px;
    }

    .page-3bet999__game-title {
        font-size: 1.3em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-3bet999__game-description {
        font-size: 0.95em;
        color: #bbb;
    }

    .page-3bet999__button {
        display: inline-block;
        background-color: #007bff; /* Màu xanh cho hành động */
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-3bet999__button:hover {
        background-color: #0056b3;
    }

    .page-3bet999__floating-button-wrapper {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    .page-3bet999__floating-button {
        background-color: #e74c3c; /* Màu đỏ cho khuyến mãi/khẩn cấp */
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .page-3bet999__floating-button:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
    }

    /* Phần FAQ */
    .page-3bet999__faq-section {
        padding: 40px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

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

    .page-3bet999__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #333;
        cursor: pointer;
        font-size: 1.1em;
        color: #ffcc00;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-3bet999__faq-question:hover {
        background-color: #444;
    }

    .page-3bet999__faq-question h3 {
        margin: 0;
        color: #ffcc00;
        pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-3bet999__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
        transition: transform 0.3s ease;
    }

    .page-3bet999__faq-item.active .page-3bet999__faq-toggle {
        transform: rotate(45deg); /* Biểu tượng xoay khi mở */
    }

    .page-3bet999__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background-color: #222;
        color: #ccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    /* Điều chỉnh Responsive */
    @media (max-width: 768px) {
        .page-3bet999__hero-section {
            padding-top: 10px; /* padding-top cho tiêu đề cố định trên di động */
            padding-bottom: 20px;
        }

        .page-3bet999__hero-content {
            position: static;
            transform: none;
            padding: 20px;
        }

        .page-3bet999__hero-image {
            height: 250px; /* Điều chỉnh chiều cao cho di động */
        }

        .page-3bet999__main-title {
            font-size: 2em;
        }

        .page-3bet999__hero-description {
            font-size: 1em;
        }

        .page-3bet999__section {
            padding: 30px 15px;
        }

        .page-3bet999__section-title {
            font-size: 1.8em;
        }

        .page-3bet999__game-grid {
            grid-template-columns: 1fr;
        }

        .page-3bet999__game-image {
            height: 180px;
        }

        .page-3bet999__floating-button-wrapper {
            bottom: 15px;
            right: 15px;
            left: 15px; /* Làm nút rộng toàn bộ trên di động */
            width: auto;
        }

        .page-3bet999__floating-button {
            font-size: 1em;
            padding: 12px 20px;
        }

        .page-3bet999__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }

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

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

        /* Tối ưu hóa hình ảnh responsive cho di động */
        .page-3bet999 img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-3bet999__game-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  