
      /* style//blog/explore-card-games.css */
      /* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */

      .page--blog-explore-card-games {
        font-family: 'Arial', sans-serif;
        color: #333333; /* Default text color for light body background */
        line-height: 1.6;
        background-color: #f8f9fa;
      }

      .page--blog-explore-card-games__hero-section {
        position: relative;
        width: 100%;
        padding: 10px 0 40px 0; /* Nhỏ hơn để tránh trùng lặp với padding-top của body */
        background-color: #e0f2f7;
        text-align: center;
        overflow: hidden;
      }

      .page--blog-explore-card-games__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
      }

      .page--blog-explore-card-games__hero-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 8px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .page--blog-explore-card-games__hero-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .page--blog-explore-card-games__main-title {
        font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
        font-weight: 700;
        color: #2563eb;
        margin-bottom: 15px;
        line-height: 1.2;
        letter-spacing: -0.02em;
      }

      .page--blog-explore-card-games__subtitle {
        font-size: clamp(1em, 2.5vw, 1.3em);
        color: #64748b;
        margin-bottom: 30px;
      }

      .page--blog-explore-card-games__cta-button {
        display: inline-block;
        background-color: #2563eb;
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        border: none;
        cursor: pointer;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
      }

      .page--blog-explore-card-games__cta-button:hover {
        background-color: #1a4aae;
        transform: translateY(-2px);
      }

      .page--blog-explore-card-games__section {
        padding: 60px 20px;
        background-color: #ffffff;
        border-bottom: 1px solid #e0e0e0;
      }

      .page--blog-explore-card-games__section--alt {
        background-color: #f0f8ff;
      }

      .page--blog-explore-card-games__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
      }

      .page--blog-explore-card-games__heading {
        font-size: clamp(1.8em, 4vw, 2.5em);
        color: #2563eb;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 700;
      }

      .page--blog-explore-card-games__text-block {
        margin-bottom: 20px;
        font-size: 1.05em;
        color: #333333;
      }

      .page--blog-explore-card-games__text-block p {
        margin-bottom: 15px;
      }

      .page--blog-explore-card-games__text-block ul {
        list-style: disc inside;
        margin-bottom: 15px;
        padding-left: 20px;
      }

      .page--blog-explore-card-games__text-block li {
        margin-bottom: 8px;
        box-sizing: border-box;
      }

      .page--blog-explore-card-games__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .page--blog-explore-card-games__game-card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        color: #333333;
      }

      .page--blog-explore-card-games__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .page--blog-explore-card-games__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
      }

      .page--blog-explore-card-games__card-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .page--blog-explore-card-games__card-title {
        font-size: 1.4em;
        font-weight: 600;
        color: #2563eb;
        margin-bottom: 10px;
      }

      .page--blog-explore-card-games__card-description {
        font-size: 0.95em;
        color: #555555;
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .page--blog-explore-card-games__card-link {
        display: inline-block;
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
      }

      .page--blog-explore-card-games__card-link:hover {
        color: #1a4aae;
        text-decoration: underline;
      }

      .page--blog-explore-card-games__faq-section {
        background-color: #e0f2f7;
      }

      .page--blog-explore-card-games__faq-item {
        background-color: #ffffff;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
      }

      .page--blog-explore-card-games__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        font-size: 1.15em;
        font-weight: 600;
        color: #2563eb;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
      }

      .page--blog-explore-card-games__faq-question h3 {
        margin: 0;
        padding: 0;
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event */
      }

      .page--blog-explore-card-games__faq-question:hover {
        background-color: #f0f8ff;
      }

      .page--blog-explore-card-games__faq-toggle {
        font-size: 1.5em;
        font-weight: 400;
        color: #64748b;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        transition: transform 0.3s ease;
      }

      .page--blog-explore-card-games__faq-item.active .page--blog-explore-card-games__faq-toggle {
        transform: rotate(45deg);
      }

      .page--blog-explore-card-games__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: #555555;
        font-size: 1em;
      }

      .page--blog-explore-card-games__faq-item.active .page--blog-explore-card-games__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
      }

      .page--blog-explore-card-games__button-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
      }

      .page--blog-explore-card-games__secondary-button {
        display: inline-block;
        background-color: #ffffff;
        color: #2563eb;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1em;
        border: 2px solid #2563eb;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        cursor: pointer;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
      }

      .page--blog-explore-card-games__secondary-button:hover {
        background-color: #2563eb;
        color: #ffffff;
        transform: translateY(-2px);
      }

      .page--blog-explore-card-games img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
      }

      /* Responsive styles */
      @media (max-width: 768px) {
        .page--blog-explore-card-games {
          font-size: 16px;
          line-height: 1.6;
        }

        .page--blog-explore-card-games__hero-section {
          padding: 10px 0 30px 0;
        }

        .page--blog-explore-card-games__main-title {
          font-size: 2em;
        }

        .page--blog-explore-card-games__subtitle {
          font-size: 1em;
        }

        .page--blog-explore-card-games__cta-button,
        .page--blog-explore-card-games__secondary-button {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          white-space: normal !important;
          word-wrap: break-word !important;
          padding-left: 15px;
          padding-right: 15px;
        }

        .page--blog-explore-card-games__button-group {
          flex-direction: column;
          align-items: center;
          gap: 15px;
          padding: 0 15px;
        }

        .page--blog-explore-card-games__section {
          padding: 40px 15px;
        }

        .page--blog-explore-card-games__heading {
          font-size: 1.8em;
          margin-bottom: 30px;
        }

        .page--blog-explore-card-games__game-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .page--blog-explore-card-games__game-image {
          height: 180px;
        }

        .page--blog-explore-card-games__card-content {
          padding: 20px;
        }

        .page--blog-explore-card-games__card-title {
          font-size: 1.2em;
        }

        .page--blog-explore-card-games__card-description {
          font-size: 0.9em;
        }

        .page--blog-explore-card-games__faq-question {
          font-size: 1em;
          padding: 15px 20px;
        }

        .page--blog-explore-card-games__faq-answer {
          padding: 15px 20px !important;
        }

        /* 图片响应式 */
        .page--blog-explore-card-games img {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
        }

        .page--blog-explore-card-games__hero-image-wrapper,
        .page--blog-explore-card-games__container,
        .page--blog-explore-card-games__game-card,
        .page--blog-explore-card-games__faq-item,
        .page--blog-explore-card-games__text-block ul,
        .page--blog-explore-card-games__text-block li {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 15px;
          padding-right: 15px;
        }

        .page--blog-explore-card-games__text-block ul {
          padding-left: 35px;
        }

        .page--blog-explore-card-games__text-block li {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
        }
      }

      @media (min-width: 769px) {
        .page--blog-explore-card-games__hero-image {
          height: 500px;
        }
      }
    