
    /* Tổng quan */
    .page-jun88vip1 {
      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;
    }

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

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

    .page-jun88vip1__section--dark {
      background-color: #1a1a1a;
    }

    .page-jun88vip1__heading {
      color: #ffd700; /* Chữ vàng */
      margin-bottom: 20px;
      font-size: 2.5em;
    }

    .page-jun88vip1__subheading {
      color: #ffffff; /* Chữ trắng */
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-jun88vip1__text {
      color: #cccccc; /* Chữ xám nhạt */
      margin-bottom: 15px;
      font-size: 1em;
    }

    .page-jun88vip1__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-jun88vip1__button:hover {
      background-color: #e6c200;
      color: #000000;
    }

    /* Hero Section */
    .page-jun88vip1__hero-section {
      position: relative;
      padding-top: 140px; /* An toàn cho menu cố định */
      background-color: #000000;
      text-align: center;
      padding-bottom: 40px;
    }

    .page-jun88vip1__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-jun88vip1__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

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

    .page-jun88vip1__hero-description {
      color: #ffffff;
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Nút đăng nhập/đăng ký nổi */
    .page-jun88vip1__floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ff4500; /* Màu cam nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      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;
      justify-content: center;
      text-align: center;
    }

    .page-jun88vip1__floating-cta:hover {
      background-color: #e03e00;
      transform: translateY(-3px);
      color: #ffffff;
    }

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

    .page-jun88vip1__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-jun88vip1__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-jun88vip1__game-card-image {
      width: 100%;
      height: 200px; /* Kích thước cố định cho hình ảnh sản phẩm */
      object-fit: cover;
      display: block;
    }

    .page-jun88vip1__game-card-content {
      padding: 20px;
    }

    .page-jun88vip1__game-card-title {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
      text-decoration: none; /* Đảm bảo không có gạch chân */
    }

    .page-jun88vip1__game-card-title a {
      color: #ffd700;
      text-decoration: none;
    }

    .page-jun88vip1__game-card-title a:hover {
      text-decoration: underline;
    }

    .page-jun88vip1__game-card-description {
      color: #cccccc;
      font-size: 0.9em;
    }

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

    .page-jun88vip1__provider-item {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Cố định chiều cao cho logo */
    }

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

    .page-jun88vip1__provider-logo {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      display: block;
      filter: grayscale(100%); /* Làm mờ logo */
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-jun88vip1__provider-item:hover .page-jun88vip1__provider-logo {
      filter: grayscale(0%); /* Hiển thị màu khi hover */
      opacity: 1;
    }

    /* Phương thức thanh toán */
    .page-jun88vip1__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-jun88vip1__payment-item {
      background-color: #1a1a1a;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      color: #ffffff;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 150px;
      justify-content: center;
    }

    .page-jun88vip1__payment-logo {
      max-height: 30px;
      width: auto;
      height: auto;
      display: block;
    }

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

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

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

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

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

    .page-jun88vip1__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffffff;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
      transition: transform 0.3s ease;
    }

    .page-jun88vip1__faq-item.active .page-jun88vip1__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }

    .page-jun88vip1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #1a1a1a;
      color: #cccccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jun88vip1__hero-section {
        padding-top: 100px; /* Điều chỉnh cho di động */
      }

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

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

      .page-jun88vip1__heading {
        font-size: 2em;
      }

      .page-jun88vip1__subheading {
        font-size: 1.5em;
      }

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

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

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

      .page-jun88vip1__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-jun88vip1__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jun88vip1__faq-answer {
        padding: 0 20px;
      }

      .page-jun88vip1__faq-item.active .page-jun88vip1__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive adjustments */
      .page-jun88vip1__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun88vip1__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun88vip1__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun88vip1__payment-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  