
    :root {
      --page-mmlivefree-primary-color: #e04a4a; /* A vibrant red for MMLive theme */
      --page-mmlivefree-secondary-color: #f7b731; /* A golden yellow for accents */
      --page-mmlivefree-background-dark: #1a1a1a;
      --page-mmlivefree-background-light: #f5f5f5;
      --page-mmlivefree-text-color-dark: #333;
      --page-mmlivefree-text-color-light: #fff;
      --page-mmlivefree-border-color: #ddd;
      --page-mmlivefree-hover-color: #c0392b;
    }

    .page-mmlivefree {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-mmlivefree-text-color-dark);
      background-color: var(--page-mmlivefree-background-light);
      padding: 0;
      margin: 0;
    }

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

    .page-mmlivefree__hero-section {
      background-color: var(--page-mmlivefree-background-dark);
      color: var(--page-mmlivefree-text-color-light);
      text-align: center;
      padding: 10px 0 40px 0; /* Adjusted padding-top for fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-mmlivefree__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-mmlivefree__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      margin-top: -80px; /* Overlap with image slightly for visual effect */
    }

    .page-mmlivefree__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-mmlivefree-secondary-color);
      line-height: 1.2;
    }

    .page-mmlivefree__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-mmlivefree-text-color-light);
    }

    .page-mmlivefree__button {
      display: inline-block;
      background-color: var(--page-mmlivefree-primary-color);
      color: var(--page-mmlivefree-text-color-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-mmlivefree__button:hover {
      background-color: var(--page-mmlivefree-hover-color);
      transform: translateY(-2px);
    }

    .page-mmlivefree__section {
      padding: 60px 0;
      background-color: var(--page-mmlivefree-background-light);
    }

    .page-mmlivefree__section--dark {
      background-color: var(--page-mmlivefree-background-dark);
      color: var(--page-mmlivefree-text-color-light);
    }

    .page-mmlivefree__section-title {
      font-size: 2.2em;
      color: var(--page-mmlivefree-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-mmlivefree__section-title--light {
      color: var(--page-mmlivefree-secondary-color);
    }

    .page-mmlivefree__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-mmlivefree-secondary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-mmlivefree__section-title--light::after {
      background-color: var(--page-mmlivefree-primary-color);
    }

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

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

    .page-mmlivefree__feature-item {
      background-color: var(--page-mmlivefree-text-color-light);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-mmlivefree__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-mmlivefree__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-mmlivefree__feature-title {
      font-size: 1.4em;
      color: var(--page-mmlivefree-primary-color);
      margin-bottom: 15px;
    }

    .page-mmlivefree__feature-description {
      font-size: 0.95em;
      color: var(--page-mmlivefree-text-color-dark);
    }

    .page-mmlivefree__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-mmlivefree__game-card {
      background-color: var(--page-mmlivefree-text-color-light);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-mmlivefree__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-mmlivefree__game-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
      display: block;
    }
    
    .page-mmlivefree__gamelogo-image {
      width: 100%;
      height: 100px; /* Fixed height for game logos */
      object-fit: contain; /* Ensure logo is fully visible */
      padding: 10px;
      display: block;
      background-color: #fff; /* White background for logos */
      border-bottom: 1px solid var(--page-mmlivefree-border-color);
    }

    .page-mmlivefree__game-title {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-mmlivefree-primary-color);
      padding: 15px 10px;
      display: block;
      text-decoration: none;
    }
    
    .page-mmlivefree__game-title:hover {
        text-decoration: underline;
    }

    .page-mmlivefree__guide-step {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      background-color: var(--page-mmlivefree-background-dark);
      color: var(--page-mmlivefree-text-color-light);
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-mmlivefree__guide-step:last-child {
      margin-bottom: 0;
    }

    .page-mmlivefree__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-mmlivefree-secondary-color);
      margin-right: 20px;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-mmlivefree__step-content {
      flex-grow: 1;
    }

    .page-mmlivefree__step-title {
      font-size: 1.6em;
      color: var(--page-mmlivefree-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-mmlivefree__step-description {
      font-size: 1em;
    }

    .page-mmlivefree__faq-section {
      background-color: var(--page-mmlivefree-background-light);
      padding: 60px 0;
    }

    .page-mmlivefree__faq-item {
      background-color: var(--page-mmlivefree-text-color-light);
      border: 1px solid var(--page-mmlivefree-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-mmlivefree__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      font-size: 1.15em;
      font-weight: bold;
      color: var(--page-mmlivefree-text-color-dark);
      background-color: #fcfcfc;
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-color 0.3s ease;
      user-select: none;
    }

    .page-mmlivefree__faq-question:hover {
      background-color: #f0f0f0;
    }
    
    .page-mmlivefree__faq-question h3 {
        margin: 0;
        font-size: 1.15em;
        color: var(--page-mmlivefree-text-color-dark);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-mmlivefree__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-mmlivefree-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-mmlivefree__faq-item.active .page-mmlivefree__faq-toggle {
      transform: rotate(45deg); /* Plus becomes cross/minus */
    }

    .page-mmlivefree__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;
      font-size: 1em;
      color: var(--page-mmlivefree-text-color-dark);
      background-color: #fff;
    }

    .page-mmlivefree__faq-item.active .page-mmlivefree__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 25px !important;
      opacity: 1;
      border-top: 1px solid var(--page-mmlivefree-border-color);
    }

    .page-mmlivefree__cta-banner {
      background: linear-gradient(135deg, var(--page-mmlivefree-primary-color), var(--page-mmlivefree-secondary-color));
      color: var(--page-mmlivefree-text-color-light);
      text-align: center;
      padding: 50px 20px;
      margin-top: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .page-mmlivefree__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-mmlivefree__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button for Mobile */
    .page-mmlivefree__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-mmlivefree-secondary-color);
      color: var(--page-mmlivefree-text-color-dark);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: none; /* Hidden by default, shown on mobile */
      white-space: nowrap;
    }

    .page-mmlivefree__floating-button:hover {
      background-color: #f0a800;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-mmlivefree__hero-section {
        padding-top: 10px; /* Mobile specific padding-top for fixed header */
      }
      .page-mmlivefree__hero-title {
        font-size: 2em;
      }
      .page-mmlivefree__hero-subtitle {
        font-size: 1em;
      }
      .page-mmlivefree__section-title {
        font-size: 1.8em;
      }
      .page-mmlivefree__text-content {
        font-size: 1em;
      }
      .page-mmlivefree__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-mmlivefree__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
      .page-mmlivefree__guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-mmlivefree__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-mmlivefree__step-title {
        font-size: 1.4em;
      }
      .page-mmlivefree__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-mmlivefree__faq-question h3 {
          font-size: 1em;
      }
      .page-mmlivefree__faq-answer {
        padding: 0 20px;
      }
      .page-mmlivefree__faq-item.active .page-mmlivefree__faq-answer {
        padding: 15px 20px !important;
      }
      .page-mmlivefree__cta-title {
        font-size: 1.8em;
      }
      .page-mmlivefree__cta-description {
        font-size: 1em;
      }
      .page-mmlivefree__floating-button {
        display: block; /* Show floating button on mobile */
        width: calc(100% - 40px);
        max-width: 300px;
        text-align: center;
        bottom: 15px;
      }
      .page-mmlivefree__hero-content {
        margin-top: -40px; /* Adjust overlap for mobile */
      }

      /* Image responsive optimization for mobile */
      .page-mmlivefree img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mmlivefree__container img,
      .page-mmlivefree__hero-section img,
      .page-mmlivefree__feature-item img,
      .page-mmlivefree__game-card img,
      .page-mmlivefree__guide-step img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  