
    /* Tổng quan */
    .page-jun88nohu {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo đủ không gian cho footer */
    }

    .page-jun88nohu__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-jun88nohu__heading {
      color: #ffd700; /* Chữ vàng */
      text-align: center;
      margin-bottom: 20px;
    }

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

    .page-jun88nohu__button {
      display: inline-block;
      background-color: #ffd700; /* Nền vàng */
      color: #000000; /* Chữ đen */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-jun88nohu__button:hover {
      background-color: #e6b800; /* Vàng đậm hơn khi hover */
      color: #ffffff; /* Chữ trắng khi hover */
    }

    /* Hero Section */
    .page-jun88nohu__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 140px; /* An toàn cho header cố định */
      margin-bottom: 40px;
      box-sizing: border-box;
    }

    .page-jun88nohu__hero-image {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .page-jun88nohu__hero-content {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 15px;
      border-radius: 8px;
    }

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

    .page-jun88nohu__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ffffff;
    }

    /* Floating CTA */
    .page-jun88nohu__floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ffd700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-jun88nohu__floating-cta:hover {
      transform: translateY(-5px);
      background-color: #e6b800;
    }

    .page-jun88nohu__floating-cta-icon {
      font-size: 1.2em;
    }

    /* Giới thiệu Section */
    .page-jun88nohu__introduction-section {
      padding: 40px 0;
    }

    .page-jun88nohu__introduction-content p {
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    /* Game List Section */
    .page-jun88nohu__game-list-section {
      padding: 40px 0;
    }

    .page-jun88nohu__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

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

    .page-jun88nohu__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-jun88nohu__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-jun88nohu__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-jun88nohu__game-card-title {
      font-size: 1.4em;
      color: #ffd700;
      margin: 15px 10px 10px;
    }

    .page-jun88nohu__game-card-description {
      color: #ccc;
      font-size: 0.9em;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Nhà Cung Cấp Section */
    .page-jun88nohu__providers-section {
      padding: 40px 0;
    }

    .page-jun88nohu__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-jun88nohu__provider-logo-wrapper {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      max-width: 180px; /* Max width for logos */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }
    .page-jun88nohu__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-jun88nohu__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-jun88nohu__faq-section {
      padding: 40px 0;
    }

    .page-jun88nohu__faq-list {
      margin-top: 30px;
    }

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

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

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

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

    .page-jun88nohu__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      color: #ffffff;
    }

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

    .page-jun88nohu__faq-answer p {
      margin: 0;
      padding: 0;
    }

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

    /* Final CTA Section */
    .page-jun88nohu__final-cta-section {
      padding: 40px 0;
      text-align: center;
      background-color: #1a1a1a;
      margin-top: 40px;
      border-radius: 10px;
    }

    .page-jun88nohu__final-cta-section p {
      font-size: 1.2em;
      margin-bottom: 25px;
      color: #ffffff;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jun88nohu__hero-section {
        padding-top: 100px; /* An toàn cho header cố định trên mobile */
      }

      .page-jun88nohu__hero-title {
        font-size: 1.8em;
      }

      .page-jun88nohu__hero-description {
        font-size: 1em;
      }

      .page-jun88nohu__floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-jun88nohu__game-grid {
        grid-template-columns: 1fr;
      }

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

      .page-jun88nohu__game-card-image-wrapper {
        height: 180px;
      }

      .page-jun88nohu__faq-question {
        font-size: 1em;
        padding: 15px 18px;
      }

      .page-jun88nohu__faq-answer {
        padding: 0 12px;
      }

      .page-jun88nohu__faq-item.active .page-jun88nohu__faq-answer {
        padding: 15px 12px !important;
      }

      /* Responsive images for all images */
      .page-jun88nohu img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun88nohu__game-card-image-wrapper,
      .page-jun88nohu__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
        .page-jun88nohu__hero-title {
            font-size: 1.5em;
        }
        .page-jun88nohu__hero-description {
            font-size: 0.9em;
        }
        .page-jun88nohu__floating-cta {
            padding: 10px 15px;
            font-size: 0.8em;
            gap: 5px;
        }
        .page-jun88nohu__game-card-title {
            font-size: 1.2em;
        }
        .page-jun88nohu__final-cta-section p {
            font-size: 1em;
        }
    }
  