
    .page-app-68 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-app-68__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-app-68__section--dark {
      background-color: #16213e;
    }

    .page-app-68__section-title {
      font-size: 2.5em;
      color: #e94560;
      margin-bottom: 20px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-app-68__section-subtitle {
      font-size: 1.2em;
      color: #b0b0b0;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-app-68__hero-section {
      padding: 60px 20px 40px;
      background: linear-gradient(135deg, #16213e, #0f3460);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Minimal top padding, body handles header offset */
    }

    .page-app-68__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-app-68__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #e94560;
      font-weight: 700;
      line-height: 1.2;
    }

    .page-app-68__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-app-68__download-button {
      background-color: #e94560;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
      border: none;
    }

    .page-app-68__download-button:hover {
      background-color: #ff6a80;
    }

    .page-app-68__hero-image-wrapper {
      margin-top: 40px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      display: inline-block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-app-68__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

    .page-app-68__feature-item {
      background-color: #0f3460;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-app-68__feature-item:hover {
      transform: translateY(-5px);
      background-color: #1a1a2e;
    }

    .page-app-68__feature-icon {
      width: 150px;
      height: auto;
      margin-bottom: 20px;
      display: inline-block;
      max-width: 100%;
    }

    .page-app-68__feature-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-app-68__feature-description {
      color: #b0b0b0;
      font-size: 0.95em;
    }

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

    .page-app-68__game-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-app-68__game-card:hover {
      transform: translateY(-5px);
    }

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

    .page-app-68__game-content {
      padding: 20px;
      text-align: left;
    }

    .page-app-68__game-title {
      font-size: 1.3em;
      color: #e94560;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-app-68__game-description {
      color: #b0b0b0;
      font-size: 0.9em;
    }

    /* How-To Section */
    .page-app-68__step-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0;
      max-width: 800px;
    }

    .page-app-68__step-item {
      background-color: #0f3460;
      padding: 25px;
      margin-bottom: 20px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      text-align: left;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-app-68__step-number {
      background-color: #e94560;
      color: #fff;
      width: 45px;
      height: 45px;
      min-width: 45px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-right: 20px;
    }

    .page-app-68__step-text {
      font-size: 1.1em;
      color: #ccc;
      flex-grow: 1;
    }

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

    .page-app-68__promo-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-app-68__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-app-68__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-app-68__promo-content {
      padding: 20px;
    }

    .page-app-68__promo-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-app-68__promo-description {
      color: #b0b0b0;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-app-68__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-app-68__faq-item {
      background-color: #0f3460;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-app-68__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #16213e;
      color: #e94560;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-app-68__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-app-68__faq-question:hover {
      background-color: #0f3460;
    }

    .page-app-68__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
      color: #fff;
    }

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

    .page-app-68__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: justify;
    }

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

    /* Floating Buttons */
    .page-app-68__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 0;
      background-color: rgba(15, 52, 96, 0.95);
      box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-app-68__floating-button {
      background-color: #e94560;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
    }

    .page-app-68__floating-button:hover {
      background-color: #ff6a80;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-app-68__hero-title {
        font-size: 2.2em;
      }

      .page-app-68__hero-description {
        font-size: 1.1em;
      }

      .page-app-68__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-app-68__section {
        padding: 30px 15px;
      }

      .page-app-68__section-title {
        font-size: 2em;
      }

      .page-app-68__feature-grid, .page-app-68__game-grid, .page-app-68__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-app-68__feature-item,
      .page-app-68__game-card,
      .page-app-68__promo-card,
      .page-app-68__step-item,
      .page-app-68__faq-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;
      }

      .page-app-68__step-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-app-68__step-item {
        padding: 20px;
      }

      .page-app-68__step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.3em;
        margin-right: 15px;
      }

      .page-app-68__step-text {
        font-size: 1em;
      }

      .page-app-68__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-app-68__faq-answer {
        padding: 0 20px;
      }

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

      .page-app-68__floating-buttons {
        padding: 10px 0;
      }

      .page-app-68__floating-button {
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
      }

      .page-app-68__hero-image-wrapper img, 
      .page-app-68__feature-icon, 
      .page-app-68__game-image, 
      .page-app-68__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-app-68__hero-title {
        font-size: 1.8em;
      }

      .page-app-68__hero-description {
        font-size: 1em;
      }

      .page-app-68__download-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-app-68__section-title {
        font-size: 1.8em;
      }

      .page-app-68__floating-button {
        padding: 8px 10px;
        font-size: 0.9em;
      }
    }
  