
    /* Tổng thể */
    .page-bj88thomo {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Cho nút đăng nhập nổi */
    }

    /* Fixed Header Spacing */
    .page-bj88thomo__hero-section {
      padding-top: 120px; /* Desktop fixed header compensation */
    }

    @media (max-width: 768px) {
      .page-bj88thomo__hero-section {
        padding-top: 100px; /* Mobile fixed header compensation */
      }
    }

    /* Tiêu đề chung */
    .page-bj88thomo__section-title {
      font-size: 2.5em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }
    .page-bj88thomo__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffc107;
      border-radius: 2px;
    }

    /* Các phần chính */
    .page-bj88thomo__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-bj88thomo__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Hero Section */
    .page-bj88thomo__hero-section {
      text-align: center;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding: 60px 20px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }
    .page-bj88thomo__hero-image {
      width: 100%;
      max-width: 900px;
      height: auto;
      border-radius: 10px;
      margin: 0 auto 30px auto;
      display: block;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    .page-bj88thomo__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .page-bj88thomo__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-bj88thomo__hero-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.4em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    .page-bj88thomo__hero-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Giới thiệu */
    .page-bj88thomo__intro-content {
      font-size: 1.1em;
      text-align: justify;
      color: #555;
    }
    .page-bj88thomo__intro-content strong {
      color: #0056b3;
    }

    /* Sản phẩm nổi bật */
    .page-bj88thomo__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .page-bj88thomo__product-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }
    .page-bj88thomo__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .page-bj88thomo__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }
    .page-bj88thomo__product-title {
      font-size: 1.4em;
      color: #0056b3;
      margin: 20px 15px 10px;
      font-weight: bold;
    }
    .page-bj88thomo__product-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
    }
    .page-bj88thomo__product-link {
        display: inline-block;
        margin-top: 15px;
        background-color: #007bff;
        color: #fff;
        padding: 8px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }
    .page-bj88thomo__product-link:hover {
        background-color: #0056b3;
    }

    /* Nhà cung cấp game */
    .page-bj88thomo__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for smaller logos */
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }
    .page-bj88thomo__provider-logo {
      width: 100%;
      max-width: 150px; /* Max width for logos */
      height: auto;
      object-fit: contain;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }
    .page-bj88thomo__provider-logo:hover {
      transform: scale(1.05);
    }

    /* Ưu đãi hấp dẫn */
    .page-bj88thomo__promo-list {
      list-style: none;
      padding: 0;
    }
    .page-bj88thomo__promo-item {
      background-color: #e6f7ff;
      border-left: 5px solid #007bff;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .page-bj88thomo__promo-icon {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      object-fit: contain;
      border-radius: 50%;
      background-color: #007bff;
      padding: 10px;
    }
    .page-bj88thomo__promo-content h3 {
      margin-top: 0;
      color: #0056b3;
      font-size: 1.3em;
    }
    .page-bj88thomo__promo-content p {
      margin-bottom: 0;
      color: #444;
    }
    .page-bj88thomo__promo-link {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }
    .page-bj88thomo__promo-link:hover {
        text-decoration: underline;
    }

    /* Hướng dẫn đăng ký/đăng nhập */
    .page-bj88thomo__guide-steps {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }
    .page-bj88thomo__guide-step {
      background-color: #f0f8ff;
      border-left: 5px solid #28a745;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      position: relative;
      padding-left: 70px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .page-bj88thomo__guide-step::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #28a745;
      color: #fff;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
    }
    .page-bj88thomo__guide-step h3 {
      margin-top: 0;
      color: #218838;
      font-size: 1.3em;
    }
    .page-bj88thomo__guide-step p {
      margin-bottom: 0;
      color: #444;
    }

    /* Tại sao chọn BJ88 Thomo */
    .page-bj88thomo__why-choose-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .page-bj88thomo__why-choose-item {
      background-color: #fdfdfd;
      border: 1px solid #eee;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-bj88thomo__why-choose-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .page-bj88thomo__why-choose-item h3 {
      color: #0056b3;
      margin-top: 0;
      font-size: 1.25em;
    }
    .page-bj88thomo__why-choose-item p {
      color: #555;
    }

    /* Câu hỏi thường gặp (FAQ) */
    .page-bj88thomo__faq-section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .page-bj88thomo__faq-list {
        margin-top: 30px;
    }
    .page-bj88thomo__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fdfdfd;
    }
    .page-bj88thomo__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #e9f5ff;
      color: #0056b3;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }
    .page-bj88thomo__faq-question:hover {
      background-color: #d0e8ff;
    }
    .page-bj88thomo__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }
    .page-bj88thomo__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }
    .page-bj88thomo__faq-item.active .page-bj88thomo__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }
    .page-bj88thomo__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
    }
    .page-bj88thomo__faq-item.active .page-bj88thomo__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }
    .page-bj88thomo__faq-answer p {
        margin-bottom: 0;
    }

    /* Kết luận */
    .page-bj88thomo__conclusion-text {
      font-size: 1.1em;
      text-align: center;
      color: #555;
    }

    /* Nút đăng nhập nổi bật */
    .page-bj88thomo__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .page-bj88thomo__floating-login-button:hover {
      background-color: #e03d00;
      transform: translateY(-3px);
    }
    .page-bj88thomo__floating-login-button span {
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .page-bj88thomo__hero-title {
        font-size: 2.8em;
      }
      .page-bj88thomo__hero-subtitle {
        font-size: 1.3em;
      }
      .page-bj88thomo__section-title {
        font-size: 2em;
      }
      .page-bj88thomo__section {
        padding: 30px;
      }
      .page-bj88thomo__product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-bj88thomo__why-choose-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-bj88thomo__hero-title {
        font-size: 2.2em;
      }
      .page-bj88thomo__hero-subtitle {
        font-size: 1.1em;
      }
      .page-bj88thomo__hero-button {
        padding: 12px 25px;
        font-size: 1.2em;
      }
      .page-bj88thomo__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-bj88thomo__section {
        padding: 20px;
        margin-bottom: 20px;
      }
      .page-bj88thomo__product-grid {
        grid-template-columns: 1fr;
      }
      .page-bj88thomo__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-bj88thomo__promo-item,
      .page-bj88thomo__guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 20px;
      }
      .page-bj88thomo__guide-step::before {
        position: static;
        transform: none;
        margin-bottom: 10px;
      }
      .page-bj88thomo__why-choose-list {
        grid-template-columns: 1fr;
      }
      .page-bj88thomo__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      /* Image responsive styles for mobile */
      .page-bj88thomo img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-bj88thomo__image-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-bj88thomo__product-image {
        height: 180px; /* Adjust height for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-bj88thomo__hero-title {
        font-size: 1.8em;
      }
      .page-bj88thomo__hero-subtitle {
        font-size: 1em;
      }
      .page-bj88thomo__hero-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-bj88thomo__section-title {
        font-size: 1.5em;
      }
      .page-bj88thomo__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-bj88thomo__faq-answer {
        padding: 15px;
      }
      .page-bj88thomo__floating-login-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  