
      :root {
          --page-gem88__primary-color: #26A9E0;
          --page-gem88__secondary-color: #FFFFFF;
          --page-gem88__login-button-color: #EA7C07;
          --page-gem88__background-color: #FFFFFF;
          --page-gem88__text-color-dark: #333333;
          --page-gem88__text-color-light: #FFFFFF;
      }

      /* General styles */
      .page-gem88 {
          font-family: 'Arial', sans-serif;
          color: var(--page-gem88__text-color-dark);
          background-color: var(--page-gem88__background-color);
          line-height: 1.6;
      }

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

      .page-gem88__section {
          padding: 60px 20px;
          text-align: center;
      }

      .page-gem88__section--dark {
          background-color: var(--page-gem88__primary-color);
          color: var(--page-gem88__text-color-light);
      }

      .page-gem88__section-title {
          font-size: 2.8em;
          margin-bottom: 20px;
          font-weight: bold;
          color: var(--page-gem88__primary-color);
      }

      .page-gem88__section--dark .page-gem88__section-title {
          color: var(--page-gem88__text-color-light);
      }

      .page-gem88__section-subtitle {
          font-size: 1.2em;
          margin-bottom: 40px;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
      }

      /* Buttons */
      .page-gem88__btn-primary,
      .page-gem88__btn-secondary,
      .page-gem88__btn-login-floating {
          display: inline-block;
          padding: 15px 30px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: bold;
          transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
          cursor: pointer;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
          max-width: 100%;
      }

      .page-gem88__btn-primary {
          background-color: var(--page-gem88__primary-color);
          color: var(--page-gem88__text-color-light);
          border: 2px solid var(--page-gem88__primary-color);
      }

      .page-gem88__btn-primary:hover {
          background-color: darken(var(--page-gem88__primary-color), 10%);
          border-color: darken(var(--page-gem88__primary-color), 10%);
      }

      .page-gem88__btn-secondary {
          background-color: var(--page-gem88__secondary-color);
          color: var(--page-gem88__primary-color);
          border: 2px solid var(--page-gem88__primary-color);
          margin-left: 15px;
      }

      .page-gem88__btn-secondary:hover {
          background-color: var(--page-gem88__primary-color);
          color: var(--page-gem88__secondary-color);
      }

      /* Hero Section */
      .page-gem88__hero-section {
          position: relative;
          width: 100%;
          overflow: hidden;
          text-align: center;
          padding-top: 10px; /* Small top padding, body handles header offset */
          padding-bottom: 60px;
          background-color: var(--page-gem88__primary-color);
      }

      .page-gem88__hero-image-wrapper {
          width: 100%;
          max-width: 100%;
          margin: 0 auto;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
      }

      .page-gem88__hero-image {
          width: 100%;
          height: auto;
          object-fit: cover;
          display: block;
      }

      .page-gem88__hero-content {
          position: relative;
          z-index: 10;
          color: var(--page-gem88__text-color-light);
          padding: 20px;
          max-width: 900px;
          margin: 0 auto;
      }

      .page-gem88__hero-title {
          font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size */
          font-weight: 900;
          margin-bottom: 15px;
          line-height: 1.2;
      }

      .page-gem88__hero-description {
          font-size: 1.1em;
          margin-bottom: 30px;
          opacity: 0.9;
      }

      .page-gem88__hero-cta-buttons {
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
      }

      /* Why Choose Section */
      .page-gem88__features-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
          margin-top: 40px;
      }

      .page-gem88__feature-card {
          background-color: var(--page-gem88__secondary-color);
          border-radius: 12px;
          padding: 30px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          text-align: left;
          transition: transform 0.3s ease;
          color: var(--page-gem88__text-color-dark);
          min-height: 250px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
      }

      .page-gem88__feature-card:hover {
          transform: translateY(-10px);
      }

      .page-gem88__feature-icon {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          display: block;
      }

      .page-gem88__feature-title {
          font-size: 1.5em;
          font-weight: bold;
          margin-bottom: 10px;
          color: var(--page-gem88__primary-color);
      }

      .page-gem88__feature-description {
          font-size: 0.95em;
          line-height: 1.5;
      }

      /* Game Showcase Section */
      .page-gem88__game-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 30px;
          margin-top: 40px;
      }

      .page-gem88__game-card {
          background-color: var(--page-gem88__secondary-color);
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          overflow: hidden;
          text-align: center;
          transition: transform 0.3s ease;
          color: var(--page-gem88__text-color-dark);
          display: flex;
          flex-direction: column;
      }

      .page-gem88__game-card:hover {
          transform: translateY(-10px);
      }

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

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

      .page-gem88__game-title {
          font-size: 1.3em;
          font-weight: bold;
          margin-bottom: 10px;
          color: var(--page-gem88__primary-color);
      }

      .page-gem88__game-description {
          font-size: 0.9em;
          line-height: 1.5;
          margin-bottom: 15px;
          flex-grow: 1;
      }

      /* Promotions Section */
      .page-gem88__promo-card {
          background-color: var(--page-gem88__primary-color);
          color: var(--page-gem88__text-color-light);
          border-radius: 12px;
          padding: 40px;
          margin-top: 40px;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
      }

      .page-gem88__promo-image {
          width: 100%;
          max-width: 600px;
          height: auto;
          border-radius: 8px;
          margin-bottom: 30px;
          display: block;
      }

      .page-gem88__promo-title {
          font-size: 2.2em;
          font-weight: bold;
          margin-bottom: 15px;
          line-height: 1.2;
      }

      .page-gem88__promo-description {
          font-size: 1.1em;
          margin-bottom: 30px;
          opacity: 0.9;
          max-width: 700px;
      }

      .page-gem88__promo-button-group {
          display: flex;
          gap: 20px;
          flex-wrap: wrap;
          justify-content: center;
      }

      /* How-to Section */
      .page-gem88__steps-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-top: 40px;
      }

      .page-gem88__step-card {
          background-color: var(--page-gem88__secondary-color);
          border-radius: 12px;
          padding: 30px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
          text-align: left;
          color: var(--page-gem88__text-color-dark);
          display: flex;
          flex-direction: column;
      }

      .page-gem88__step-number {
          font-size: 2.5em;
          font-weight: bold;
          color: var(--page-gem88__primary-color);
          margin-bottom: 15px;
      }

      .page-gem88__step-title {
          font-size: 1.4em;
          font-weight: bold;
          margin-bottom: 10px;
      }

      .page-gem88__step-description {
          font-size: 0.95em;
          line-height: 1.5;
      }

      /* FAQ Section */
      .page-gem88__faq-list {
          margin-top: 40px;
          text-align: left;
      }

      .page-gem88__faq-item {
          background-color: var(--page-gem88__secondary-color);
          border-radius: 8px;
          margin-bottom: 15px;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          overflow: hidden;
          color: var(--page-gem88__text-color-dark);
      }

      .page-gem88__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 20px;
          font-size: 1.15em;
          font-weight: bold;
          cursor: pointer;
          user-select: none;
          color: var(--page-gem88__primary-color);
      }

      .page-gem88__faq-question:hover {
          background-color: #f5f5f5;
      }

      .page-gem88__faq-question h3 {
          margin: 0;
          font-size: 1.15em;
          color: var(--page-gem88__primary-color);
          pointer-events: none; /* Prevent h3 from blocking click event */
      }

      .page-gem88__faq-toggle {
          font-size: 1.5em;
          font-weight: bold;
          line-height: 1;
          margin-left: 15px;
          color: var(--page-gem88__primary-color);
          pointer-events: none; /* Prevent toggle icon from blocking click event */
      }

      .page-gem88__faq-answer {
          max-height: 0;
          overflow: hidden;
          padding: 0 20px;
          opacity: 0;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
          font-size: 0.95em;
          line-height: 1.6;
          color: var(--page-gem88__text-color-dark);
      }

      .page-gem88__faq-item.active .page-gem88__faq-answer {
          max-height: 2000px !important; /* Sufficiently large */
          padding: 20px !important;
          opacity: 1;
      }

      /* Floating Login Button */
      .page-gem88__login-floating-button-wrapper {
          position: fixed;
          bottom: 20px;
          right: 20px;
          z-index: 1000;
          text-align: center;
          width: auto;
          max-width: 100%;
          box-sizing: border-box;
      }

      .page-gem88__btn-login-floating {
          background-color: var(--page-gem88__login-button-color);
          color: var(--page-gem88__text-color-light);
          border: 2px solid var(--page-gem88__login-button-color);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          animation: pulse 2s infinite;
          padding: 12px 25px;
          font-size: 1.1em;
      }

      .page-gem88__btn-login-floating:hover {
          background-color: darken(var(--page-gem88__login-button-color), 10%);
          border-color: darken(var(--page-gem88__login-button-color), 10%);
      }

      @keyframes pulse {
          0% { transform: scale(1); }
          50% { transform: scale(1.05); }
          100% { transform: scale(1); }
      }

      /* Responsive design */
      @media (max-width: 1024px) {
          .page-gem88__section-title {
              font-size: 2.2em;
          }
          .page-gem88__hero-title {
              font-size: clamp(2em, 4.5vw, 3.2em);
          }
      }

      @media (max-width: 768px) {
          .page-gem88 {
              font-size: 16px;
              line-height: 1.6;
          }
          .page-gem88__section {
              padding: 40px 15px;
          }
          .page-gem88__section-title {
              font-size: 1.8em;
          }
          .page-gem88__section-subtitle {
              font-size: 1em;
          }
          .page-gem88__hero-content {
              padding: 15px;
          }
          .page-gem88__hero-title {
              font-size: clamp(1.8em, 6vw, 2.5em);
          }
          .page-gem88__hero-description {
              font-size: 1em;
          }
          .page-gem88__hero-cta-buttons {
              flex-direction: column;
              gap: 10px;
          }
          .page-gem88__btn-primary,
          .page-gem88__btn-secondary,
          .page-gem88__btn-login-floating {
              width: 100% !important;
              max-width: 100% !important;
              padding: 12px 20px;
              font-size: 1em;
              margin-left: 0 !important;
          }
          .page-gem88__features-grid,
          .page-gem88__game-grid,
          .page-gem88__steps-grid {
              grid-template-columns: 1fr;
          }
          .page-gem88__feature-card,
          .page-gem88__game-card,
          .page-gem88__step-card {
              padding: 20px;
          }
          .page-gem88__game-image {
              height: 180px;
          }
          .page-gem88__promo-card {
              padding: 30px 20px;
          }
          .page-gem88__promo-title {
              font-size: 1.8em;
          }
          .page-gem88__promo-description {
              font-size: 1em;
          }
          .page-gem88__promo-button-group {
              flex-direction: column;
              gap: 10px;
          }
          .page-gem88__faq-question {
              font-size: 1em;
              padding: 15px;
          }
          .page-gem88__faq-question h3 {
              font-size: 1em;
          }
          .page-gem88__faq-answer {
              padding: 15px !important;
              font-size: 0.9em;
          }
          .page-gem88__login-floating-button-wrapper {
              bottom: 15px;
              right: 15px;
              left: 15px;
              width: auto;
          }

          /* Mobile image responsiveness */
          .page-gem88 img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            display: block !important;
          }
          .page-gem88__section,
          .page-gem88__card,
          .page-gem88__container,
          .page-gem88__hero-image-wrapper,
          .page-gem88__hero-content,
          .page-gem88__hero-cta-buttons,
          .page-gem88__features-grid,
          .page-gem88__feature-card,
          .page-gem88__game-grid,
          .page-gem88__game-card,
          .page-gem88__game-content,
          .page-gem88__promo-card,
          .page-gem88__promo-button-group,
          .page-gem88__steps-grid,
          .page-gem88__step-card,
          .page-gem88__faq-list,
          .page-gem88__faq-item,
          .page-gem88__faq-question,
          .page-gem88__faq-answer {
            max-width: 100% !important;
            width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 15px;
            padding-right: 15px;
            overflow: hidden !important; /* Ensure no overflow */
          }
          .page-gem88__hero-section {
            padding-top: 10px !important;
          }
          .page-gem88 ul,
          .page-gem88 ol {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              padding: 0 15px !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
          }
          .page-gem88 ul li,
          .page-gem88 ol li {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              word-wrap: break-word !important;
              overflow-wrap: break-word !important;
              word-break: break-word !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
          }
      }
    