
    /* Tổng quan */
    .page-canohu {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Nền đen */
      color: #fff; /* Chữ trắng */
      line-height: 1.6;
      overflow-x: hidden;
      max-width: 100vw;
    }

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

    /* Tiêu đề */
    .page-canohu__heading-primary {
      color: #FFD700; /* Vàng */
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      line-height: 1.2;
    }

    .page-canohu__heading-secondary {
      color: #FFD700;
      text-align: center;
      margin: 40px 0 20px;
      font-size: 2em;
      line-height: 1.3;
    }

    .page-canohu__heading-tertiary {
      color: #fff;
      margin: 30px 0 15px;
      font-size: 1.5em;
      line-height: 1.4;
    }

    /* Nút CTA */
    .page-canohu__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto;
      padding: 15px 30px;
      background-color: #FFD700; /* Vàng */
      color: #000;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Hero Section */
    .page-canohu__hero-section {
      background-color: #1a1a1a;
      padding-top: 140px; /* An toàn cho thanh điều hướng cố định */
      text-align: center;
      margin-bottom: 40px;
    }

    .page-canohu__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    .page-canohu__hero-content {
      padding: 30px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-canohu__hero-text {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 25px;
    }

    /* Phần Giới Thiệu */
    .page-canohu__intro-section {
      padding: 40px 0;
      background-color: #0d0d0d;
    }

    .page-canohu__intro-paragraph {
      margin-bottom: 20px;
      color: #ccc;
    }

    /* Phần Danh Mục Game */
    .page-canohu__game-category-section {
      padding: 40px 0;
    }

    .page-canohu__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-canohu__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-canohu__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }

    .page-canohu__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-canohu__game-card-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh */
      object-fit: cover;
      display: block;
    }

    .page-canohu__game-card-title {
      color: #FFD700;
      font-size: 1.3em;
      margin: 20px 15px 10px;
      text-decoration: none;
      pointer-events: auto; /* Đảm bảo link có thể click */
    }

    .page-canohu__game-card-description {
      color: #aaa;
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-canohu__game-card-link {
      display: inline-block;
      padding: 10px 20px;
      background-color: #FFD700;
      color: #000;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-canohu__game-card-link:hover {
      background-color: #e0b800;
    }

    /* Phần Hướng Dẫn */
    .page-canohu__guide-section {
      padding: 40px 0;
      background-color: #0d0d0d;
    }

    .page-canohu__guide-step-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-canohu__guide-step-item {
      background-color: #1a1a1a;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
    }

    .page-canohu__guide-step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-canohu__guide-step-content {
      flex-grow: 1;
    }

    .page-canohu__guide-step-title {
      color: #FFD700;
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-canohu__guide-step-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Phần Khuyến Mãi */
    .page-canohu__promotion-section {
      padding: 40px 0;
    }

    .page-canohu__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-canohu__promotion-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-canohu__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }

    .page-canohu__promotion-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-canohu__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

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

    .page-canohu__promotion-title {
      color: #FFD700;
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-canohu__promotion-description {
      color: #ccc;
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-canohu__promotion-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #FFD700;
      color: #000;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      align-self: flex-start;
      transition: background-color 0.3s ease;
    }

    .page-canohu__promotion-button:hover {
      background-color: #e0b800;
    }

    /* Phần Lý Do Chọn W88 */
    .page-canohu__why-choose-section {
      padding: 40px 0;
      background-color: #0d0d0d;
    }

    .page-canohu__reason-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-canohu__reason-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .page-canohu__reason-item:hover {
      background-color: #2a2a2a;
    }

    .page-canohu__reason-icon {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-canohu__reason-title {
      color: #FFD700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-canohu__reason-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Phần Câu Hỏi Thường Gặp (FAQ) */
    .page-canohu__faq-section {
      padding: 40px 0;
    }

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

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

    .page-canohu__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-canohu__faq-question h3 {
      margin: 0;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      font-size: 1em; /* Giữ kích thước font của h3 như parent */
    }

    .page-canohu__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      color: #fff;
    }

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

    .page-canohu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      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-canohu__faq-item.active .page-canohu__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive cho hình ảnh */
    .page-canohu__game-card-image-wrapper img,
    .page-canohu__promotion-image-wrapper img,
    .page-canohu__hero-section img {
      max-width: 100%;
      height: auto;
    }

    /* Media Queries cho di động */
    @media (max-width: 768px) {
      .page-canohu__hero-section {
        padding-top: 140px; /* An toàn cho thanh điều hướng cố định */
      }
      .page-canohu__heading-primary {
        font-size: 1.8em;
      }

      .page-canohu__heading-secondary {
        font-size: 1.5em;
      }

      .page-canohu__heading-tertiary {
        font-size: 1.2em;
      }

      .page-canohu__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-canohu__hero-content {
        padding: 20px 10px;
      }

      .page-canohu__hero-text {
        font-size: 1em;
      }

      .page-canohu__game-grid,
      .page-canohu__promotion-grid,
      .page-canohu__reason-list {
        grid-template-columns: 1fr;
      }

      .page-canohu__game-card-image {
        height: 180px;
      }

      .page-canohu__promotion-image {
        height: 180px;
      }

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

      .page-canohu__guide-step-number {
        margin-bottom: 10px;
      }

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

      .page-canohu__faq-answer {
        padding: 0 20px;
        font-size: 0.9em;
      }

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

      /* Responsive cho hình ảnh (quan trọng) */
      .page-canohu__game-card-image-wrapper,
      .page-canohu__promotion-image-wrapper,
      .page-canohu__hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-canohu__game-card-image,
      .page-canohu__promotion-image,
      .page-canohu__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  