
    /* CSS cho trang jun88vip */
    .page-jun88vip {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng mặc định */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Đảm bảo nội dung không bị che bởi header cố định */
    .page-jun88vip__hero-section {
      padding-top: 140px; /* An toàn cho header cố định */
      position: relative;
      text-align: center;
      padding-bottom: 40px;
    }
    @media (max-width: 768px) {
      .page-jun88vip__hero-section {
        padding-top: 100px; /* An toàn cho header cố định trên di động */
      }
    }

    .page-jun88vip__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Đảm bảo ảnh hiển thị nguyên tỷ lệ */
    }
    .page-jun88vip__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    .page-jun88vip__hero-title {
      color: #FFD700; /* Chữ vàng */
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    .page-jun88vip__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }
    .page-jun88vip__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Nút vàng */
      color: #000000; /* Chữ đen trên nút */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    .page-jun88vip__cta-button:hover {
      background-color: #FFA500; /* Vàng cam khi hover */
      transform: translateY(-3px);
    }

    /* Các phần chung */
    .page-jun88vip__section {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .page-jun88vip__section-title {
      color: #FFD700;
      font-size: 2.5em;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }
    .page-jun88vip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    /* Lưới sản phẩm/game */
    .page-jun88vip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      margin-top: 40px;
    }
    .page-jun88vip__game-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }
    .page-jun88vip__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
    }
    .page-jun88vip__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-jun88vip__game-image {
      width: 100%;
      max-width: 100%; /* Important for responsiveness */
      height: auto;
      display: block;
      object-fit: cover;
      border-bottom: 3px solid #FFD700;
    }
    .page-jun88vip__game-title {
      color: #FFD700;
      font-size: 1.5em;
      margin: 20px 10px 10px 10px;
    }
    .page-jun88vip__game-description {
      color: #CCCCCC;
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 15px;
    }
    .page-jun88vip__game-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-jun88vip__game-link:hover {
      background-color: #FFA500;
    }

    /* Nhà cung cấp game */
    .page-jun88vip__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
    }
    .page-jun88vip__provider-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .page-jun88vip__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }
    .page-jun88vip__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex; /* Centering the image inside */
      justify-content: center;
      align-items: center;
      min-height: 100px; /* Ensure minimum height for logos */
    }
    .page-jun88vip__provider-logo {
      width: 100%;
      max-width: 150px; /* Max width for logos */
      height: auto;
      display: block;
      object-fit: contain;
    }
    .page-jun88vip__provider-name {
      color: #FFFFFF;
      margin-top: 10px;
      font-weight: bold;
      font-size: 1em;
    }

    /* Tại sao chọn Jun88 VIP */
    .page-jun88vip__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    .page-jun88vip__feature-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      text-align: left;
      transition: transform 0.3s ease;
      border-left: 5px solid #FFD700;
    }
    .page-jun88vip__feature-card:hover {
      transform: scale(1.03);
    }
    .page-jun88vip__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    .page-jun88vip__feature-icon {
      width: 100px; /* Larger icons for features */
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
    }
    .page-jun88vip__feature-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 15px;
    }
    .page-jun88vip__feature-description {
      color: #CCCCCC;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-jun88vip__faq-section {
      background-color: #0d0d0d;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    }
    .page-jun88vip__faq-title {
      color: #FFD700;
      font-size: 2.5em;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
      padding-bottom: 15px;
    }
    .page-jun88vip__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }
    .page-jun88vip__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .page-jun88vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      color: #FFFFFF;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 10px;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-jun88vip__faq-question:hover {
      background-color: #3a3a3a;
    }
    .page-jun88vip__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }
    .page-jun88vip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }
    .page-jun88vip__faq-item.active .page-jun88vip__faq-toggle {
      transform: rotate(45deg); /* Rotate + to form X or - */
    }
    .page-jun88vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-jun88vip__faq-item.active .page-jun88vip__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-jun88vip__section-title,
      .page-jun88vip__faq-title {
        font-size: 2.2em;
      }
      .page-jun88vip__hero-title {
        font-size: 2.4em;
      }
    }

    @media (max-width: 768px) {
      .page-jun88vip__hero-title {
        font-size: 2em;
      }
      .page-jun88vip__hero-description {
        font-size: 1em;
      }
      .page-jun88vip__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-jun88vip__section {
        padding: 40px 15px;
      }
      .page-jun88vip__section-title,
      .page-jun88vip__faq-title {
        font-size: 1.8em;
      }
      .page-jun88vip__game-grid,
      .page-jun88vip__providers-grid,
      .page-jun88vip__features-grid {
        grid-template-columns: 1fr;
      }
      .page-jun88vip__game-title {
        font-size: 1.3em;
      }
      .page-jun88vip__feature-title {
        font-size: 1.5em;
      }
      .page-jun88vip__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-jun88vip__faq-question h3 {
        font-size: 1.1em;
      }
      .page-jun88vip__faq-answer {
        padding: 0 20px;
      }
      .page-jun88vip__faq-item.active .page-jun88vip__faq-answer {
        padding: 15px 20px !important;
      }
      /* Responsive images for mobile */
      .page-jun88vip__game-image,
      .page-jun88vip__provider-logo,
      .page-jun88vip__feature-icon,
      .page-jun88vip__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun88vip__game-image-wrapper,
      .page-jun88vip__provider-logo-wrapper,
      .page-jun88vip__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  