
    /* CSS Styles for 789club page */
    .page-789club {
      background-color: #1a1a1a; /* Nền tối, gần như đen */
      color: #ffffff; /* Chữ trắng cho nội dung chính */
      font-family: Arial, sans-serif;
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

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

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

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

    .page-789club__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Màu vàng làm điểm nhấn */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-789club__section-subtitle {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-789club__hero-section {
      background-color: #000000;
      padding-top: 120px; /* Đệm trên cho header cố định trên máy tính */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-789club__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và văn bản */
    }

    .page-789club__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-789club__hero-content {
      padding: 20px 15px 40px;
      position: relative;
      z-index: 2;
    }

    .page-789club__hero-title {
      font-size: 3.5em;
      color: #ffd700;
      margin-bottom: 10px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789club__hero-subtitle {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-789club__button {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-789club__button:hover {
      background-color: #ffe866;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-789club__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: pulse 2s infinite;
    }

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

    /* Game Categories */
    .page-789club__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-789club__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-789club__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-789club__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Chiều cao cố định để nhất quán */
    }

    .page-789club__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #ffd700;
    }

    .page-789club__game-card-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-789club__game-card-link {
      color: #ffd700;
      text-decoration: none;
    }

    .page-789club__game-card-link:hover {
      text-decoration: underline;
    }

    /* Game Providers */
    .page-789club__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Điều chỉnh cho nhiều cột hơn */
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-789club__provider-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px; /* Đảm bảo chiều cao nhất quán cho logo */
      width: 100%;
      max-width: 200px; /* Chiều rộng tối đa cho mỗi container logo */
      box-sizing: border-box;
    }

    .page-789club__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-789club__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 90px; /* Chiều cao cho chính logo */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-789club__provider-logo {
      max-width: 100%;
      max-height: 100%; /* Sử dụng max-height để đảm bảo vừa vặn theo chiều dọc */
      height: auto;
      display: block;
      object-fit: contain; /* Đảm bảo logo vừa vặn mà không bị cắt */
    }

    /* Why Choose Us */
    .page-789club__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: left;
    }

    .page-789club__feature-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-789club__feature-icon-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      display: flex; /* Để căn giữa hình ảnh nếu nó nhỏ hơn container */
      justify-content: flex-start; /* Căn trái */
    }

    .page-789club__feature-icon {
      width: 60px; /* Kích thước ví dụ, điều chỉnh nếu cần */
      height: 60px; /* Kích thước ví dụ */
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-789club__feature-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-789club__feature-description {
      color: #ffffff;
      font-size: 0.95em;
    }

    /* Payment Methods */
    .page-789club__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-789club__payment-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px 25px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      height: 80px;
      transition: transform 0.2s ease;
    }

    .page-789club__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-789club__payment-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 50px; /* Chiều cao cho logo thanh toán */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-789club__payment-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-789club__faq-list {
      margin-top: 30px;
      text-align: left;
    }

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

    .page-789club__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      color: #ffd700;
      font-size: 1.15em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-789club__faq-question:hover {
      background-color: #444444;
    }

    .page-789club__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Ngăn h3 bắt sự kiện click */
      color: #ffd700; /* Đảm bảo màu H3 đúng */
    }

    .page-789club__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Ngăn biểu tượng chuyển đổi bắt sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-789club__faq-item.active .page-789club__faq-toggle {
      transform: rotate(45deg); /* Xoay '+' thành '−' */
    }

    .page-789club__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;
      background-color: #2a2a2a;
      color: #ffffff;
    }

    .page-789club__faq-item.active .page-789club__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-789club__faq-answer p {
      margin-top: 0;
      margin-bottom: 1em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789club__hero-section {
        padding-top: 100px; /* Đệm trên cho header cố định trên di động */
      }

      .page-789club__hero-title {
        font-size: 2.5em;
      }

      .page-789club__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-789club__game-categories,
      .page-789club__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-789club__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-789club__provider-item {
        max-width: 150px;
        height: 100px;
      }

      .page-789club__provider-logo-container {
        height: 70px;
      }

      .page-789club__floating-button {
        width: 95%;
        bottom: 15px;
      }

      /* Buộc hình ảnh phản hồi trên di động */
      .page-789club__hero-image {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-789club__hero-image-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-789club__game-card-image {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-789club__game-card-image-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-789club__provider-logo {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-789club__provider-logo-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-789club__feature-icon {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-789club__feature-icon-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-789club__payment-logo {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-789club__payment-logo-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  