
    /* Tổng quan */
    .page-789club-body {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Màu chữ sáng để đảm bảo độ tương phản trên nền tối */
      background-color: #1a1a2e; /* Nền tối */
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }

    .page-789club-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Tiêu đề */
    .page-789club-h1, .page-789club-h2, .page-789club-h3 {
      color: #e94560; /* Màu đỏ nổi bật, độ tương phản tốt với nền tối */
      text-align: center;
      margin-bottom: 20px;
    }

    .page-789club-h1 {
      font-size: 2.2em; /* Kích thước phù hợp cho di động */
      padding-top: 20px;
    }

    .page-789club-h2 {
      font-size: 1.8em;
      color: #ffc107; /* Màu vàng nổi bật, độ tương phản tốt */
    }

    .page-789club-h3 {
      font-size: 1.4em;
      color: #e94560;
    }

    /* Nút đăng nhập nổi */
    .page-789club-floating-login-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffc107; /* Màu vàng nổi bật */
      color: #1a1a2e; /* Màu chữ tối để tương phản với nền vàng */
      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: 1000;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .page-789club-floating-login-btn:hover {
      transform: translateY(-5px);
      background-color: #ffca2c;
    }

    .page-789club-floating-login-btn .icon {
      font-size: 1.2em;
    }

    /* Banner */
    .page-789club-banner {
      width: 100%;
      height: 250px; /* Chiều cao cố định cho di động */
      overflow: hidden;
      position: relative;
      margin-bottom: 30px;
      border-radius: 8px;
    }

    .page-789club-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Đảm bảo hình ảnh phủ kín và căn giữa */
      display: block;
    }

    .page-789club-banner-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff; /* Màu chữ trắng để tương phản trên banner */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      width: 90%;
      max-width: 600px;
    }

    .page-789club-banner-content h1 {
      font-size: 1.8em; /* Kích thước phù hợp cho di động */
      margin-bottom: 10px;
      color: #fff; /* Đảm bảo màu chữ tương phản */
    }

    .page-789club-banner-content p {
      font-size: 1em;
      margin-bottom: 20px;
      color: #fff; /* Đảm bảo màu chữ tương phản */
    }

    .page-789club-banner-content .page-789club-btn {
      display: inline-block;
      background-color: #ffc107;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-789club-banner-content .page-789club-btn:hover {
      background-color: #ffca2c;
    }

    /* Các phần chung */
    .page-789club-section {
      padding: 30px 0;
      margin-bottom: 20px;
      background-color: #242645; /* Nền hơi sáng hơn so với body */
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-789club-section:nth-child(even) {
      background-color: #1a1a2e; /* Xen kẽ nền tối hơn */
    }

    /* Lưới sản phẩm/trò chơi */
    .page-789club-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* 3-4 cột trên di động */
      gap: 15px;
      text-align: center;
    }

    .page-789club-game-item {
      background-color: #0f3460; /* Nền xanh đậm cho item */
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-789club-game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-789club-game-item img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 8px;
      border-radius: 5px;
    }

    .page-789club-game-item a {
      color: #ffc107; /* Màu vàng cho link, độ tương phản tốt */
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      word-break: break-word; /* Đảm bảo văn bản không tràn ra ngoài */
    }

    .page-789club-game-item a:hover {
      text-decoration: underline;
    }

    /* Danh sách ưu điểm */
    .page-789club-feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-789club-feature-list li {
      background-color: #0f3460;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-789club-feature-list li .icon {
      color: #ffc107;
      font-size: 1.8em;
      flex-shrink: 0;
    }

    .page-789club-feature-list li strong {
      color: #ffc107;
      display: block;
      margin-bottom: 5px;
    }
    .page-789club-feature-list li p {
      color: #c0c0c0; /* Đảm bảo độ tương phản */
    }

    /* Nút CTA */
    .page-789club-cta {
      text-align: center;
      margin-top: 40px;
    }

    .page-789club-cta .page-789club-btn-large {
      background-color: #e94560;
      color: #fff;
      padding: 15px 35px;
      font-size: 1.3em;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-789club-cta .page-789club-btn-large:hover {
      background-color: #d6304f;
    }

    /* Văn bản nội dung */
    .page-789club-text-block p {
      margin-bottom: 15px;
      color: #c0c0c0; /* Đảm bảo độ tương phản */
    }
    .page-789club-text-block ul {
        list-style: none;
        padding-left: 0;
    }
    .page-789club-text-block ul li {
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        color: #c0c0c0;
    }
    .page-789club-text-block ul li::before {
        content: '•';
        color: #ffc107;
        position: absolute;
        left: 0;
        font-size: 1.2em;
        line-height: 1;
    }

    .page-789club-text-block strong {
      color: #ffc107;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .page-789club-banner {
        height: 350px;
      }
      .page-789club-banner-content h1 {
        font-size: 3.5em;
      }
      .page-789club-banner-content p {
        font-size: 1.3em;
      }
      .page-789club-h1 {
        font-size: 3.5em;
      }
      .page-789club-h2 {
        font-size: 2.5em;
      }
      .page-789club-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); /* 4-5 cột trên desktop */
      }
      .page-789club-feature-list {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .page-789club-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
    }
  