
    /* Reset và các thuộc tính cơ bản cho trang ta28 */
    .page-ta28 {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

    /* Nút khuyến mãi nổi (Floating Promotion Button) */
    .page-ta28__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e44d26; /* Màu nổi bật */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      cursor: pointer; /* Chỉ ra rằng có thể nhấp */
      border: none; /* Đảm bảo trông giống một nút */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .page-ta28__floating-button:hover {
      background-color: #f05e3a;
      transform: translateY(-3px);
    }
    .page-ta28__floating-button-icon {
      margin-right: 8px;
      font-size: 1.3em;
    }
    
    /* Các phần chính của trang */
    .page-ta28__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Phần Hero (Banner chính) */
    .page-ta28__hero-section {
      position: relative;
      background-color: #0d1a26; /* Nền tối để tạo độ tương phản */
      color: #fff;
      text-align: center;
      padding: 10px 0 0 0; /* Điều chỉnh padding-top cho header cố định */
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-ta28__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Đảm bảo hình ảnh phản hồi */
      object-fit: cover;
      margin-bottom: 20px; /* Khoảng cách giữa hình ảnh và văn bản */
    }
    .page-ta28__hero-content {
      padding: 0 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }
    .page-ta28__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
      color: #ffd700; /* Màu vàng cho sự nhấn mạnh */
    }
    .page-ta28__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }
    .page-ta28__hero-cta {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      border: none;
    }
    .page-ta28__hero-cta:hover {
      background-color: #f05e3a;
      transform: translateY(-2px);
    }

    /* Tiêu đề chung cho các phần */
    .page-ta28__title {
      font-size: 2em;
      color: #0d1a26;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-ta28__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #e44d26;
      border-radius: 2px;
    }

    /* Lưới danh mục trò chơi */
    .page-ta28__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    .page-ta28__game-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }
    .page-ta28__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    .page-ta28__game-card-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }
    .page-ta28__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-ta28__game-card-title {
      font-size: 1.4em;
      font-weight: bold;
      color: #e44d26;
      margin-bottom: 10px;
    }
    .page-ta28__game-card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .page-ta28__game-card-button {
      display: inline-block;
      background-color: #0d1a26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      width: 100%; /* Nút có chiều rộng đầy đủ */
      box-sizing: border-box;
    }
    .page-ta28__game-card-button:hover {
      background-color: #2a3d52;
    }

    /* Phần Tính năng nổi bật */
    .page-ta28__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .page-ta28__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }
    .page-ta28__feature-item:hover {
      transform: translateY(-5px);
    }
    .page-ta28__feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: block;
      object-fit: contain;
    }
    .page-ta28__feature-title {
      font-size: 1.3em;
      color: #e44d26;
      margin-bottom: 10px;
    }
    .page-ta28__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Phần Kêu gọi hành động */
    .page-ta28__cta-section {
      background-color: #0d1a26;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }
    .page-ta28__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #ffd700;
    }
    .page-ta28__cta-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-ta28__faq-section {
      background-color: #f0f2f5;
    }
    .page-ta28__faq-list {
      margin-top: 30px;
    }
    .page-ta28__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-ta28__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.1em;
      font-weight: bold;
      color: #0d1a26;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }
    .page-ta28__faq-question:hover {
      background-color: #f5f5f5;
    }
    .page-ta28__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: #0d1a26;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }
    .page-ta28__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      margin-left: 15px;
      pointer-events: none; /* Ngăn span chặn sự kiện click */
    }
    .page-ta28__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      font-size: 0.95em;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }
    .page-ta28__faq-item.active .page-ta28__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }
    /* Các icon toggle được điều khiển bởi JS */

    /* Điều chỉnh phản hồi cho thiết bị di động */
    @media (max-width: 768px) {
      .page-ta28__hero-title {
        font-size: 2em;
      }
      .page-ta28__hero-subtitle {
        font-size: 1em;
      }
      .page-ta28__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-ta28__title {
        font-size: 1.8em;
      }
      .page-ta28__section {
        padding: 30px 15px;
      }
      .page-ta28__game-grid,
      .page-ta28__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      /* Đảm bảo các item danh sách phản hồi đúng cách */
      .page-ta28__game-card,
      .page-ta28__features-grid .page-ta28__feature-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-ta28__game-card-image {
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px; /* Đảm bảo chiều cao tối thiểu */
        object-fit: cover !important;
        box-sizing: border-box !important;
      }
      /* Các container danh sách */
      .page-ta28__game-grid,
      .page-ta28__features-grid,
      .page-ta28__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-ta28__cta-title {
        font-size: 1.8em;
      }
      .page-ta28__cta-description {
        font-size: 1em;
      }
      .page-ta28__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-ta28__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important; /* Ngắt từ dài */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-ta28__faq-item.active .page-ta28__faq-answer {
        padding: 15px 20px !important;
      }
      /* Hình ảnh phản hồi chung */
      .page-ta28 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-ta28__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  