
    /* Tổng thể */
    .page-bj88dagathomo {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #FFFFFF;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    .page-bj88dagathomo__section--dark {
      background-color: #222222;
    }

    .page-bj88dagathomo__title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-bj88dagathomo__subtitle {
      font-size: 1.8em;
      color: #CC0000;
      margin-bottom: 15px;
      font-weight: 600;
    }

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

    .page-bj88dagathomo__button {
      display: inline-block;
      background-color: #CC0000;
      color: #FFFFFF;
      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-bj88dagathomo__button:hover {
      background-color: #e60000;
    }

    /* Hero Section */
    .page-bj88dagathomo__hero-section {
      position: relative;
      padding-top: 10px; /* Space for fixed header */
      background-color: #000;
      overflow: hidden;
    }

    .page-bj88dagathomo__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 250px; /* Ensure image container has some height */
    }

    .page-bj88dagathomo__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
      filter: brightness(0.7); /* Darken image slightly for text readability */
    }

    .page-bj88dagathomo__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      text-align: center;
      z-index: 10;
    }

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

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

    /* Floating Button */
    .page-bj88dagathomo__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #008000; /* Green for urgency/action */
      color: #FFFFFF;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 100;
      transition: background-color 0.3s ease;
      white-space: nowrap;
      text-align: center;
      max-width: 90%;
      box-sizing: border-box;
      border: none;
      cursor: pointer;
    }

    .page-bj88dagathomo__floating-button:hover {
      background-color: #009900;
    }

    /* Game List Section */
    .page-bj88dagathomo__game-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
      padding: 0;
      list-style: none;
    }

    .page-bj88dagathomo__game-item {
      background-color: #2e2e2e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-bj88dagathomo__game-item:hover {
      transform: translateY(-5px);
    }

    .page-bj88dagathomo__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 180px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-bj88dagathomo__game-content {
      padding: 20px;
    }

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

    .page-bj88dagathomo__game-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    /* Features Section */
    .page-bj88dagathomo__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      padding: 0;
      list-style: none;
    }

    .page-bj88dagathomo__feature-item {
      background-color: #2e2e2e;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
      box-sizing: border-box;
    }

    .page-bj88dagathomo__feature-icon {
      width: 80px;
      height: 80px;
      display: block;
      margin: 0 auto 15px;
      object-fit: contain;
    }

    .page-bj88dagathomo__feature-title {
      font-size: 1.4em;
      color: #CC0000;
      margin-bottom: 10px;
      text-align: center;
    }

    .page-bj88dagathomo__feature-text {
      font-size: 1em;
      color: #e0e0e0;
      text-align: center;
    }

    /* Promotions Section */
    .page-bj88dagathomo__promo-card {
      background-color: #2e2e2e;
      border-radius: 10px;
      padding: 30px;
      margin-top: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: left;
    }

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

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

    /* FAQ Section */
    .page-bj88dagathomo__faq-list {
      margin-top: 40px;
      text-align: left;
    }

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

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

    .page-bj88dagathomo__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-bj88dagathomo__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bj88dagathomo__faq-toggle {
      font-size: 1.5em;
      color: #CC0000;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-bj88dagathomo__faq-item.active .page-bj88dagathomo__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar effect */
      color: #008000;
    }

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

    .page-bj88dagathomo__faq-item.active .page-bj88dagathomo__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bj88dagathomo__section {
        padding: 40px 0;
      }

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

      .page-bj88dagathomo__subtitle {
        font-size: 1.5em;
      }

      .page-bj88dagathomo__hero-section {
        padding-top: 10px; /* Adjust for mobile header */
      }

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

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

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

      .page-bj88dagathomo__game-list,
      .page-bj88dagathomo__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-bj88dagathomo__game-item,
      .page-bj88dagathomo__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-bj88dagathomo__game-content {
        padding: 15px;
      }

      .page-bj88dagathomo__game-title {
        font-size: 1.3em;
      }

      .page-bj88dagathomo__feature-title {
        font-size: 1.2em;
      }

      .page-bj88dagathomo__promo-card {
        padding: 20px;
      }

      .page-bj88dagathomo__promo-title {
        font-size: 1.6em;
      }

      .page-bj88dagathomo__faq-question {
        padding: 12px 15px;
      }

      .page-bj88dagathomo__faq-question h3 {
        font-size: 1.1em;
      }

      .page-bj88dagathomo__faq-answer {
        padding: 15px 15px !important;
      }

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

      .page-bj88dagathomo__hero-image,
      .page-bj88dagathomo__game-image,
      .page-bj88dagathomo__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  