
    /* CSS Styles for mmliveapk page */
    .page-mmliveapk {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-mmliveapk__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      padding-top: 10px; /* Space for fixed header */
      padding-bottom: 40px;
      background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
      color: #fff;
    }

    .page-mmliveapk__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transform: translateY(0);
      transition: transform 0.3s ease-in-out;
    }

    .page-mmliveapk__hero-image:hover {
      transform: translateY(-5px);
    }

    .page-mmliveapk__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-mmliveapk__hero-title {
      font-size: 2.5em;
      margin-top: 20px;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }

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

    .page-mmliveapk__download-button {
      display: inline-block;
      background-color: #ff4d4d;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

    .page-mmliveapk__download-button:hover {
      background-color: #e60000;
      transform: translateY(-3px);
    }

    .page-mmliveapk__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      text-align: center;
    }

    .page-mmliveapk__section-title {
      font-size: 2em;
      color: #333;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-mmliveapk__text-content {
      font-size: 1.1em;
      color: #555;
      text-align: left;
      margin-bottom: 20px;
    }

    .page-mmliveapk__text-content ul {
      list-style: disc inside;
      padding-left: 0;
      text-align: left;
    }

    .page-mmliveapk__text-content ol {
      list-style: decimal inside;
      padding-left: 0;
      text-align: left;
    }

    .page-mmliveapk__text-content li {
      margin-bottom: 8px;
    }

    .page-mmliveapk__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-mmliveapk__feature-card {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-mmliveapk__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-mmliveapk__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      border-radius: 50%;
      background-color: #e6f7ff;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-mmliveapk__feature-icon img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 50%; /* Ensure roundness if image is square */
    }

    .page-mmliveapk__feature-title {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 10px;
    }

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

    .page-mmliveapk__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-mmliveapk__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-mmliveapk__game-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-mmliveapk__game-image-container {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-mmliveapk__game-info {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-mmliveapk__game-title {
      font-size: 1.2em;
      color: #222;
      margin-bottom: 10px;
    }

    .page-mmliveapk__game-description {
      font-size: 0.9em;
      color: #555;
      flex-grow: 1;
    }

    .page-mmliveapk__download-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
      text-align: left;
    }

    .page-mmliveapk__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-mmliveapk__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #ff4d4d;
      margin-right: 15px;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-mmliveapk__step-content h3 {
      font-size: 1.2em;
      color: #333;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-mmliveapk__step-content p {
      font-size: 0.95em;
      color: #666;
    }

    .page-mmliveapk__platform-download-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-mmliveapk__platform-button {
      background-color: #4CAF50;
      color: white;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.05em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      border: none;
      cursor: pointer;
    }

    .page-mmliveapk__platform-button.ios {
      background-color: #007aff;
    }

    .page-mmliveapk__platform-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .page-mmliveapk__platform-button.android:hover {
      background-color: #388e3c;
    }

    .page-mmliveapk__platform-button.ios:hover {
      background-color: #005bb5;
    }

    .page-mmliveapk__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4d4d;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
    }

    .page-mmliveapk__floating-button:hover {
      background-color: #e60000;
      transform: translateY(-3px);
    }

    .page-mmliveapk__floating-button span {
      display: inline-block;
      animation: bounce 1s infinite;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
    }

    .page-mmliveapk__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 30px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .page-mmliveapk__faq-title {
      font-size: 2em;
      color: #333;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-mmliveapk__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-mmliveapk__faq-item {
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fefefe;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    .page-mmliveapk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-mmliveapk__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-mmliveapk__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-mmliveapk__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #ff4d4d;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-mmliveapk__faq-item.active .page-mmliveapk__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
      color: #6a11cb;
    }

    .page-mmliveapk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #555;
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-mmliveapk__hero-title {
        font-size: 1.8em;
      }

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

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

      .page-mmliveapk__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-mmliveapk__section-title, .page-mmliveapk__faq-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

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

      .page-mmliveapk__feature-grid, .page-mmliveapk__game-grid {
        grid-template-columns: 1fr;
      }

      .page-mmliveapk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-mmliveapk__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-mmliveapk__floating-button {
        padding: 12px 20px;
        font-size: 0.95em;
        bottom: 15px;
        right: 15px;
      }

      .page-mmliveapk__game-image-container {
        height: 180px;
      }

      .page-mmliveapk__faq-question {
        padding: 12px 15px;
      }

      .page-mmliveapk__faq-question h3 {
        font-size: 1em;
      }

      .page-mmliveapk__faq-answer {
        font-size: 0.9em;
      }

      /* Image responsive optimization for mobile */
      .page-mmliveapk img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mmliveapk__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mmliveapk__feature-icon img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mmliveapk__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mmliveapk__game-image-container, .page-mmliveapk__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-mmliveapk__hero-title {
        font-size: 1.5em;
      }
      .page-mmliveapk__hero-subtitle {
        font-size: 0.9em;
      }
      .page-mmliveapk__download-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-mmliveapk__section-title, .page-mmliveapk__faq-title {
        font-size: 1.4em;
      }
    }
  