
    /* Tổng thể */
    .page-tr88new {
      font-family: Arial, sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-tr88new__section {
      padding: 40px 0;
      text-align: center;
    }

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

    .page-tr88new__heading {
      color: #FFD700; /* Chữ vàng cho tiêu đề */
      margin-bottom: 20px;
      font-size: 2.5em;
    }

    .page-tr88new__sub-heading {
      color: #FFD700;
      margin-bottom: 15px;
      font-size: 1.8em;
    }

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

    .page-tr88new__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

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

    /* Hero Section */
    .page-tr88new__hero-section {
      position: relative;
      padding-top: 10px; /* Desktop */
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-color: #000000;
      overflow: hidden;
    }

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

    .page-tr88new__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      filter: brightness(0.8); /* Slightly dim the image for better text contrast */
    }

    .page-tr88new__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      width: 90%;
      max-width: 800px;
      padding: 20px;
      box-sizing: border-box;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-tr88new__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #FFD700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-tr88new__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #FFFFFF;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Login Button */
    .page-tr88new__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
    }

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

    /* Game Categories */
    .page-tr88new__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px 0;
    }

    .page-tr88new__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 20px; /* Added padding to ensure content is not cramped */
      box-sizing: border-box;
    }

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

    .page-tr88new__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-tr88new__game-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      min-height: 200px; /* Ensure images are not too small */
      object-fit: cover;
    }

    .page-tr88new__game-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-tr88new__game-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* Features/Why Choose Us */
    .page-tr88new__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 20px 0;
      margin: 0;
    }

    .page-tr88new__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-tr88new__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-tr88new__feature-icon {
      max-width: 100%;
      height: auto;
      max-height: 150px; /* Limit icon size */
      display: block;
      margin: 0 auto 15px auto;
      object-fit: contain;
      min-width: 200px; /* Ensure images are not too small */
      min-height: 200px; /* Ensure images are not too small */
    }

    .page-tr88new__feature-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-tr88new__feature-description {
      color: #e0e0e0;
    }

    /* Conflicting Keywords Section */
    .page-tr88new__diverse-topics {
      background-color: #1a1a1a;
      padding: 40px 0;
      text-align: center;
    }

    .page-tr88new__topic-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-tr88new__topic-title {
      color: #FFD700;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-tr88new__topic-text {
      color: #cccccc;
    }

    /* FAQ Section */
    .page-tr88new__faq-section {
      padding: 40px 0;
      background-color: #000000;
    }

    .page-tr88new__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

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

    .page-tr88new__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-tr88new__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1em; /* Adjust to match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-tr88new__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-tr88new__faq-item.active .page-tr88new__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes a cross/minus */
    }

    .page-tr88new__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: #e0e0e0;
      font-size: 1.05em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-tr88new__hero-section {
        padding-top: 10px; /* Mobile */
        min-height: 300px;
      }

      .page-tr88new__hero-title {
        font-size: 2.2em;
      }

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

      .page-tr88new__heading {
        font-size: 2em;
      }

      .page-tr88new__sub-heading {
        font-size: 1.5em;
      }

      .page-tr88new__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-tr88new__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-tr88new__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-tr88new__features-list {
        grid-template-columns: 1fr; /* Single column on mobile */
        padding: 0; /* Adjust padding for mobile list container */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
      }

      .page-tr88new__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for mobile list items */
      }

      .page-tr88new__game-card,
      .page-tr88new__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-tr88new__game-image-wrapper,
      .page-tr88new__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-tr88new__game-image,
      .page-tr88new__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-tr88new__faq-question,
      .page-tr88new__faq-answer {
        padding: 15px 20px;
      }

      .page-tr88new__faq-item.active .page-tr88new__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-tr88new__hero-title {
        font-size: 1.8em;
      }

      .page-tr88new__hero-description {
        font-size: 0.9em;
      }

      .page-tr88new__heading {
        font-size: 1.8em;
      }

      .page-tr88new__sub-heading {
        font-size: 1.3em;
      }
    }
  