
    /* Tổng thể */
    .page-jjun88com2 {
      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ị che bởi footer */
    }

    .page-jjun88com2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-jjun88com2__hero-section {
      position: relative;
      width: 100%;
      background-color: #0d47a1; /* Màu nền dự phòng */
      color: #fff;
      text-align: center;
      padding-top: 10px; /* Khoảng cách cho header cố định */
      padding-bottom: 60px; /* Tăng padding dưới để hình ảnh không bị dính */
      overflow: hidden; /* Đảm bảo nội dung không tràn ra ngoài */
    }

    .page-jjun88com2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7; /* Làm mờ ảnh nền để văn bản dễ đọc hơn */
      z-index: 1;
    }

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

    .page-jjun88com2__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #ffeb3b; /* Màu vàng nổi bật */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-jjun88com2__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
      color: #e0e0e0;
    }

    .page-jjun88com2__cta-button {
      display: inline-block;
      background-color: #ff5722; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none; /* Sử dụng button hoặc div, không phải a */
    }

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

    /* Floating Login Button */
    .page-jjun88com2__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .page-jjun88com2__floating-button {
      background-color: #4CAF50; /* Màu xanh lá cây */
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-jjun88com2__pulse 2s infinite;
      cursor: pointer;
      border: none;
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
    }
    
    .page-jjun88com2__floating-button:hover {
      background-color: #43a047;
      transform: scale(1.05);
      animation: none;
    }

    .page-jjun88com2__floating-button a {
        color: #fff;
        text-decoration: none;
    }

    @keyframes page-jjun88com2__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* General Section Styling */
    .page-jjun88com2__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-jjun88com2__section:nth-of-type(even) {
      background-color: #e8f0f8;
    }

    .page-jjun88com2__section-title {
      font-size: 2.2em;
      color: #0d47a1;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-jjun88com2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ff5722;
      border-radius: 2px;
    }

    .page-jjun88com2__text-block {
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-align: left;
      font-size: 1.1em;
      color: #555;
    }

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

    .page-jjun88com2__game-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-jjun88com2__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-jjun88com2__game-card-image {
      width: 100%;
      height: 200px; /* Đảm bảo kích thước tối thiểu 200px */
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-jjun88com2__game-card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-jjun88com2__game-card-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-jjun88com2__game-card-description {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    /* Features Section */
    .page-jjun88com2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jjun88com2__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease;
      height: 100%; /* Đảm bảo chiều cao bằng nhau */
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-jjun88com2__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-jjun88com2__feature-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px auto;
      object-fit: contain;
    }

    .page-jjun88com2__feature-title {
      font-size: 1.4em;
      color: #0d47a1;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-jjun88com2__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ Section */
    .page-jjun88com2__faq-section {
      background-color: #f4f7f6;
      padding: 60px 0;
    }

    .page-jjun88com2__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-jjun88com2__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .page-jjun88com2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #0d47a1;
    }

    .page-jjun88com2__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-jjun88com2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-jjun88com2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      color: #ff5722;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-jjun88com2__faq-item.active .page-jjun88com2__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: #0d47a1;
    }

    .page-jjun88com2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
    }

    .page-jjun88com2__faq-item.active .page-jjun88com2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-jjun88com2__faq-answer p {
        margin-bottom: 10px;
    }
    .page-jjun88com2__faq-answer p:last-child {
        margin-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jjun88com2__hero-section {
        padding-top: 10px; /* Adjust for mobile header */
        padding-bottom: 40px;
      }

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

      .page-jjun88com2__hero-subtitle {
        font-size: 1.1em;
      }

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

      .page-jjun88com2__section {
        padding: 40px 0;
      }

      .page-jjun88com2__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-jjun88com2__text-block {
        font-size: 1em;
        padding: 0 10px;
      }

      .page-jjun88com2__game-grid,
      .page-jjun88com2__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-jjun88com2__game-card {
        margin: 0 auto;
        max-width: 350px; /* Constrain card width on mobile */
      }

      .page-jjun88com2__feature-item {
        margin: 0 auto;
        max-width: 350px;
      }

      .page-jjun88com2__faq-list {
        padding: 0 10px;
      }

      .page-jjun88com2__faq-question {
        padding: 15px 20px;
      }

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

      .page-jjun88com2__faq-toggle {
        font-size: 1.5em;
      }

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

      /* Floating button for mobile */
      .page-jjun88com2__floating-button-wrapper {
        bottom: 15px;
        right: 15px;
      }

      .page-jjun88com2__floating-button {
        padding: 10px 15px;
        font-size: 0.95em;
      }
      
      /* Image responsiveness */
      .page-jjun88com2__game-card-image,
      .page-jjun88com2__feature-icon,
      .page-jjun88com2__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
        .page-jjun88com2__hero-title {
            font-size: 1.8em;
        }
        .page-jjun88com2__hero-subtitle {
            font-size: 1em;
        }
        .page-jjun88com2__floating-button {
            font-size: 0.9em;
            padding: 8px 12px;
        }
    }
  