
    :root {
      --page-khuok9-bg-color: #1a1a1a;
      --page-khuok9-text-color: #ffffff;
      --page-khuok9-highlight-color: #ffd700; /* Gold/Yellow */
      --page-khuok9-dark-gray: #333333;
      --page-khuok9-light-gray: #cccccc;
    }

    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-khuok9-text-color);
      background-color: var(--page-khuok9-bg-color);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-khuok9 {
      max-width: 100%;
      overflow-x: hidden;
      background-color: var(--page-khuok9-bg-color);
    }

    .page-khuok9__hero-section {
      position: relative;
      text-align: center;
      padding-top: 10px; /* Vùng an toàn cho header cố định */
      padding-bottom: 40px;
      background-color: var(--page-khuok9-dark-gray);
      overflow: hidden; /* Đảm bảo hình ảnh không tràn */
    }

    .page-khuok9__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Đảm bảo hình ảnh giữ tỷ lệ và vừa vặn */
    }

    .page-khuok9__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      z-index: 10;
    }

    .page-khuok9__hero-title {
      color: var(--page-khuok9-highlight-color);
      font-size: 2.5em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-khuok9__hero-subtitle {
      color: var(--page-khuok9-text-color);
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-khuok9__button {
      display: inline-block;
      background-color: var(--page-khuok9-highlight-color);
      color: var(--page-khuok9-bg-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-khuok9__button:hover {
      background-color: #e0b800;
      transform: translateY(-2px);
    }

    .page-khuok9__section {
      padding: 40px 20px;
      text-align: center;
    }

    .page-khuok9__section--dark {
      background-color: var(--page-khuok9-dark-gray);
    }

    .page-khuok9__section-title {
      color: var(--page-khuok9-highlight-color);
      font-size: 2em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-khuok9__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-khuok9-highlight-color);
    }

    .page-khuok9__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-khuok9__card {
      background-color: var(--page-khuok9-dark-gray);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .page-khuok9__card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

    .page-khuok9__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-khuok9__card-title {
      color: var(--page-khuok9-highlight-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }
    
    .page-khuok9__card-title a {
      color: var(--page-khuok9-highlight-color);
      text-decoration: none;
    }

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

    .page-khuok9__card-description {
      color: var(--page-khuok9-light-gray);
      font-size: 0.95em;
      margin-bottom: 20px;
    }

    .page-khuok9__steps-list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

    .page-khuok9__step-item {
      background-color: var(--page-khuok9-dark-gray);
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-khuok9__step-number {
      background-color: var(--page-khuok9-highlight-color);
      color: var(--page-khuok9-bg-color);
      width: 40px;
      height: 40px;
      min-width: 40px; /* Ngăn chặn co lại */
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.3em;
      margin-right: 20px;
    }

    .page-khuok9__step-content h3 {
      color: var(--page-khuok9-highlight-color);
      margin-top: 0;
      margin-bottom: 5px;
      font-size: 1.3em;
    }

    .page-khuok9__step-content p {
      color: var(--page-khuok9-text-color);
      margin-bottom: 0;
    }

    .page-khuok9__game-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-khuok9__game-category-item {
      background-color: var(--page-khuok9-dark-gray);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 mục mỗi hàng trên desktop */
      min-width: 180px; /* Đảm bảo không quá nhỏ */
      max-width: 250px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-decoration: none; /* Đối với liên kết */
    }

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

    .page-khuok9__game-category-icon-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      display: flex; /* Để căn giữa */
      justify-content: center; /* Để căn giữa */
    }

    .page-khuok9__game-category-icon {
      max-width: 100%;
      height: auto;
      width: 120px; /* Chiều rộng cụ thể cho biểu tượng danh mục */
      height: 120px; /* Chiều cao cụ thể cho biểu tượng danh mục */
      object-fit: contain;
      border-radius: 50%; /* Tùy chọn: cho hình tròn */
    }

    .page-khuok9__game-category-name {
      color: var(--page-khuok9-highlight-color);
      font-weight: bold;
      font-size: 1.1em;
      margin-top: 10px;
      display: block; /* Đảm bảo nó là một khối cho margin */
    }

    .page-khuok9__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-khuok9__faq-item {
      background-color: var(--page-khuok9-dark-gray);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-khuok9__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid #3d3d3d;
      transition: background-color 0.3s ease;
    }

    .page-khuok9__faq-question:hover {
      background-color: #3d3d3d;
    }

    .page-khuok9__faq-question h3 {
      color: var(--page-khuok9-highlight-color);
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-khuok9__faq-toggle {
      color: var(--page-khuok9-highlight-color);
      font-size: 1.8em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }

    .page-khuok9__faq-item.active .page-khuok9__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc tương tự */
    }

    .page-khuok9__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      color: var(--page-khuok9-light-gray);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-khuok9__faq-item.active .page-khuok9__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px !important;
      opacity: 1;
    }
    
    .page-khuok9__cta-section {
        background-color: var(--page-khuok9-highlight-color);
        color: var(--page-khuok9-bg-color);
        padding: 50px 20px;
        text-align: center;
    }

    .page-khuok9__cta-title {
        font-size: 2.2em;
        margin-bottom: 15px;
        color: var(--page-khuok9-bg-color);
    }

    .page-khuok9__cta-text {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: var(--page-khuok9-dark-gray);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }


    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-khuok9__hero-title {
        font-size: 1.8em;
      }

      .page-khuok9__hero-subtitle {
        font-size: 1em;
      }

      .page-khuok9__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-khuok9__section {
        padding: 30px 15px;
      }

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

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

      .page-khuok9__step-item {
        flex-direction: column;
        align-items: flex-start;
      }

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

      .page-khuok9__game-category-item {
        flex: 1 1 calc(50% - 20px); /* 2 mục mỗi hàng trên di động */
        max-width: calc(50% - 20px);
      }
      
      .page-khuok9__game-category-icon {
          width: 90px;
          height: 90px;
      }

      .page-khuok9__faq-question {
        padding: 12px 15px;
      }

      .page-khuok9__faq-question h3 {
        font-size: 1em;
      }

      .page-khuok9__faq-answer {
        padding: 0 15px;
      }

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

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

      .page-khuok9__cta-text {
          font-size: 1em;
      }
      
      /* Khả năng đáp ứng hình ảnh cho di động */
      .page-khuok9 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-khuok9__card-image-container,
      .page-khuok9__game-category-icon-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-khuok9__game-category-item {
        flex: 1 1 100%; /* 1 mục mỗi hàng trên màn hình rất nhỏ */
        max-width: 100%;
      }
    }
  