
    /* CSS Styles for mmlive page */
    :root {
      --page-mmlive__primary-color: #c22c30; /* Đỏ rực, đã điều chỉnh để tăng độ tương phản */
      --page-mmlive__secondary-color: #f7b731; /* Vàng cam */
      --page-mmlive__dark-background: #1a1a1a;
      --page-mmlive__light-background: #f5f5f5;
      --page-mmlive__text-color-light: #ffffff;
      --page-mmlive__text-color-dark: #333333;
      --page-mmlive__accent-color: #00b894; /* Xanh lá */
      --page-mmlive__border-color: #333;
      --page-mmlive__border-radius: 8px;
      --page-mmlive__transition-speed: 0.3s;
    }

    .page-mmlive {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-mmlive__text-color-dark);
      background-color: var(--page-mmlive__light-background);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

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

    /* Fixed Login Button */
    .page-mmlive__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-mmlive__primary-color);
      color: var(--page-mmlive__text-color-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
    }

    .page-mmlive__floating-login-button:hover {
      background-color: #a02528; /* Màu đỏ đậm hơn khi hover */
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-mmlive__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* Hero Section */
    .page-mmlive__hero-section {
      text-align: center;
      background-color: var(--page-mmlive__dark-background);
      color: var(--page-mmlive__text-color-light);
      padding-top: 120px; /* Điều chỉnh cho header cố định - Desktop */
      padding-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    .page-mmlive__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .page-mmlive__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--page-mmlive__border-radius);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-mmlive__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #ccc;
    }

    .page-mmlive__cta-button {
      display: inline-block;
      background-color: var(--page-mmlive__primary-color);
      color: var(--page-mmlive__text-color-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-mmlive__cta-button:hover {
      background-color: #a02528; /* Màu đỏ đậm hơn khi hover */
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-mmlive__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-mmlive__section--dark {
      background-color: var(--page-mmlive__dark-background);
      color: var(--page-mmlive__text-color-light);
    }

    .page-mmlive__section--light {
      background-color: var(--page-mmlive__light-background);
      color: var(--page-mmlive__text-color-dark);
    }

    .page-mmlive__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      color: var(--page-mmlive__primary-color);
    }

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

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

    .page-mmlive__category-card {
      background-color: var(--page-mmlive__dark-background);
      color: var(--page-mmlive__text-color-light);
      border-radius: var(--page-mmlive__border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 250px; /* Đảm bảo các thẻ có chiều cao hợp lý */
    }

    .page-mmlive__category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-mmlive__category-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .page-mmlive__category-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-mmlive__category-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-mmlive__secondary-color);
    }

    .page-mmlive__category-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-mmlive__category-link {
      display: inline-block;
      margin-top: 20px;
      background-color: var(--page-mmlive__primary-color);
      color: var(--page-mmlive__text-color-light);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-mmlive__category-link:hover {
      background-color: #a02528; /* Màu đỏ đậm hơn khi hover */
    }

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

    .page-mmlive__promo-card {
      background-color: var(--page-mmlive__text-color-light);
      border-radius: var(--page-mmlive__border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-mmlive__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Chiều cao cố định cho hình ảnh khuyến mãi */
    }
    .page-mmlive__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-mmlive__promo-content {
      padding: 25px;
    }

    .page-mmlive__promo-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-mmlive__primary-color);
    }

    .page-mmlive__promo-description {
      font-size: 0.95em;
      color: var(--page-mmlive__text-color-dark);
      margin-bottom: 20px;
    }

    .page-mmlive__promo-button {
      display: inline-block;
      background-color: var(--page-mmlive__accent-color);
      color: var(--page-mmlive__text-color-light);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-mmlive__promo-button:hover {
      background-color: #008c70;
    }

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

    .page-mmlive__provider-item {
      background-color: #ffffff;
      border: 1px solid #ddd; /* Đã điều chỉnh màu border */
      border-radius: var(--page-mmlive__border-radius);
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-mmlive__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .page-mmlive__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Giới hạn chiều cao cho logo */
    }
    .page-mmlive__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* About Section */
    .page-mmlive__about-content {
      text-align: left;
      max-width: 900px;
      margin: 0 auto;
      font-size: 1.1em;
      color: var(--page-mmlive__text-color-dark);
    }

    .page-mmlive__about-content h3 {
      font-size: 1.8em;
      color: var(--page-mmlive__primary-color);
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-mmlive__about-content p {
      margin-bottom: 20px;
    }

    .page-mmlive__about-content ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .page-mmlive__about-content li {
      margin-bottom: 10px;
    }

    /* FAQ Section */
    .page-mmlive__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-mmlive__faq-item {
      background-color: var(--page-mmlive__text-color-light);
      border: 1px solid #ddd;
      border-radius: var(--page-mmlive__border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

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

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

    .page-mmlive__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-mmlive__primary-color);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-mmlive__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-mmlive__secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn span chặn sự kiện click */
    }

    .page-mmlive__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;
      color: var(--page-mmlive__text-color-dark);
    }

    .page-mmlive__faq-item.active .page-mmlive__faq-answer {
      max-height: 2000px !important; /* Giá trị đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-mmlive__faq-item.active .page-mmlive__faq-toggle {
      transform: rotate(45deg); /* Thay đổi '+' thành 'x' trực quan */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-mmlive__container {
        padding: 15px;
      }
      .page-mmlive__hero-title {
        font-size: 2.5em;
      }
      .page-mmlive__hero-description {
        font-size: 1.2em;
      }
      .page-mmlive__section-title {
        font-size: 2.2em;
      }
      .page-mmlive__game-categories,
      .page-mmlive__promotions-grid,
      .page-mmlive__providers-grid {
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .page-mmlive__hero-section {
        padding-top: 100px !important; /* Điều chỉnh header cố định cho di động */
        padding-bottom: 30px;
      }
      .page-mmlive__hero-title {
        font-size: 2em;
      }
      .page-mmlive__hero-description {
        font-size: 1em;
      }
      .page-mmlive__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-mmlive__section {
        padding: 40px 0;
      }
      .page-mmlive__section-title {
        font-size: 1.8em;
      }
      .page-mmlive__game-categories {
        grid-template-columns: 1fr;
      }
      .page-mmlive__promo-card {
        margin: 0 10px;
      }
      .page-mmlive__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-mmlive__about-content {
        padding: 0 15px;
        font-size: 1em;
      }
      .page-mmlive__about-content h3 {
        font-size: 1.5em;
      }
      .page-mmlive__faq-question {
        padding: 15px 20px;
      }
      .page-mmlive__faq-question h3 {
        font-size: 1.1em;
      }
      .page-mmlive__faq-answer {
        padding: 0 20px;
      }
      .page-mmlive__faq-item.active .page-mmlive__faq-answer {
        padding: 15px 20px !important;
      }

      /* Tối ưu hóa hình ảnh responsive cho di động */
      .page-mmlive__hero-image,
      .page-mmlive__category-image,
      .page-mmlive__promo-image,
      .page-mmlive__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mmlive__hero-image-wrapper,
      .page-mmlive__category-image-wrapper,
      .page-mmlive__promo-image-wrapper,
      .page-mmlive__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-mmlive__hero-title {
        font-size: 1.8em;
      }
      .page-mmlive__section-title {
        font-size: 1.6em;
      }
      .page-mmlive__floating-login-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  