
    /* Reset và cơ bản */
    .page-bj67 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      max-width: 100%;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

    .page-bj67 * {
      box-sizing: border-box;
    }

    .page-bj67__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Phần Hero */
    .page-bj67__hero-section {
      position: relative;
      width: 100%;
      min-height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      background-color: #222; /* Màu dự phòng */
      background-size: cover;
      background-position: center;
      padding-top: 10px; /* Khoảng cách cho thanh điều hướng cố định */
      padding-bottom: 40px;
      overflow: hidden;
    }

    .page-bj67__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
      z-index: 1;
    }

    .page-bj67__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      margin-top: 50px; /* Điều chỉnh để nội dung hiển thị bên dưới lớp phủ */
    }

    .page-bj67__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #FFD700; /* Màu vàng kim cho nổi bật */
    }

    .page-bj67__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-bj67__hero-button {
      display: inline-block;
      background-color: #4CAF50; /* Màu xanh lá */
      color: white;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-bj67__hero-button:hover {
      background-color: #45a049;
    }

    /* Nút Nổi */
    .page-bj67__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%; /* Điều chỉnh cho di động */
      max-width: 400px;
      justify-content: center;
    }

    .page-bj67__floating-buttons button {
      flex: 1;
      padding: 15px 10px;
      border-radius: 10px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      border: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-bj67__floating-buttons button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .page-bj67__register-button {
      background-color: #FF4500; /* Màu cam đỏ cho nổi bật */
      color: white;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .page-bj67__register-button:hover {
      background-color: #e03e00;
    }

    .page-bj67__login-button {
      background-color: #007BFF; /* Màu xanh dương */
      color: white;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .page-bj67__login-button:hover {
      background-color: #0069d9;
    }

    /* Kiểu dáng phần chung */
    .page-bj67__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
    }

    .page-bj67__section:nth-of-type(even) {
      background-color: #f0f0f0;
    }

    .page-bj67__section-title {
      font-size: 2.2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-bj67__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700; /* Điểm nhấn màu vàng kim */
      border-radius: 2px;
    }

    .page-bj67__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Lưới trò chơi */
    .page-bj67__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bj67__game-item {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-bj67__game-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

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

    .page-bj67__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-bj67__game-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-bj67__game-description {
      font-size: 0.95em;
      color: #555;
      flex-grow: 1;
    }

    /* Danh sách */
    .page-bj67__promo-list,
    .page-bj67__why-choose-list,
    .page-bj67__step-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-bj67__promo-item,
    .page-bj67__why-choose-item,
    .page-bj67__step-item {
      background-color: #e8f5e9; /* Màu xanh lá nhạt */
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 mục mỗi hàng */
      min-width: 280px; /* Chiều rộng tối thiểu cho mục */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-bj67__promo-item h3,
    .page-bj67__why-choose-item h3,
    .page-bj67__step-item h3 {
      font-size: 1.3em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-bj67__promo-item p,
    .page-bj67__why-choose-item p,
    .page-bj67__step-item p {
      color: #555;
      font-size: 1em;
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-bj67__faq-section {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-bj67__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-bj67__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: #2c3e50;
      cursor: pointer;
      background-color: #f9f9f9;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-bj67__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-bj67__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Quan trọng để click hoạt động trên phần tử cha */
    }

    .page-bj67__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Quan trọng để click hoạt động trên phần tử cha */
    }

    .page-bj67__faq-item.active .page-bj67__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc - */
    }

    .page-bj67__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Padding ban đầu */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1em;
    }

    .page-bj67__faq-item.active .page-bj67__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa nội dung */
      padding: 20px !important; /* Padding cuối cùng */
      opacity: 1;
    }

    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-bj67__hero-section {
        min-height: 300px;
        padding-top: 10px; /* Khoảng cách cho thanh điều hướng cố định trên di động */
        padding-bottom: 80px; /* Khoảng trống cho các nút nổi */
      }

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

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

      .page-bj67__floating-buttons {
        width: 95%;
        gap: 10px;
        bottom: 15px;
      }

      .page-bj67__floating-buttons button {
        padding: 12px 8px;
        font-size: 0.95em;
      }

      .page-bj67__section {
        padding: 40px 0;
      }

      .page-bj67__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-bj67__text-content {
        font-size: 1em;
      }

      .page-bj67__game-grid {
        grid-template-columns: 1fr; /* Một cột trên di động */
      }

      .page-bj67__promo-list,
      .page-bj67__why-choose-list,
      .page-bj67__step-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100% !important; /* Đảm bảo container chiếm toàn bộ chiều rộng */
        max-width: 100% !important;
        padding: 0 !important; /* Xóa padding container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bj67__promo-item,
      .page-bj67__why-choose-item,
      .page-bj67__step-item {
        width: 100% !important; /* Buộc các mục danh sách chiếm toàn bộ chiều rộng */
        max-width: 100% !important;
        flex: none; /* Tắt co giãn linh hoạt */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Điều chỉnh padding */
        box-sizing: border-box !important; /* Đảm bảo padding được bao gồm */
        word-wrap: break-word !important; /* Ngắt từ */
        overflow-wrap: break-word !important;
      }

      .page-bj67__promo-item h3,
      .page-bj67__why-choose-item h3,
      .page-bj67__step-item h3 {
        font-size: 1.2em;
      }

      .page-bj67__faq-section {
        padding: 0 10px;
      }

      .page-bj67__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-bj67__faq-answer {
        padding: 0 15px; /* Điều chỉnh padding ban đầu */
      }

      .page-bj67__faq-item.active .page-bj67__faq-answer {
        padding: 15px !important; /* Điều chỉnh padding cuối cùng */
      }
    }

    @media (max-width: 480px) {
      .page-bj67__hero-title {
        font-size: 1.8em;
      }
      .page-bj67__hero-description {
        font-size: 0.9em;
      }
      .page-bj67__floating-buttons button {
        font-size: 0.9em;
        padding: 10px 5px;
      }
    }
  