
    :root {
      --page-3hb888-com__primary-color: #e44d26; /* Màu đỏ cam rực rỡ */
      --page-3hb888-com__secondary-color: #333; /* Màu xám đậm */
      --page-3hb888-com__accent-color: #f0ad4e; /* Màu vàng/gold cho điểm nhấn */
      --page-3hb888-com__text-color: #f8f8f8; /* Màu chữ sáng */
      --page-3hb888-com__background-dark: #1a1a1a; /* Nền tối */
      --page-3hb888-com__background-light: #2a2a2a; /* Nền xám nhạt hơn */
      --page-3hb888-com__border-color: #444; /* Màu viền */
      --page-3hb888-com__button-bg: #e44d26; /* Nền nút */
      --page-3hb888-com__button-text: #ffffff; /* Chữ nút */
    }

    .page-3hb888-com {
      font-family: 'Arial', sans-serif;
      color: var(--page-3hb888-com__text-color);
      background-color: var(--page-3hb888-com__background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Khoảng cách trang trí nhỏ, dựa vào padding của body cho offset header */
    }

    .page-3hb888-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-3hb888-com__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: var(--page-3hb888-com__background-dark);
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid var(--page-3hb888-com__border-color);
    }

    .page-3hb888-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-3hb888-com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-3hb888-com__hero-title {
      font-size: 2.8em;
      color: var(--page-3hb888-com__primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-3hb888-com__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-3hb888-com__text-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-3hb888-com__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-3hb888-com__button-bg);
      color: var(--page-3hb888-com__button-text);
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .page-3hb888-com__button:hover {
      background-color: #c73c1d;
      transform: translateY(-2px);
    }

    .page-3hb888-com__section {
      padding: 60px 0;
      background-color: var(--page-3hb888-com__background-light);
      border-bottom: 1px solid var(--page-3hb888-com__border-color);
    }

    .page-3hb888-com__section:nth-of-type(even) {
      background-color: var(--page-3hb888-com__background-dark);
    }

    .page-3hb888-com__section-title {
      text-align: center;
      font-size: 2.2em;
      color: var(--page-3hb888-com__primary-color);
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-3hb888-com__section-subtitle {
      text-align: center;
      font-size: 1.8em;
      color: var(--page-3hb888-com__accent-color);
      margin-top: 40px;
      margin-bottom: 25px;
    }

    .page-3hb888-com__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      align-items: stretch;
    }

    .page-3hb888-com__card {
      background-color: var(--page-3hb888-com__background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-3hb888-com__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-3hb888-com__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-3hb888-com__border-color);
    }

    .page-3hb888-com__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-3hb888-com__card-title {
      font-size: 1.5em;
      color: var(--page-3hb888-com__accent-color);
      margin-bottom: 10px;
    }

    .page-3hb888-com__card-description {
      font-size: 0.95em;
      color: var(--page-3hb888-com__text-color);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-3hb888-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-3hb888-com__floating-button {
      padding: 10px 20px;
      background-color: var(--page-3hb888-com__primary-color);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
    }

    .page-3hb888-com__floating-button:hover {
      background-color: #c73c1d;
      transform: translateY(-2px);
    }

    .page-3hb888-com__promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-3hb888-com__promo-item {
      background-color: var(--page-3hb888-com__background-dark);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--page-3hb888-com__primary-color);
      box-sizing: border-box; /* Đảm bảo padding và border được tính vào chiều rộng */
      word-wrap: break-word; /* Xử lý văn bản dài */
      overflow-wrap: break-word; /* Xử lý văn bản dài */
    }

    .page-3hb888-com__promo-item-title {
      color: var(--page-3hb888-com__accent-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-3hb888-com__news-article {
      background-color: var(--page-3hb888-com__background-dark);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      height: 100%;
    }

    .page-3hb888-com__news-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-3hb888-com__news-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-3hb888-com__news-title {
      font-size: 1.4em;
      color: var(--page-3hb888-com__accent-color);
      margin-bottom: 10px;
    }

    .page-3hb888-com__news-date {
      font-size: 0.85em;
      color: #aaa;
      margin-top: 15px;
    }

    .page-3hb888-com__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      padding: 20px 0;
    }

    .page-3hb888-com__provider-item {
      text-align: center;
      padding: 15px;
      background-color: var(--page-3hb888-com__background-light);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      width: 100%;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-3hb888-com__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-3hb888-com__provider-name {
      color: var(--page-3hb888-com__text-color);
      font-size: 0.9em;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-3hb888-com__faq-section {
      background-color: var(--page-3hb888-com__background-light);
      padding: 60px 0;
    }

    .page-3hb888-com__faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-3hb888-com__faq-item {
      background-color: var(--page-3hb888-com__background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-3hb888-com__border-color);
    }

    .page-3hb888-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-3hb888-com__background-dark);
      color: var(--page-3hb888-com__accent-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-3hb888-com__faq-question:hover {
      background-color: #2c2c2c;
    }

    .page-3hb888-com__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-3hb888-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn nút bật/tắt chặn sự kiện click */
    }

    .page-3hb888-com__faq-item.active .page-3hb888-com__faq-toggle {
      transform: rotate(45deg); /* Thay đổi '+' thành 'x' trực quan */
    }

    .page-3hb888-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-3hb888-com__text-color);
      background-color: var(--page-3hb888-com__background-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

    .page-3hb888-com__faq-item.active .page-3hb888-com__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-3hb888-com__faq-answer p {
        margin-top: 0;
        margin-bottom: 1em;
    }
    .page-3hb888-com__faq-answer p:last-child {
        margin-bottom: 0;
    }


    /* Điều chỉnh responsive */
    @media (max-width: 1024px) {
      .page-3hb888-com__hero-title {
        font-size: 2.5em;
      }
      .page-3hb888-com__hero-subtitle {
        font-size: 1.2em;
      }
      .page-3hb888-com__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-3hb888-com__container {
        padding: 15px;
      }
      .page-3hb888-com__hero-section {
        padding: 40px 15px;
      }
      .page-3hb888-com__hero-title {
        font-size: 2em;
      }
      .page-3hb888-com__hero-subtitle {
        font-size: 1em;
      }
      .page-3hb888-com__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-3hb888-com__section {
        padding: 40px 0;
      }
      .page-3hb888-com__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-3hb888-com__grid {
        grid-template-columns: 1fr; /* Một cột cho các thẻ */
        gap: 20px;
      }
      .page-3hb888-com__card-image {
        height: 180px;
      }
      .page-3hb888-com__card-title {
        font-size: 1.3em;
      }
      .page-3hb888-com__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Ngang trên di động để tiết kiệm không gian dọc */
        left: 15px;
        justify-content: space-around;
      }
      .page-3hb888-com__floating-button {
        flex: 1;
        font-size: 0.9em;
        padding: 12px 10px;
      }
      .page-3hb888-com__promo-list {
        grid-template-columns: 1fr; /* Một cột cho các khuyến mãi */
        gap: 15px;
      }
      .page-3hb888-com__promo-item {
        padding: 20px;
        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-3hb888-com__news-article {
        margin-bottom: 20px;
      }
      .page-3hb888-com__news-image {
        height: 180px;
      }
      .page-3hb888-com__provider-grid {
        grid-template-columns: repeat(2, 1fr); /* Hai cột cho các nhà cung cấp */
        gap: 15px;
      }
      .page-3hb888-com__provider-item {
        padding: 10px;
        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-3hb888-com__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-3hb888-com__faq-answer {
        padding: 0 20px;
      }
      .page-3hb888-com__faq-item.active .page-3hb888-com__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-3hb888-com__hero-title {
        font-size: 1.8em;
      }
      .page-3hb888-com__hero-subtitle {
        font-size: 0.9em;
      }
      .page-3hb888-com__section-title {
        font-size: 1.5em;
      }
      .page-3hb888-com__floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
      }
      .page-3hb888-com__floating-button {
        padding: 10px 8px;
        font-size: 0.85em;
      }
    }

    /* Phản hồi chung cho hình ảnh */
    .page-3hb888-com img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    .page-3hb888-com__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-3hb888-com img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-3hb888-com__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  