
      /* style/resources-hm888-game-strategies.css */
      :root {
          --primary-color: #2563eb;
          --secondary-color: #64748b;
          --text-dark: #333333;
          --text-light: #ffffff;
          --bg-light: #f8f9fa;
          --bg-white: #ffffff;
          --border-color: #e0e0e0;
      }

      .page-resources-hm888-game-strategies {
          font-family: 'Arial', sans-serif;
          color: var(--text-dark);
          line-height: 1.6;
          background-color: var(--bg-light);
      }

      .page-resources-hm888-game-strategies__hero-section {
          position: relative;
          width: 100%;
          padding: 10px 0 40px 0;
          background-color: var(--primary-color);
          color: var(--text-light);
          text-align: center;
          overflow: hidden;
      }

      .page-resources-hm888-game-strategies__hero-image-container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 20px;
      }

      .page-resources-hm888-game-strategies__hero-image {
          width: 100%;
          height: auto;
          display: block;
          border-radius: 8px;
          object-fit: cover;
      }

      .page-resources-hm888-game-strategies__hero-content {
          max-width: 900px;
          margin: 0 auto;
          padding: 0 20px;
      }

      .page-resources-hm888-game-strategies__main-title {
          font-weight: 700;
          line-height: 1.2;
          letter-spacing: -0.02em;
          margin-bottom: 15px;
          color: var(--text-light);
      }

      .page-resources-hm888-game-strategies__subtitle {
          font-size: 1.15em;
          margin-bottom: 30px;
          color: var(--text-light);
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
      }

      .page-resources-hm888-game-strategies__cta-button {
          display: inline-block;
          background-color: var(--secondary-color);
          color: var(--text-light);
          padding: 12px 28px;
          border-radius: 25px;
          text-decoration: none;
          font-weight: 600;
          transition: background-color 0.3s ease, transform 0.2s ease;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          margin-top: 20px;
          max-width: 100%;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-resources-hm888-game-strategies__cta-button:hover {
          background-color: #5a687a;
          transform: translateY(-2px);
      }

      .page-resources-hm888-game-strategies__section {
          padding: 60px 20px;
          max-width: 1200px;
          margin: 0 auto;
          background-color: var(--bg-white);
          border-radius: 8px;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
          margin-bottom: 30px;
      }

      .page-resources-hm888-game-strategies__section:first-of-type {
          margin-top: -80px; /* Overlap with hero for visual effect */
      }

      .page-resources-hm888-game-strategies__section-title {
          font-size: 2.2em;
          color: var(--primary-color);
          margin-bottom: 30px;
          text-align: center;
          font-weight: 700;
      }

      .page-resources-hm888-game-strategies__subsection-title {
          font-size: 1.6em;
          color: var(--text-dark);
          margin-top: 40px;
          margin-bottom: 20px;
          font-weight: 600;
          border-bottom: 2px solid var(--primary-color);
          padding-bottom: 10px;
      }

      .page-resources-hm888-game-strategies__content-text {
          font-size: 1.05em;
          margin-bottom: 20px;
          color: var(--text-dark);
      }

      .page-resources-hm888-game-strategies__image-wrapper {
          margin: 30px 0;
          text-align: center;
      }

      .page-resources-hm888-game-strategies__image {
          width: 100%;
          height: auto;
          display: block;
          border-radius: 8px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          object-fit: cover;
      }

      .page-resources-hm888-game-strategies__list {
          list-style: disc;
          margin-left: 25px;
          margin-bottom: 20px;
          color: var(--text-dark);
      }

      .page-resources-hm888-game-strategies__list-item {
          margin-bottom: 10px;
          font-size: 1.05em;
      }

      .page-resources-hm888-game-strategies__game-strategy-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-top: 30px;
      }

      .page-resources-hm888-game-strategies__game-card {
          background-color: var(--bg-light);
          border-radius: 10px;
          padding: 25px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          color: var(--text-dark);
      }

      .page-resources-hm888-game-strategies__game-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      }

      .page-resources-hm888-game-strategies__game-card-title {
          font-size: 1.4em;
          color: var(--primary-color);
          margin-bottom: 15px;
          font-weight: 600;
      }

      .page-resources-hm888-game-strategies__game-card-text {
          font-size: 0.95em;
          margin-bottom: 15px;
          flex-grow: 1;
      }

      .page-resources-hm888-game-strategies__game-card-link {
          display: inline-block;
          color: var(--primary-color);
          text-decoration: none;
          font-weight: 600;
          transition: color 0.3s ease;
      }

      .page-resources-hm888-game-strategies__game-card-link:hover {
          color: var(--secondary-color);
          text-decoration: underline;
      }

      .page-resources-hm888-game-strategies__promo-banner {
          background: linear-gradient(90deg, var(--primary-color) 0%, #3a7afc 100%);
          color: var(--text-light);
          padding: 40px 20px;
          text-align: center;
          border-radius: 8px;
          margin-bottom: 30px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      }

      .page-resources-hm888-game-strategies__promo-title {
          font-size: 2em;
          margin-bottom: 15px;
          font-weight: 700;
      }

      .page-resources-hm888-game-strategies__promo-text {
          font-size: 1.1em;
          margin-bottom: 25px;
      }

      .page-resources-hm888-game-strategies__promo-button {
          background-color: #ffcc00;
          color: var(--text-dark);
          padding: 14px 32px;
          border-radius: 28px;
          text-decoration: none;
          font-weight: 700;
          transition: background-color 0.3s ease, transform 0.2s ease;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          max-width: 100%;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-resources-hm888-game-strategies__promo-button:hover {
          background-color: #e6b800;
          transform: translateY(-2px);
      }

      .page-resources-hm888-game-strategies__faq-section {
          background-color: var(--bg-white);
          padding: 60px 20px;
          max-width: 1200px;
          margin: 0 auto 30px auto;
          border-radius: 8px;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
      }

      .page-resources-hm888-game-strategies__faq-item {
          background-color: var(--bg-light);
          border-radius: 8px;
          margin-bottom: 15px;
          overflow: hidden;
          border: 1px solid var(--border-color);
      }

      .page-resources-hm888-game-strategies__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 18px 25px;
          font-size: 1.15em;
          font-weight: 600;
          color: var(--text-dark);
          cursor: pointer;
          background-color: var(--bg-white);
          transition: background-color 0.3s ease;
          user-select: none;
      }

      .page-resources-hm888-game-strategies__faq-question h3 {
          margin: 0;
          font-size: inherit;
          font-weight: inherit;
          color: inherit;
          pointer-events: none;
          flex-grow: 1;
      }

      .page-resources-hm888-game-strategies__faq-question:hover {
          background-color: #f0f0f0;
      }

      .page-resources-hm888-game-strategies__faq-toggle {
          font-size: 1.5em;
          line-height: 1;
          margin-left: 15px;
          pointer-events: none;
          color: var(--primary-color);
      }

      .page-resources-hm888-game-strategies__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: var(--text-dark);
      }

      .page-resources-hm888-game-strategies__faq-item.active .page-resources-hm888-game-strategies__faq-answer {
          max-height: 2000px !important;
          padding: 20px 25px !important;
          opacity: 1;
      }

      .page-resources-hm888-game-strategies__final-cta {
          text-align: center;
          padding: 40px 20px;
          background-color: var(--primary-color);
          color: var(--text-light);
          border-radius: 8px;
          max-width: 1200px;
          margin: 0 auto 60px auto;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      }

      .page-resources-hm888-game-strategies__final-cta-title {
          font-size: 2.5em;
          margin-bottom: 20px;
          font-weight: 700;
      }

      .page-resources-hm888-game-strategies__final-cta-text {
          font-size: 1.2em;
          margin-bottom: 30px;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
      }

      .page-resources-hm888-game-strategies__contact-link {
          color: #ffcc00;
          text-decoration: underline;
          font-weight: 600;
      }

      .page-resources-hm888-game-strategies a {
          color: var(--primary-color);
          text-decoration: none;
      }

      .page-resources-hm888-game-strategies a:hover {
          text-decoration: underline;
      }

      @media (max-width: 1024px) {
          .page-resources-hm888-game-strategies__section-title {
              font-size: 2em;
          }
          .page-resources-hm888-game-strategies__game-strategy-grid {
              grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          }
      }

      @media (max-width: 768px) {
          .page-resources-hm888-game-strategies {
              font-size: 16px;
              line-height: 1.6;
          }
          .page-resources-hm888-game-strategies__hero-section {
              padding-top: 10px !important;
              padding-bottom: 30px;
          }
          .page-resources-hm888-game-strategies__main-title {
              font-size: 2em;
          }
          .page-resources-hm888-game-strategies__subtitle {
              font-size: 1em;
              padding: 0 15px;
          }
          .page-resources-hm888-game-strategies__section {
              padding: 30px 15px;
              margin-top: -60px;
              margin-bottom: 20px;
          }
          .page-resources-hm888-game-strategies__section-title {
              font-size: 1.8em;
          }
          .page-resources-hm888-game-strategies__subsection-title {
              font-size: 1.4em;
          }
          .page-resources-hm888-game-strategies__game-strategy-grid {
              grid-template-columns: 1fr;
              gap: 20px;
          }
          .page-resources-hm888-game-strategies__promo-banner {
              padding: 30px 15px;
          }
          .page-resources-hm888-game-strategies__promo-title {
              font-size: 1.8em;
          }
          .page-resources-hm888-game-strategies__promo-text {
              font-size: 1em;
          }
          .page-resources-hm888-game-strategies__faq-section {
              padding: 30px 15px;
              margin-bottom: 20px;
          }
          .page-resources-hm888-game-strategies__faq-question {
              font-size: 1em;
              padding: 15px 20px;
          }
          .page-resources-hm888-game-strategies__faq-answer {
              padding: 0 20px;
          }
          .page-resources-hm888-game-strategies__faq-item.active .page-resources-hm888-game-strategies__faq-answer {
              padding: 15px 20px !important;
          }
          .page-resources-hm888-game-strategies__final-cta {
              padding: 30px 15px;
              margin-bottom: 40px;
          }
          .page-resources-hm888-game-strategies__final-cta-title {
              font-size: 2em;
          }
          .page-resources-hm888-game-strategies__final-cta-text {
              font-size: 1.1em;
          }

          /* Mobile image responsiveness */
          .page-resources-hm888-game-strategies img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            display: block !important;
          }
          .page-resources-hm888-game-strategies__hero-image-container,
          .page-resources-hm888-game-strategies__image-wrapper,
          .page-resources-hm888-game-strategies__section,
          .page-resources-hm888-game-strategies__game-card,
          .page-resources-hm888-game-strategies__promo-banner,
          .page-resources-hm888-game-strategies__faq-section,
          .page-resources-hm888-game-strategies__final-cta {
            max-width: 100% !important;
            width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 15px;
            padding-right: 15px;
            overflow: hidden !important;
          }

          /* Mobile button responsiveness */
          .page-resources-hm888-game-strategies__cta-button,
          .page-resources-hm888-game-strategies__promo-button,
          .page-resources-hm888-game-strategies a[class*="button"],
          .page-resources-hm888-game-strategies a[class*="btn"] {
            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-resources-hm888-game-strategies__button-group {
            max-width: 100% !important;
            width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 15px;
            padding-right: 15px;
            flex-wrap: wrap !important;
            gap: 10px;
            overflow: hidden !important;
          }

          /* Mobile list item responsiveness */
          .page-resources-hm888-game-strategies__list {
            margin-left: 0 !important;
            padding-left: 20px !important; /* Keep some indent for list items */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
          }
          .page-resources-hm888-game-strategies__list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
          }
      }
    