
    .page-jun88casino {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Đen */
      color: #FFF; /* Trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Dành chỗ cho footer và nút nổi */
    }

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

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

    .page-jun88casino__section-title {
      color: #FFD700; /* Vàng */
      font-size: 2.5em;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-jun88casino__section-subtitle {
      color: #FFF;
      font-size: 1.2em;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-jun88casino__hero-section {
      position: relative;
      background-color: #000;
      padding-top: 120px; /* Đảm bảo nội dung không bị che bởi header cố định */
      overflow: hidden;
    }

    .page-jun88casino__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
    }

    .page-jun88casino__hero-image {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: contain; /* Giữ nguyên tỷ lệ hình ảnh */
      border-radius: 8px;
    }

    .page-jun88casino__hero-content {
      padding: 20px 15px 40px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .page-jun88casino__hero-title {
      color: #FFD700;
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-jun88casino__hero-description {
      color: #FFF;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jun88casino__hero-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000;
      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-jun88casino__hero-button:hover {
      background-color: #FFF;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-jun88casino__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-jun88casino__floating-button {
      background-color: #FFD700;
      color: #000;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

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

    .page-jun88casino__floating-button--login {
      background-color: #FF4500; /* Cam đỏ cho khuyến mãi */
      color: #FFF;
    }

    .page-jun88casino__floating-button--login:hover {
      background-color: #E63900;
    }

    /* Game Categories Section */
    .page-jun88casino__game-categories {
      background-color: #0a0a0a;
      padding: 50px 0;
    }

    .page-jun88casino__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-jun88casino__category-item {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .page-jun88casino__category-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-jun88casino__category-link {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      height: 100%;
    }

    .page-jun88casino__category-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-jun88casino__category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-jun88casino__category-item:hover .page-jun88casino__category-image {
      transform: scale(1.05);
    }

    .page-jun88casino__category-content {
      padding: 20px 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-jun88casino__category-title {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-jun88casino__category-description {
      color: #AAA;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-jun88casino__category-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Đẩy nút xuống dưới */
    }

    .page-jun88casino__category-button:hover {
      background-color: #FFF;
    }

    /* Game Providers Section */
    .page-jun88casino__providers-section {
      background-color: #111;
      padding: 50px 0;
    }

    .page-jun88casino__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-jun88casino__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 100px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-jun88casino__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-jun88casino__provider-logo {
      width: 100%;
      height: auto;
      max-width: 150px; /* Giới hạn kích thước logo */
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(20%); /* Làm mờ nhẹ */
      transition: filter 0.3s ease;
    }

    .page-jun88casino__provider-item:hover .page-jun88casino__provider-logo {
      filter: grayscale(0%); /* Hiện màu khi hover */
    }

    /* About Section */
    .page-jun88casino__about-section {
      padding: 50px 0;
    }

    .page-jun88casino__about-content {
      text-align: left;
      color: #FFF;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-jun88casino__about-content h3 {
      color: #FFD700;
      font-size: 1.8em;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-jun88casino__about-content p {
      margin-bottom: 15px;
      font-size: 1.05em;
    }

    .page-jun88casino__about-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-jun88casino__about-content ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      color: #FFF;
    }

    .page-jun88casino__about-content ul li::before {
      content: '✔';
      color: #FFD700;
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-jun88casino__faq-section {
      background-color: #0a0a0a;
      padding: 50px 0;
    }

    .page-jun88casino__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
      text-align: left;
    }

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

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

    .page-jun88casino__faq-question:hover {
      background-color: #333;
    }

    .page-jun88casino__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Kích thước h3 bên trong câu hỏi */
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-jun88casino__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle icon chặn sự kiện click */
    }

    .page-jun88casino__faq-item.active .page-jun88casino__faq-toggle {
      transform: rotate(45deg); /* Biến đổi '+' thành 'x' hoặc '-' */
    }

    .page-jun88casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #AAA;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action Section */
    .page-jun88casino__cta-section {
      background-color: #111;
      padding: 60px 0;
    }

    .page-jun88casino__cta-title {
      color: #FFD700;
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-jun88casino__cta-description {
      color: #FFF;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jun88casino__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

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

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

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

      .page-jun88casino__hero-button {
        font-size: 1em;
        padding: 12px 25px;
      }

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

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

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

      .page-jun88casino__category-title {
        font-size: 1.3em;
      }

      .page-jun88casino__category-description {
        font-size: 0.9em;
      }

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

      .page-jun88casino__provider-logo {
        max-width: 100px;
        max-height: 60px;
      }

      .page-jun88casino__about-content h3 {
        font-size: 1.5em;
      }

      .page-jun88casino__about-content p,
      .page-jun88casino__about-content ul li {
        font-size: 0.95em;
      }

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

      .page-jun88casino__faq-answer {
        padding: 15px !important;
      }

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

      .page-jun88casino__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
      }

      .page-jun88casino__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        gap: 10px;
        bottom: 15px;
      }

      .page-jun88casino__floating-button {
        flex: 1;
        font-size: 0.9em;
        padding: 10px 15px;
      }

      /* Force image responsive for mobile */
      .page-jun88casino img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun88casino__hero-image-wrapper,
      .page-jun88casino__category-image-wrapper,
      .page-jun88casino__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-jun88casino__hero-title {
        font-size: 1.8em;
      }
      .page-jun88casino__section-title {
        font-size: 1.8em;
      }
    }
  