
    /* CSS Styles for page-game789 */
    .page-game789 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a; /* Nền tối */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-game789__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-game789__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-game789__section--dark {
      background-color: #2a2a2a;
    }

    .page-game789__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Màu vàng cho tiêu đề */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-game789__section-subtitle {
      font-size: 1.8em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-game789__text-center {
      text-align: center;
    }

    .page-game789__description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #f0f0f0;
    }

    /* Hero Section */
    .page-game789__hero-section {
      position: relative;
      text-align: center;
      color: #ffffff;
      padding-top: 160px; /* Vùng an toàn cho header cố định */
      padding-bottom: 60px;
      background-color: #1a1a1a;
    }

    .page-game789__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }
    .page-game789__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-game789__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-game789__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-game789__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Nút màu vàng */
      color: #1a1a1a; /* Chữ tối trên nền vàng */
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.4em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-game789__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Game Categories */
    .page-game789__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

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

    .page-game789__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-game789__game-card-image-container {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh */
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }
    .page-game789__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-game789__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-game789__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Game Providers */
    .page-game789__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-game789__provider-logo-container {
      width: 100%;
      max-width: 180px; /* Chiều rộng tối đa cho logo */
      height: 100px; /* Chiều cao cố định */
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #333333;
      border-radius: 8px;
      padding: 10px;
      transition: transform 0.3s ease;
    }
    .page-game789__provider-logo-container:hover {
      transform: scale(1.05);
    }
    .page-game789__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Promotions */
    .page-game789__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-game789__promo-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-game789__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-game789__promo-card-title {
      font-size: 1.6em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-game789__promo-card-description {
      font-size: 1em;
      color: #cccccc;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-game789__promo-image-container {
      width: 100%;
      height: 250px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }
    .page-game789__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

    .page-game789__benefit-item {
      background-color: #2a2a2a;
      border-left: 5px solid #FFD700;
      padding: 20px;
      border-radius: 8px;
      font-size: 1.1em;
      color: #f0f0f0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-game789__benefit-item strong {
      color: #FFD700;
      font-size: 1.2em;
      display: block;
      margin-bottom: 5px;
    }
    .page-game789__benefits-image-container {
      width: 100%;
      max-width: 600px;
      margin: 40px auto 0;
      overflow: hidden;
      border-radius: 8px;
      box-sizing: border-box;
    }
    .page-game789__benefits-image {
      width: 100%;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-game789__faq-container {
      max-width: 900px;
      margin: 40px auto;
    }

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

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

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

    .page-game789__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-game789__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }

    .page-game789__faq-item.active .page-game789__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X */
    }

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

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

    /* Social Media */
    .page-game789__social-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .page-game789__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: #333333;
      border-radius: 50%;
      color: #FFD700;
      font-size: 2em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-game789__social-link:hover {
      background-color: #FFD700;
      color: #1a1a1a;
      transform: translateY(-5px);
    }
    .page-game789__social-image-container {
      width: 100%;
      max-width: 800px;
      margin: 40px auto 0;
      overflow: hidden;
      border-radius: 8px;
      box-sizing: border-box;
    }
    .page-game789__social-image {
      width: 100%;
      height: auto;
      display: block;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-game789__container {
        padding: 15px;
      }

      .page-game789__hero-section {
        padding-top: 140px; /* Điều chỉnh cho header cố định trên di động */
        padding-bottom: 40px;
      }

      .page-game789__hero-title {
        font-size: 2.2em;
      }

      .page-game789__hero-description {
        font-size: 1.1em;
      }

      .page-game789__cta-button {
        padding: 12px 30px;
        font-size: 1.2em;
      }

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

      .page-game789__section-subtitle {
        font-size: 1.5em;
      }

      .page-game789__game-grid,
      .page-game789__promo-grid,
      .page-game789__benefits-list {
        grid-template-columns: 1fr;
      }

      .page-game789__game-card-image-container,
      .page-game789__promo-image-container {
        height: 180px; /* Chiều cao nhỏ hơn cho di động */
      }
      .page-game789__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-game789__provider-logo-container {
        max-width: 150px;
        height: 80px;
      }
      .page-game789__faq-question {
        padding: 12px 15px;
      }
      .page-game789__faq-question h3 {
        font-size: 1.1em;
      }
      .page-game789__faq-answer {
        padding: 0 15px;
      }
      .page-game789__faq-item.active .page-game789__faq-answer {
        padding: 15px 15px !important;
      }

      /* Image responsive optimization for mobile */
      .page-game789 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-game789__hero-image-container,
      .page-game789__game-card-image-container,
      .page-game789__provider-logo-container,
      .page-game789__promo-image-container,
      .page-game789__benefits-image-container,
      .page-game789__social-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  