
    :root {
      --page-mmlive-bg-color: #000000;
      --page-mmlive-text-color: #FFFFFF;
      --page-mmlive-highlight-color: #FFD700; /* Gold/Yellow */
      --page-mmlive-button-bg: #E74C3C; /* Reddish for CTA */
      --page-mmlive-button-hover-bg: #C0392B;
      --page-mmlive-card-bg: #1a1a1a;
      --page-mmlive-border-color: #333333;
    }

    .page-mmlive {
      background-color: var(--page-mmlive-bg-color);
      color: var(--page-mmlive-text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-mmlive__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-mmlive__section-title {
      font-size: 2.5em;
      color: var(--page-mmlive-highlight-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-mmlive__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-mmlive-highlight-color);
    }

    .page-mmlive__text-highlight {
      color: var(--page-mmlive-highlight-color);
    }

    /* Hero Section */
    .page-mmlive__hero-section {
      position: relative;
      width: 100%;
      background-color: var(--page-mmlive-bg-color);
      padding-top: 150px; /* Safe zone for fixed header */
      text-align: center;
      box-sizing: border-box;
    }

    .page-mmlive__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-mmlive__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Ensures image maintains aspect ratio and is not cropped */
    }

    .page-mmlive__hero-content {
      position: relative;
      padding: 20px;
      z-index: 1;
    }

    .page-mmlive__hero-title {
      font-size: 3em;
      color: var(--page-mmlive-highlight-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-mmlive__hero-subtitle {
      font-size: 1.2em;
      color: var(--page-mmlive-text-color);
      margin-bottom: 30px;
    }

    .page-mmlive__cta-button {
      display: inline-block;
      background-color: var(--page-mmlive-button-bg);
      color: var(--page-mmlive-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      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.4);
    }

    .page-mmlive__cta-button:hover {
      background-color: var(--page-mmlive-button-hover-bg);
    }

    /* Floating Login Button */
    .page-mmlive__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-mmlive-button-bg);
      color: var(--page-mmlive-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      animation: page-mmlive__pulse 2s infinite;
      transition: background-color 0.3s ease;
    }

    .page-mmlive__floating-login-button:hover {
      background-color: var(--page-mmlive-button-hover-bg);
    }

    @keyframes page-mmlive__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Info Cards */
    .page-mmlive__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-mmlive__info-card {
      background-color: var(--page-mmlive-card-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      border: 1px solid var(--page-mmlive-border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-mmlive__info-card-icon {
      width: 80px; /* Min size 200x200 but this is an icon *representation* */
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

    .page-mmlive__info-card-title {
      font-size: 1.5em;
      color: var(--page-mmlive-highlight-color);
      margin-bottom: 15px;
    }

    .page-mmlive__info-card p {
      font-size: 1em;
      color: var(--page-mmlive-text-color);
    }

    /* Game Categories / Providers */
    .page-mmlive__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-mmlive__game-item {
      background-color: var(--page-mmlive-card-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      border: 1px solid var(--page-mmlive-border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-mmlive__game-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-mmlive__game-item img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
      min-width: 200px; /* Enforce minimum image size */
      min-height: 200px; /* Enforce minimum image size */
    }

    .page-mmlive__game-item-title {
      font-size: 1.1em;
      color: var(--page-mmlive-text-color);
      font-weight: bold;
    }

    /* Testimonials/Why Choose Us */
    .page-mmlive__feature-list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-mmlive__feature-item {
      background-color: var(--page-mmlive-card-bg);
      padding: 20px;
      border-radius: 8px;
      border-left: 5px solid var(--page-mmlive-highlight-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-mmlive__feature-item h3 {
      color: var(--page-mmlive-highlight-color);
      margin-top: 0;
      font-size: 1.3em;
    }

    .page-mmlive__feature-item p {
      color: var(--page-mmlive-text-color);
      margin-bottom: 0;
    }

    /* FAQ Section */
    .page-mmlive__faq-section {
      padding: 60px 0;
      background-color: var(--page-mmlive-bg-color);
    }

    .page-mmlive__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
    }

    .page-mmlive__faq-item {
      background-color: var(--page-mmlive-card-bg);
      border: 1px solid var(--page-mmlive-border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-mmlive__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #222;
      color: var(--page-mmlive-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-mmlive__faq-question:hover {
      background-color: #333;
    }

    .page-mmlive__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-mmlive-text-color);
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-mmlive__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--page-mmlive-highlight-color);
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

    .page-mmlive__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-mmlive-text-color);
      text-align: left;
    }

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

    .page-mmlive__faq-item.active .page-mmlive__faq-toggle {
      content: '−';
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-mmlive__hero-section {
        padding-top: 100px; /* Adjust safe zone for mobile fixed header */
      }

      .page-mmlive__hero-title {
        font-size: 2.2em;
      }

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

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

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

      .page-mmlive__info-grid {
        grid-template-columns: 1fr;
      }

      .page-mmlive__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-mmlive__game-item img {
        min-width: 150px;
        min-height: 150px;
      }

      .page-mmlive__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

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

      .page-mmlive__faq-answer {
        padding: 0 15px;
      }

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

      .page-mmlive__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      /* Image responsive optimization for mobile */
      .page-mmlive img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mmlive__hero-image-wrapper,
      .page-mmlive__game-item,
      .page-mmlive__info-card-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  