
    .page-gme777-app {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined, only if body padding is not applied by shared.css */
    }

    /* Adjust padding-top for the first section if body already has padding-top */
    .page-gme777-app__hero-section {
      padding-top: 10px; /* Small top padding for aesthetics, assuming body handles main offset */
    }

    .page-gme777-app__section-title {
      text-align: center;
      font-size: 2.5em;
      color: #0056b3; /* Dark blue for titles */
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: 700;
    }

    .page-gme777-app__section-description {
      text-align: center;
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 50px auto;
      color: #555;
    }

    /* Hero Section */
    .page-gme777-app__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #0056b3, #007bff); /* Blue gradient */
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-gme777-app__hero-content {
      max-width: 900px;
      z-index: 1;
      position: relative;
    }

    .page-gme777-app__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }

    .page-gme777-app__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

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

    .page-gme777-app__download-button {
      background-color: #ffc107; /* Gold/yellow for CTA */
      color: #333;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-gme777-app__download-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-gme777-app__hero-image-container {
      position: absolute;
      bottom: -50px; /* Adjust to show partial image */
      right: -100px;
      width: 50%;
      max-width: 800px;
      opacity: 0.2;
      z-index: 0;
      pointer-events: none;
    }

    .page-gme777-app__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Features Section */
    .page-gme777-app__features-section {
      padding: 80px 20px;
      background-color: #fff;
    }

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

    .page-gme777-app__feature-item {
      background-color: #f0f8ff; /* Light blue background */
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-gme777-app__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-gme777-app__feature-icon {
      width: 200px; /* Min size */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 8px;
      max-width: 100%; /* Responsive image */
    }

    .page-gme777-app__feature-title {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-gme777-app__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Download Guide Section */
    .page-gme777-app__download-guide-section {
      padding: 80px 20px;
      background-color: #e6f2ff; /* Lighter blue background */
    }

    .page-gme777-app__download-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      gap: 15px;
      flex-wrap: wrap;
    }

    .page-gme777-app__tab-button {
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      font-weight: 600;
    }

    .page-gme777-app__tab-button:hover {
      background-color: #0056b3;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-gme777-app__tab-button.active {
      background-color: #ffc107; /* Active tab gold */
      color: #333;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-gme777-app__tab-content {
      display: none;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-gme777-app__tab-content.active {
      display: block;
    }

    .page-gme777-app__guide-step {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 60px;
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-gme777-app__guide-step:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-gme777-app__step-image-container {
      flex-shrink: 0;
      width: 300px; /* Fixed width for phone screenshot */
      height: auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Ensure padding/border is included */
      max-width: 100%; /* Responsive image container */
    }

    .page-gme777-app__step-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-gme777-app__step-text {
      flex-grow: 1;
    }

    .page-gme777-app__step-title {
      font-size: 1.9em;
      color: #0056b3;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-gme777-app__step-description {
      font-size: 1.1em;
      color: #555;
    }

    /* Game Section */
    .page-gme777-app__game-section {
      padding: 80px 20px;
      background-color: #f9f9f9;
    }

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

    .page-gme777-app__game-card {
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-gme777-app__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-gme777-app__game-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-gme777-app__game-card h3,
    .page-gme777-app__game-card p {
      padding: 0 20px;
    }

    .page-gme777-app__game-title {
      font-size: 1.8em;
      color: #0056b3;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-gme777-app__game-provider {
      font-size: 0.9em;
      color: #888;
      margin-bottom: 15px;
    }

    .page-gme777-app__game-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    /* Promotions Section */
    .page-gme777-app__promo-section {
      padding: 80px 20px;
      background-color: #fff;
    }

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

    .page-gme777-app__promo-card {
      background-color: #f0f8ff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-gme777-app__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-gme777-app__promo-image {
      width: 100%;
      height: 220px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-gme777-app__promo-card h3,
    .page-gme777-app__promo-card p {
      padding: 0 20px;
    }

    .page-gme777-app__promo-title {
      font-size: 1.8em;
      color: #0056b3;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-gme777-app__promo-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-gme777-app__faq-section {
      padding: 80px 20px;
      background-color: #e6f2ff;
    }

    .page-gme777-app__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-gme777-app__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-gme777-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #007bff;
      color: #fff;
      font-size: 1.2em;
      font-weight: 600;
      border-radius: 10px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-gme777-app__faq-question:hover {
      background-color: #0056b3;
    }

    .page-gme777-app__faq-q-text {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: #fff; /* Ensure text color is white for contrast */
    }

    .page-gme777-app__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent span from blocking click on parent div */
      transition: transform 0.3s ease;
      color: #fff; /* Ensure toggle color is white for contrast */
    }

    .page-gme777-app__faq-item.active .page-gme777-app__faq-toggle {
      transform: rotate(45deg); /* Plus to X / minus */
    }

    .page-gme777-app__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;
      background-color: #fcfcfc;
      color: #333;
    }

    .page-gme777-app__faq-item.active .page-gme777-app__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-gme777-app__faq-answer p {
      margin: 0;
      padding: 0;
    }

    /* Bottom CTA Section */
    .page-gme777-app__cta-bottom-section {
      padding: 60px 20px;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      text-align: center;
    }

    /* General responsive image settings */
    .page-gme777-app img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-gme777-app__hero-section {
        padding: 40px 15px;
      }

      .page-gme777-app__hero-title {
        font-size: 2.5em;
      }

      .page-gme777-app__hero-description {
        font-size: 1.1em;
      }

      .page-gme777-app__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-gme777-app__download-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 1.1em;
      }

      .page-gme777-app__section-title {
        font-size: 2em;
        padding-top: 30px;
      }

      .page-gme777-app__section-description {
        margin-bottom: 30px;
        font-size: 1em;
      }

      /* List Item Responsive for Features Grid */
      .page-gme777-app__features-grid {
        grid-template-columns: 1fr;
        padding: 0; /* Remove container padding to allow full width */
      }
      .page-gme777-app__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
      }
      .page-gme777-app__feature-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* List Item Responsive for Download Guide Steps */
      .page-gme777-app__guide-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-gme777-app__guide-step:nth-child(even) {
        flex-direction: column; /* Reset order for mobile */
      }
      .page-gme777-app__step-image-container {
        width: 250px; /* Smaller fixed width for phone screenshot */
        margin: 0 auto;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-gme777-app__step-title {
        font-size: 1.5em;
      }
      .page-gme777-app__step-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* List Item Responsive for Game Grid */
      .page-gme777-app__game-grid {
        grid-template-columns: 1fr;
        padding: 0; /* Remove container padding */
      }
      .page-gme777-app__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-gme777-app__game-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* List Item Responsive for Promo Grid */
      .page-gme777-app__promo-grid {
        grid-template-columns: 1fr;
        padding: 0; /* Remove container padding */
      }
      .page-gme777-app__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-gme777-app__promo-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* FAQ Responsive */
      .page-gme777-app__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-gme777-app__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for smaller screens */
      }
      .page-gme777-app__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    /* Ensure all images are responsive */
    .page-gme777-app__hero-image,
    .page-gme777-app__feature-icon,
    .page-gme777-app__step-image,
    .page-gme777-app__game-image,
    .page-gme777-app__promo-image {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    /* Ensure image containers are also responsive */
    .page-gme777-app__hero-image-container,
    .page-gme777-app__step-image-container {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
    }
  