
        .page-tobet201 {
            font-family: 'Arial', sans-serif;
            background-color: #000000; /* Nền đen */
            color: #ffffff; /* Chữ trắng */
            line-height: 1.6;
        }

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

        .page-tobet201__hero-section {
            text-align: center;
            padding-top: 10px; /* Nhỏ hơn để body padding-top xử lý khoảng cách header */
            padding-bottom: 40px;
            background-color: #000000;
        }

        .page-tobet201__hero-image {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 20px;
            border-radius: 8px;
        }

        .page-tobet201__hero-content {
            padding: 0 20px;
        }

        .page-tobet201__hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            color: #ffcc00; /* Chữ vàng */
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .page-tobet201__hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #f0f0f0;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-tobet201__btn-primary {
            display: inline-block;
            background-color: #ffcc00; /* Nút vàng */
            color: #000000; /* Chữ đen trên nút vàng */
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-tobet201__section {
            padding: 60px 0;
            background-color: #1a1a1a;
            border-top: 1px solid #333333;
        }

        .page-tobet201__section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #ffcc00;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .page-tobet201__text-block {
            max-width: 900px;
            margin: 0 auto 40px auto;
            text-align: justify;
            padding: 0 15px;
        }

        .page-tobet201__text-block p {
            margin-bottom: 20px;
            color: #f0f0f0;
            font-size: 1.05rem;
        }

        .page-tobet201__text-block a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: 600;
        }

        .page-tobet201__text-block a:hover {
            text-decoration: underline;
        }

        .page-tobet201__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .page-tobet201__game-card {
            background-color: #222222;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            color: #ffffff;
        }

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

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

        .page-tobet201__game-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-tobet201__game-card-content h3 {
            font-size: 1.4rem;
            color: #ffcc00;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-tobet201__game-card-content p {
            font-size: 0.95rem;
            color: #f0f0f0;
            margin-bottom: 15px;
        }

        .page-tobet201__promotions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .page-tobet201__promotion-card {
            background-color: #222222;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease;
            padding-bottom: 20px;
        }

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

        .page-tobet201__promotion-card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            margin-bottom: 20px;
        }

        .page-tobet201__promotion-card h3 {
            font-size: 1.5rem;
            color: #ffcc00;
            margin-bottom: 10px;
            padding: 0 15px;
        }

        .page-tobet201__promotion-card p {
            font-size: 1rem;
            color: #f0f0f0;
            padding: 0 15px;
            margin-bottom: 20px;
        }

        .page-tobet201__guide-steps {
            display: flex;
            flex-direction: column;
            gap: 25px;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-tobet201__step-item {
            background-color: #222222;
            border-left: 5px solid #ffcc00;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .page-tobet201__step-item h3 {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-tobet201__step-item p {
            color: #f0f0f0;
            font-size: 1rem;
        }

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

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

        .page-tobet201__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background-color: #333333;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-tobet201__faq-question:hover {
            background-color: #444444;
        }

        .page-tobet201__faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
            color: #ffcc00;
            pointer-events: none; /* Prevent text from blocking click */
        }

        .page-tobet201__faq-toggle {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffcc00;
            pointer-events: none; /* Prevent icon from blocking click */
            transition: transform 0.3s ease;
        }

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

        .page-tobet201__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            background-color: #222222;
            color: #f0f0f0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .page-tobet201__faq-item.active .page-tobet201__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to contain content */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-tobet201 img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .page-tobet201__hero-content h1 {
                font-size: clamp(2rem, 4.5vw, 2.8rem);
            }
            .page-tobet201__hero-content p {
                font-size: clamp(0.95rem, 2.2vw, 1.1rem);
            }
            .page-tobet201__games-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .page-tobet201__promotions-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-tobet201__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }
            .page-tobet201__hero-content h1 {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
            }
            .page-tobet201__hero-content p {
                font-size: clamp(0.9rem, 3vw, 1rem);
            }
            .page-tobet201__btn-primary {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-tobet201__section {
                padding: 40px 0;
            }
            .page-tobet201__section h2 {
                font-size: clamp(1.5rem, 5vw, 2rem);
                margin-bottom: 30px;
            }
            .page-tobet201__text-block {
                padding: 0 15px;
            }
            .page-tobet201__text-block p {
                font-size: 0.95rem;
            }
            .page-tobet201__games-grid,
            .page-tobet201__promotions-grid {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            .page-tobet201__game-card-image,
            .page-tobet201__promotion-card-image {
                height: 180px;
            }
            .page-tobet201__guide-steps {
                padding: 0 15px;
            }
            .page-tobet201__step-item h3 {
                font-size: 1.2rem;
            }
            .page-tobet201__step-item p {
                font-size: 0.95rem;
            }
            .page-tobet201__faq-list {
                padding: 0 15px;
            }
            .page-tobet201__faq-question h3 {
                font-size: 1rem;
            }
            .page-tobet201__faq-question,
            .page-tobet201__faq-answer {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .page-tobet201 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-tobet201__container,
            .page-tobet201__games-grid,
            .page-tobet201__promotions-grid,
            .page-tobet201__guide-steps,
            .page-tobet201__faq-list {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-tobet201__btn-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden;
            }
        }
    