
    /* Base styles for the page */
    .page-g666app {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 80px; /* Space for the floating button */
    }

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

    /* Hero Section */
    .page-g666app__hero-section {
      position: relative;
      background-color: #1a2a6c; /* Dark blue for contrast */
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-g666app__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4; /* Slightly transparent overlay */
    }

    .page-g666app__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-g666app__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #f3d250; /* Gold color for highlight */
    }

    .page-g666app__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-g666app__download-button {
      display: inline-block;
      background-color: #e3405f; /* Red-pink for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-g666app__download-button:hover {
      background-color: #c73650;
    }

    /* Floating Login Button */
    .page-g666app__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #4CAF50; /* Green for login */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none; /* Use button tag, so remove border */
    }

    .page-g666app__floating-login:hover {
      background-color: #45a049;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-g666app__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-g666app__section--alt {
      background-color: #f0f2f5;
    }

    .page-g666app__section-title {
      font-size: 2.2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-g666app__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e3405f;
      border-radius: 2px;
    }

    .page-g666app__text-content {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-g666app__text-content p {
      margin-bottom: 15px;
    }

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

    .page-g666app__step-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid #eee;
    }

    .page-g666app__step-card:hover {
      transform: translateY(-5px);
    }

    .page-g666app__step-icon {
      font-size: 3em;
      color: #e3405f;
      margin-bottom: 15px;
    }

    .page-g666app__step-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

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

    /* Game Showcase */
    .page-g666app__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-g666app__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      border: 1px solid #eee;
    }

    .page-g666app__game-card:hover {
      transform: translateY(-5px);
    }

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

    .page-g666app__game-content {
      padding: 20px;
      text-align: center;
    }

    .page-g666app__game-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-g666app__game-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Benefits Section */
    .page-g666app__benefits-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-g666app__benefit-item {
      background-color: #fff;
      padding: 25px;
      border-left: 5px solid #e3405f;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
    }

    .page-g666app__benefit-icon {
      font-size: 2em;
      color: #1a2a6c;
      margin-right: 15px;
    }

    .page-g666app__benefit-text {
      font-size: 1.1em;
      color: #333;
    }

    /* FAQ Section */
    .page-g666app__faq-section {
      padding: 60px 0;
      background-color: #f0f2f5;
    }

    .page-g666app__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-g666app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-g666app__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a2a6c;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-g666app__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e3405f;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-g666app__faq-item.active .page-g666app__faq-toggle {
      transform: rotate(45deg);
    }

    .page-g666app__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will be updated on active */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fdfdfd;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-g666app__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        min-height: 300px;
      }

      .page-g666app__hero-title {
        font-size: 2em;
      }

      .page-g666app__hero-subtitle {
        font-size: 1em;
      }

      .page-g666app__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-g666app__floating-login {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-g666app__section {
        padding: 40px 0;
      }

      .page-g666app__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-g666app__text-content {
        font-size: 1em;
      }

      .page-g666app__steps-grid,
      .page-g666app__game-grid,
      .page-g666app__benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-g666app__steps-grid > *,
      .page-g666app__game-grid > *,
      .page-g666app__benefits-list > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to avoid excessive inner space */
        padding-right: 15px !important;
      }
      
      .page-g666app__game-card {
        margin: 0 auto; /* Center single column cards */
      }

      .page-g666app__game-image {
        height: 180px; /* Adjust image height for mobile */
      }

      .page-g666app__faq-question {
        padding: 15px 20px;
      }

      .page-g666app__faq-question h3 {
        font-size: 1.1em;
      }

      .page-g666app__faq-answer {
        padding: 0 20px;
      }

      .page-g666app__faq-item.active .page-g666app__faq-answer {
        padding: 15px 20px !important;
      }

      /* Ensure images are fully responsive */
      .page-g666app img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-g666app__game-image,
      .page-g666app__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-g666app__hero-title {
        font-size: 1.8em;
      }
      .page-g666app__section-title {
        font-size: 1.6em;
      }
    }
  