
    /* Base styles for the page, ensuring good contrast and responsive design */
    .page-gme777-login-app {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 40px; /* Space above footer */
    }

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

    .page-gme777-login-app__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-gme777-login-app__section:nth-of-type(even) {
      background-color: #222222; /* Slightly different dark shade for contrast between sections */
    }

    .page-gme777-login-app__heading {
      color: #e0b300; /* Gold accent for headings */
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-gme777-login-app__subheading {
      color: #f0f0f0;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-gme777-login-app__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc; /* Slightly darker light text for paragraphs */
    }

    /* Hero Section */
    .page-gme777-login-app__hero-section {
      padding-top: 10px; /* Per instruction for fixed header offset */
      padding-bottom: 60px;
      background-color: #0d0d0d; /* Even darker for hero */
      position: relative;
      overflow: hidden;
    }

    .page-gme777-login-app__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .page-gme777-login-app__hero-heading {
      font-size: 3.5em;
      color: #e0b300;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-gme777-login-app__hero-description {
      font-size: 1.3em;
      color: #f0f0f0;
      margin-bottom: 30px;
    }

    .page-gme777-login-app__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .page-gme777-login-app__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-gme777-login-app__button {
      background-color: #e0b300;
      color: #1a1a1a;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline if button is used as a link */
      display: inline-block;
      box-sizing: border-box;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-gme777-login-app__button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

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

    .page-gme777-login-app__feature-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-gme777-login-app__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-gme777-login-app__feature-icon {
      width: 250px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      display: block;
      max-width: 100%;
    }

    .page-gme777-login-app__feature-title {
      color: #e0b300;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

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

    /* Access Guide Section */
    .page-gme777-login-app__steps-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-gme777-login-app__step-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      text-align: left;
      box-sizing: border-box;
    }

    .page-gme777-login-app__step-number {
      background-color: #e0b300;
      color: #1a1a1a;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.3em;
      font-weight: bold;
      flex-shrink: 0;
    }

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

    .page-gme777-login-app__step-title {
      color: #e0b300;
      font-size: 1.4em;
      margin-bottom: 5px;
    }

    .page-gme777-login-app__step-description {
      color: #cccccc;
      font-size: 1em;
    }

    .page-gme777-login-app__step-image-container {
      width: 100%;
      max-width: 300px; /* Smaller image for steps */
      margin-top: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

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

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

    .page-gme777-login-app__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-gme777-login-app__game-card:hover {
      transform: translateY(-5px);
    }

    .page-gme777-login-app__game-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistent card size */
      overflow: hidden;
    }

    .page-gme777-login-app__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-gme777-login-app__game-info {
      padding: 20px;
      text-align: left;
    }

    .page-gme777-login-app__game-title {
      color: #e0b300;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-gme777-login-app__game-provider {
      color: #cccccc;
      font-size: 0.9em;
    }

    /* Promotions Section */
    .page-gme777-login-app__promo-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      max-width: 900px;
    }

    .page-gme777-login-app__promo-item {
      background-color: #2a2a2a;
      margin-bottom: 20px;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      gap: 20px;
      align-items: center;
      box-sizing: border-box;
    }

    .page-gme777-login-app__promo-image {
      width: 250px; /* Min size 200x200 */
      height: auto;
      border-radius: 8px;
      flex-shrink: 0;
      max-width: 100%;
    }

    .page-gme777-login-app__promo-content {
      flex-grow: 1;
    }

    .page-gme777-login-app__promo-title {
      color: #e0b300;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-gme777-login-app__promo-description {
      color: #cccccc;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-gme777-login-app__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      list-style: none;
    }

    .page-gme777-login-app__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-gme777-login-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333; /* Slightly lighter dark for question */
      transition: background-color 0.3s ease;
      color: #e0b300;
    }

    .page-gme777-login-app__faq-question:hover {
      background-color: #444444;
    }

    .page-gme777-login-app__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: #e0b300;
    }

    .page-gme777-login-app__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
      color: #e0b300;
    }

    .page-gme777-login-app__faq-item.active .page-gme777-login-app__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change to '-' */
      content: '−'; /* This will be handled by JS */
    }

    .page-gme777-login-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;
      color: #cccccc;
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-gme777-login-app__cta-section .page-gme777-login-app__hero-buttons {
      margin-top: 30px;
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-gme777-login-app__hero-heading {
        font-size: 3em;
      }
      .page-gme777-login-app__heading {
        font-size: 2.2em;
      }
      .page-gme777-login-app__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-gme777-login-app__container {
        padding: 0 15px;
      }
      .page-gme777-login-app__section {
        padding: 30px 0;
      }
      .page-gme777-login-app__hero-heading {
        font-size: 2.5em;
      }
      .page-gme777-login-app__hero-description {
        font-size: 1.1em;
      }
      .page-gme777-login-app__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-gme777-login-app__button {
        width: 100%;
        padding: 12px 20px;
      }

      .page-gme777-login-app__heading {
        font-size: 2em;
      }
      .page-gme777-login-app__subheading {
        font-size: 1.4em;
      }
      .page-gme777-login-app__paragraph {
        font-size: 0.95em;
      }

      /* List item mobile responsiveness */
      .page-gme777-login-app__features-grid,
      .page-gme777-login-app__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-gme777-login-app__feature-item,
      .page-gme777-login-app__game-card,
      .page-gme777-login-app__step-item,
      .page-gme777-login-app__promo-item,
      .page-gme777-login-app__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-gme777-login-app__steps-list,
      .page-gme777-login-app__promo-list,
      .page-gme777-login-app__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Ensure list container also adapts */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-gme777-login-app__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-gme777-login-app__step-number {
        margin-bottom: 15px;
      }
      .page-gme777-login-app__step-image-container {
        max-width: 100%;
      }

      .page-gme777-login-app__promo-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-gme777-login-app__promo-image {
        margin-bottom: 15px;
      }

      .page-gme777-login-app__faq-question {
        padding: 15px 20px;
      }
      .page-gme777-login-app__faq-question h3 {
        font-size: 1.1em;
      }
      .page-gme777-login-app__faq-answer {
        padding: 0 20px;
      }
      .page-gme777-login-app__faq-item.active .page-gme777-login-app__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness enforcement */
      .page-gme777-login-app__hero-image,
      .page-gme777-login-app__feature-icon,
      .page-gme777-login-app__step-image,
      .page-gme777-login-app__game-image,
      .page-gme777-login-app__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-gme777-login-app__game-image-container {
        height: 180px !important; /* Adjust fixed height for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-gme777-login-app__hero-heading {
        font-size: 2em;
      }
      .page-gme777-login-app__heading {
        font-size: 1.8em;
      }
    }
  