
    /* Base Styles */
    .page-tr88com {
      font-family: Arial, sans-serif;
      background-color: #000; /* Nền đen */
      color: #fff; /* Chữ trắng */
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

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

    .page-tr88com__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-tr88com__section--dark {
      background-color: #1a1a1a;
    }

    .page-tr88com__heading {
      font-size: 3em;
      color: #ffd700; /* Điểm nhấn màu vàng */
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .page-tr88com__subheading {
      font-size: 1.8em;
      color: #fff;
      margin-bottom: 30px;
    }

    .page-tr88com__paragraph {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    .page-tr88com__button {
      display: inline-block;
      background-color: #ffd700; /* Nút màu vàng */
      color: #000;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-tr88com__button:hover {
      background-color: #e6c200;
    }

    /* Hero Section */
    .page-tr88com__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px; /* Đảm bảo đủ không gian cho banner và văn bản */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding-top: 150px; /* Vùng an toàn cho header cố định */
      padding-bottom: 60px;
      box-sizing: border-box;
    }

    .page-tr88com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* Bao phủ khu vực mà không làm biến dạng tỷ lệ khung hình */
      z-index: -1;
    }

    .page-tr88com__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Lớp phủ bán trong suốt để dễ đọc văn bản */
      border-radius: 10px;
      max-width: 90%;
    }

    .page-tr88com__hero-title {
      font-size: 3.5em;
      color: #ffd700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-tr88com__hero-description {
      font-size: 1.3em;
      color: #fff;
      margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-tr88com__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffd700;
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    /* Game Categories Section */
    .page-tr88com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-tr88com__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 350px; /* Giới hạn chiều rộng thẻ trên màn hình lớn hơn */
      box-sizing: border-box;
      padding-bottom: 20px; /* Khoảng cách cho văn bản bên dưới hình ảnh */
    }

    .page-tr88com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-tr88com__game-card-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      display: block;
    }

    .page-tr88com__game-card-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 15px 10px 10px;
    }

    .page-tr88com__game-card-description {
      font-size: 0.95em;
      color: #e0e0e0;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Why Choose Us Section */
    .page-tr88com__feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-tr88com__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      text-align: left;
      flex: 1 1 calc(33% - 60px); /* 3 mục mỗi hàng trên máy tính để bàn */
      min-width: 280px; /* Chiều rộng tối thiểu cho mục */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-tr88com__feature-item-title {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-tr88com__feature-item-description {
      font-size: 1em;
      color: #e0e0e0;
    }

    /* Promotions Section */
    .page-tr88com__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      margin-top: 40px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-tr88com__promo-title {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-tr88com__promo-details {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 25px;
    }

    /* FAQ Section */
    .page-tr88com__faq-section {
      padding: 60px 0;
      text-align: center;
      background-color: #000;
    }

    .page-tr88com__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

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

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

    .page-tr88com__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-tr88com__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #ffd700;
      pointer-events: none; /* Ngăn h3 chặn sự kiện nhấp */
    }

    .page-tr88com__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffd700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn nút chuyển đổi chặn sự kiện nhấp */
    }

    .page-tr88com__faq-item.active .page-tr88com__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc hiệu ứng tương tự */
    }

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

    .page-tr88com__faq-item.active .page-tr88com__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-tr88com__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Call to Action Section */
    .page-tr88com__cta-section {
      background-color: #1a1a1a;
      padding: 80px 0;
    }

    .page-tr88com__cta-title {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 20px;
    }

    .page-tr88com__cta-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 40px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-tr88com__hero-title {
        font-size: 3em;
      }
      .page-tr88com__hero-description {
        font-size: 1.2em;
      }
      .page-tr88com__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-tr88com__feature-item {
        flex: 1 1 calc(50% - 30px); /* 2 mục mỗi hàng */
      }
      .page-tr88com__heading {
        font-size: 2.5em;
      }
      .page-tr88com__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-tr88com__hero-section {
        padding-top: 100px; /* Điều chỉnh cho header cố định nhỏ hơn trên di động */
        min-height: 400px;
      }
      .page-tr88com__hero-title {
        font-size: 2.5em;
      }
      .page-tr88com__hero-description {
        font-size: 1em;
      }
      .page-tr88com__section {
        padding: 40px 0;
      }
      .page-tr88com__heading {
        font-size: 2em;
      }
      .page-tr88com__subheading {
        font-size: 1.4em;
      }
      .page-tr88com__paragraph {
        font-size: 1em;
      }
      .page-tr88com__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-tr88com__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-tr88com__game-grid {
        grid-template-columns: 1fr; /* 1 mục mỗi hàng */
        gap: 20px;
      }
      .page-tr88com__game-card {
        max-width: 95%; /* Cho phép thẻ chiếm nhiều chiều rộng hơn */
        margin: 0 auto; /* Căn giữa thẻ */
      }
      .page-tr88com__feature-list {
        flex-direction: column;
        gap: 20px;
      }
      .page-tr88com__feature-item {
        flex: 1 1 100%; /* Chiều rộng đầy đủ trên di động */
        padding: 25px;
        max-width: 95%;
        margin: 0 auto;
        box-sizing: border-box !important; /* Đảm bảo box-sizing */
      }
      .page-tr88com__feature-item-title {
        font-size: 1.4em;
      }
      .page-tr88com__promo-card {
        padding: 25px;
      }
      .page-tr88com__promo-title {
        font-size: 1.8em;
      }
      .page-tr88com__promo-details {
        font-size: 1em;
      }
      .page-tr88com__faq-list {
        padding: 0 10px;
      }
      .page-tr88com__faq-question {
        padding: 15px 20px;
      }
      .page-tr88com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-tr88com__faq-toggle {
        font-size: 1.5em;
      }
      .page-tr88com__faq-answer {
        padding: 0 20px;
      }
      .page-tr88com__faq-item.active .page-tr88com__faq-answer {
        padding: 15px 20px !important;
      }
      .page-tr88com__cta-section {
        padding: 50px 0;
      }
      .page-tr88com__cta-title {
        font-size: 2em;
      }
      .page-tr88com__cta-description {
        font-size: 1.1em;
      }
      /* Đảm bảo danh sách và hình ảnh chiếm 100% chiều rộng trên di động */
      .page-tr88com__game-card-image,
      .page-tr88com__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-tr88com__game-grid,
      .page-tr88com__feature-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-tr88com__game-card,
      .page-tr88com__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important; /* Điều chỉnh padding cho di động để tránh nội dung quá rộng */
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-tr88com__paragraph, .page-tr88com__game-card-description, .page-tr88com__feature-item-description, .page-tr88com__promo-details, .page-tr88com__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-tr88com__hero-title {
        font-size: 2em;
      }
      .page-tr88com__hero-description {
        font-size: 0.9em;
      }
      .page-tr88com__heading {
        font-size: 1.8em;
      }
      .page-tr88com__subheading {
        font-size: 1.2em;
      }
      .page-tr88com__floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
      .page-tr88com__game-card-title {
        font-size: 1.3em;
      }
      .page-tr88com__feature-item-title {
        font-size: 1.2em;
      }
      .page-tr88com__promo-title {
        font-size: 1.5em;
      }
      .page-tr88com__faq-question h3 {
        font-size: 1em;
      }
      .page-tr88com__cta-title {
        font-size: 1.8em;
      }
    }
  