
    /* Tổng thể */
    .page-jobet {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Đảm bảo không bị che bởi footer */
    }

    /* Tiêu đề */
    .page-jobet h1,
    .page-jobet h2,
    .page-jobet h3 {
      color: #2c3e50;
      margin-bottom: 1rem;
      font-weight: bold;
      text-align: center;
    }

    .page-jobet h1 {
      font-size: 2.5rem;
      margin-top: 2rem;
      padding: 0 15px;
    }

    .page-jobet h2 {
      font-size: 2rem;
      margin-top: 2.5rem;
      padding: 0 15px;
    }

    .page-jobet h3 {
      font-size: 1.5rem;
      padding: 0 15px;
    }

    .page-jobet p {
      margin-bottom: 1rem;
      padding: 0 15px;
      text-align: justify;
    }

    .page-jobet strong {
      color: #c0392b;
    }

    /* Container chung */
    .page-jobet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 0;
    }

    /* Hero Section */
    .page-jobet__hero-section {
      position: relative;
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 10px 0 40px 0; /* padding-top để tránh header cố định */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-jobet__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-jobet__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
    }

    .page-jobet__hero-content h1 {
      color: #f1c40f;
      margin-bottom: 1rem;
      font-size: 2.8rem;
      line-height: 1.2;
    }

    .page-jobet__hero-content p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jobet__cta-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2rem;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-jobet__cta-button:hover {
      background-color: #c0392b;
    }

    /* Nút Đăng Ký Nổi */
    .page-jobet__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      border: none;
      cursor: pointer;
    }

    .page-jobet__floating-button:hover {
      background-color: #c0392b;
      transform: translateX(-50%) translateY(-5px);
    }

    /* Các phần nội dung */
    .page-jobet__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-jobet__section--alt {
      background-color: #f9f9f9;
    }

    /* Danh sách tính năng/lợi ích */
    .page-jobet__feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-jobet__feature-item {
      background-color: #ecf0f1;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-jobet__feature-item h3 {
      color: #2980b9;
      margin-top: 0;
      margin-bottom: 10px;
      text-align: left;
    }

    .page-jobet__feature-item p {
      font-size: 0.95rem;
      color: #555;
      padding: 0;
    }

    /* Danh mục trò chơi */
    .page-jobet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-jobet__game-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-jobet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-jobet__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-jobet__game-content {
      padding: 20px;
    }

    .page-jobet__game-content h3 {
      margin-top: 0;
      color: #34495e;
      text-align: center;
    }

    .page-jobet__game-content p {
      font-size: 0.9rem;
      color: #666;
      padding: 0;
    }

    /* Hướng dẫn đăng ký */
    .page-jobet__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-jobet__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #ecf0f1;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-jobet__step-number {
      background-color: #3498db;
      color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
      margin-right: 15px;
    }

    .page-jobet__step-content h3 {
      margin-top: 0;
      color: #2980b9;
      text-align: left;
    }

    .page-jobet__step-content p {
      font-size: 0.95rem;
      color: #555;
      padding: 0;
    }

    /* Khuyến mãi */
    .page-jobet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-jobet__promo-card {
      background-color: #fcfcfc;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-jobet__promo-card h3 {
      color: #e74c3c;
      margin-top: 0;
    }

    .page-jobet__promo-card p {
      color: #666;
      padding: 0;
    }

    /* FAQ Section */
    .page-jobet__faq-section {
      padding: 40px 0;
      background-color: #f9f9f9;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-jobet__faq-list {
      max-width: 900px;
      margin: 30px auto 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

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

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

    .page-jobet__faq-question:hover {
      background-color: #dbe4ec;
    }

    .page-jobet__faq-question h3 {
      margin: 0;
      color: #34495e;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Ngăn chặn click vào h3 */
    }

    .page-jobet__faq-toggle {
      font-size: 1.8rem;
      font-weight: bold;
      color: #3498db;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn click vào icon */
    }

    .page-jobet__faq-item.active .page-jobet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-jobet__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;
      background-color: #fcfcfc;
      color: #555;
    }

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

    .page-jobet__faq-answer p {
      margin: 0;
      padding: 0;
      text-align: left;
    }

    /* Responsive cho di động */
    @media (max-width: 768px) {
      .page-jobet h1 {
        font-size: 2rem;
      }

      .page-jobet h2 {
        font-size: 1.7rem;
      }

      .page-jobet__hero-section {
        padding-top: 10px; /* Điều chỉnh padding-top cho mobile */
      }

      .page-jobet__hero-content h1 {
        font-size: 2.2rem;
      }

      .page-jobet__hero-content p {
        font-size: 1rem;
      }

      .page-jobet__cta-button {
        font-size: 1.1rem;
        padding: 12px 25px;
      }

      .page-jobet__floating-button {
        font-size: 1rem;
        padding: 12px 20px;
        bottom: 15px;
        width: calc(100% - 30px);
        max-width: 350px;
      }

      .page-jobet__feature-list,
      .page-jobet__game-grid,
      .page-jobet__promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-jobet__feature-item,
      .page-jobet__game-card,
      .page-jobet__promo-card,
      .page-jobet__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jobet__feature-item p,
      .page-jobet__game-content p,
      .page-jobet__step-content p,
      .page-jobet__promo-card p,
      .page-jobet__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jobet__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-jobet__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-jobet__step-content h3 {
        text-align: center;
      }

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

      .page-jobet__faq-question h3 {
        font-size: 1.1rem;
      }

      .page-jobet__faq-toggle {
        font-size: 1.5rem;
      }

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

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

      .page-jobet__container,
      .page-jobet__section,
      .page-jobet__faq-list {
        padding-left: 0;
        padding-right: 0;
      }
    }
  