
    /* Tổng quan */
    .page-jjun88com {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Đảm bảo không bị chồng với footer */
    }

    /* Tiêu đề chính */
    .page-jjun88com__heading-primary {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 20px;
      font-weight: 700;
    }

    /* Tiêu đề phụ */
    .page-jjun88com__heading-secondary {
      font-size: 2em;
      color: #2c3e50;
      margin-top: 40px;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 600;
    }

    .page-jjun88com__heading-tertiary {
      font-size: 1.5em;
      color: #34495e;
      margin-top: 30px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    /* Phần container chung */
    .page-jjun88com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .page-jjun88com__hero-section {
      position: relative;
      background-color: #007bff;
      color: #fff;
      padding: 100px 20px 60px; /* Fixed nav padding-top */
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 40px;
    }
    .page-jjun88com__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:background:hero_banner,jjun88,promotion]');
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      z-index: 0;
    }
    .page-jjun88com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }
    .page-jjun88com__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 800;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .page-jjun88com__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    }
    .page-jjun88com__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-jjun88com__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-jjun88com__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545; /* Đỏ rực rỡ */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-jjun88com__pulse 2s infinite;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
      white-space: nowrap; /* Ngăn nút bị xuống dòng */
    }
    .page-jjun88com__floating-button:hover {
      background-color: #c82333;
    }
    @keyframes page-jjun88com__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Giới thiệu */
    .page-jjun88com__intro-section {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
    }
    .page-jjun88com__intro-section p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #555;
    }

    /* Danh mục trò chơi */
    .page-jjun88com__game-categories {
      margin-bottom: 40px;
    }
    .page-jjun88com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .page-jjun88com__game-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .page-jjun88com__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    .page-jjun88com__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }
    .page-jjun88com__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-jjun88com__game-card-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .page-jjun88com__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }
    .page-jjun88com__game-card-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 25px;
      border-radius: 30px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-jjun88com__game-card-button:hover {
      background-color: #0056b3;
    }

    /* Khuyến mãi */
    .page-jjun88com__promotion-section {
      background-color: #e9f7ef;
      padding: 50px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
      text-align: center;
    }
    .page-jjun88com__promotion-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }
    .page-jjun88com__promotion-item {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      width: calc(33% - 25px);
      min-width: 280px;
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* IMPORTANT for responsive lists */
    }
    .page-jjun88com__promotion-item:hover {
      transform: translateY(-5px);
    }
    .page-jjun88com__promotion-title {
      font-size: 1.3em;
      color: #28a745;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .page-jjun88com__promotion-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 15px;
    }
    .page-jjun88com__promotion-action {
      display: inline-block;
      background-color: #28a745;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-jjun88com__promotion-action:hover {
      background-color: #218838;
    }

    /* Hướng dẫn */
    .page-jjun88com__guide-section {
      margin-bottom: 40px;
    }
    .page-jjun88com__guide-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }
    .page-jjun88com__guide-step-item {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      flex: 1;
      min-width: 280px;
      text-align: center;
      box-sizing: border-box; /* IMPORTANT for responsive lists */
    }
    .page-jjun88com__guide-step-number {
      font-size: 2.5em;
      color: #007bff;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .page-jjun88com__guide-step-title {
      font-size: 1.2em;
      color: #333;
      margin-bottom: 10px;
      font-weight: 600;
    }
    .page-jjun88com__guide-step-description {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-jjun88com__faq-section {
      margin-top: 50px;
      margin-bottom: 40px;
    }
    .page-jjun88com__faq-list {
      max-width: 800px;
      margin: 30px auto 0;
      padding: 0;
      list-style: none;
    }
    .page-jjun88com__faq-item {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .page-jjun88com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }
    .page-jjun88com__faq-question:hover {
      background-color: #f0f0f0;
    }
    .page-jjun88com__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #333;
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click */
    }
    .page-jjun88com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }
    .page-jjun88com__faq-item.active .page-jjun88com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: #dc3545;
    }
    .page-jjun88com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      line-height: 1.8;
    }
    .page-jjun88com__faq-item.active .page-jjun88com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Why Choose Section */
    .page-jjun88com__why-choose-section {
      background-color: #f0f8ff;
      padding: 50px 20px;
      border-radius: 10px;
      text-align: center;
      margin-bottom: 40px;
    }
    .page-jjun88com__why-choose-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }
    .page-jjun88com__why-choose-item {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* IMPORTANT for responsive lists */
    }
    .page-jjun88com__why-choose-item:hover {
      transform: translateY(-5px);
    }
    .page-jjun88com__why-choose-icon {
      margin-bottom: 15px;
    }
    .page-jjun88com__why-choose-icon img {
      width: 80px; /* Min 200x200px rule applies to content images, not decorative icons if they were allowed */
      height: 80px;
      object-fit: contain;
      max-width: 100%; /* Ensures responsiveness */
      height: auto;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .page-jjun88com__why-choose-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .page-jjun88com__why-choose-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Final CTA */
    .page-jjun88com__final-cta-section {
      background-color: #007bff;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
    }
    .page-jjun88com__final-cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: 700;
    }
    .page-jjun88com__final-cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }
    .page-jjun88com__final-cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-jjun88com__final-cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jjun88com__hero-section {
        padding-top: 80px; /* Mobile fixed nav padding */
        padding-bottom: 40px;
      }
      .page-jjun88com__hero-title {
        font-size: 2.2em;
      }
      .page-jjun88com__hero-description {
        font-size: 1em;
      }
      .page-jjun88com__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-jjun88com__floating-button {
        font-size: 0.9em;
        padding: 12px 18px;
        bottom: 15px;
        right: 15px;
      }
      .page-jjun88com__heading-primary {
        font-size: 2em;
      }
      .page-jjun88com__heading-secondary {
        font-size: 1.7em;
      }
      .page-jjun88com__heading-tertiary {
        font-size: 1.3em;
      }
      .page-jjun88com__intro-section,
      .page-jjun88com__promotion-section,
      .page-jjun88com__why-choose-section,
      .page-jjun88com__final-cta-section {
        padding: 30px 15px;
      }
      .page-jjun88com__game-grid,
      .page-jjun88com__promotion-list,
      .page-jjun88com__guide-steps,
      .page-jjun88com__why-choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 !important; /* Ensure no extra padding on mobile list containers */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jjun88com__promotion-item,
      .page-jjun88com__guide-step-item,
      .page-jjun88com__why-choose-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-jjun88com__game-card-image {
        height: 180px;
      }
      .page-jjun88com__faq-question {
        padding: 12px 15px;
      }
      .page-jjun88com__faq-question h3 {
        font-size: 1em;
      }
      .page-jjun88com__faq-answer {
        padding: 15px !important;
        font-size: 0.9em;
      }
      .page-jjun88com__final-cta-title {
        font-size: 2em;
      }
      .page-jjun88com__final-cta-description {
        font-size: 1em;
      }
      .page-jjun88com__final-cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      .page-jjun88com__why-choose-icon img {
        width: 60px;
        height: 60px;
      }
    }

    @media (max-width: 480px) {
      .page-jjun88com__floating-button {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        right: auto;
        width: calc(100% - 40px);
        max-width: 300px;
      }
    }

    /* Image responsive default */
    .page-jjun88com img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    @media (max-width: 768px) {
        .page-jjun88com img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-jjun88com__game-card-image {
            width: 100% !important;
            height: auto !important; /* Adjust height for mobile if needed, but maintain aspect ratio */
            max-height: 180px; /* Example, adjust as needed */
            object-fit: cover;
        }
        .page-jjun88com__why-choose-icon img {
            width: 60px !important;
            height: 60px !important;
        }
    }
  