
    /* CSS styles for page-mp66 */
    .page-mp66 {
      background-color: #0a0a0a; /* Nền tối */
      color: #f5f5f5; /* Chữ sáng để dễ đọc */
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn chặn cuộn ngang */
    }

    /* Khoảng cách cho header cố định */
    .page-mp66__hero-section {
      padding-top: 120px; /* Điều chỉnh dựa trên chiều cao thực tế của header */
    }
    @media (max-width: 768px) {
      .page-mp66__hero-section {
        padding-top: 100px; /* Điều chỉnh cho header di động */
      }
    }

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

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

    .page-mp66__section--dark {
      background-color: #1a1a1a;
    }

    .page-mp66__heading {
      font-size: 2.5em;
      color: #ffcc00; /* Màu nhấn */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-mp66__sub-heading {
      font-size: 1.8em;
      color: #fff;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-mp66__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    .page-mp66__button {
      display: inline-block;
      background-color: #ffcc00; /* Màu nhấn */
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-mp66__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-mp66__hero-section {
      text-align: center;
      padding-bottom: 40px;
      background-color: #000;
    }

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

    .page-mp66__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      object-fit: cover; /* Đảm bảo hình ảnh bao phủ khu vực mà không bị biến dạng */
    }
    @media (max-width: 768px) {
      .page-mp66__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mp66__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }


    .page-mp66__hero-content {
      padding: 0 20px;
    }

    .page-mp66__hero-title {
      font-size: 3em;
      color: #ffcc00;
      margin-bottom: 15px;
      line-height: 1.2;
    }
    .page-mp66__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-mp66__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff0000; /* Màu đỏ cho sự khẩn cấp/khuyến mãi */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
    }

    .page-mp66__floating-login-button:hover {
      background-color: #cc0000;
      transform: translateY(-3px);
    }

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

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

    .page-mp66__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

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

    .page-mp66__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Chiều cao cố định để nhất quán */
    }

    .page-mp66__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-mp66__game-card:hover .page-mp66__game-card-image {
      transform: scale(1.05);
    }

    .page-mp66__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-mp66__game-card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
      text-decoration: none; /* Cho liên kết */
    }

    .page-mp66__game-card-title a {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-mp66__game-card-title a:hover {
      color: #fff;
    }

    .page-mp66__game-card-description {
      font-size: 0.95em;
      color: #b0b0b0;
      margin-bottom: 15px;
    }

    .page-mp66__game-card-button {
      background-color: #007bff;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      display: block; /* Làm cho nút chiếm toàn bộ chiều rộng */
      margin-top: auto; /* Đẩy xuống cuối */
    }

    .page-mp66__game-card-button:hover {
      background-color: #0056b3;
    }

    /* Game Providers */
    .page-mp66__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Lưới nhỏ hơn cho logo */
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-mp66__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 10px;
        background-color: #2a2a2a;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    .page-mp66__provider-logo-wrapper:hover {
        transform: translateY(-3px);
    }


    .page-mp66__provider-logo {
      width: 100%;
      max-width: 120px; /* Chiều rộng tối đa cho logo */
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
    }
    @media (max-width: 768px) {
      .page-mp66__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mp66__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }


    /* Promotions */
    .page-mp66__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-mp66__promo-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-mp66__promo-description {
      color: #e0e0e0;
      margin-bottom: 15px;
    }

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

    .page-mp66__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      object-fit: cover;
    }
    @media (max-width: 768px) {
      .page-mp66__promo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mp66__promo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }


    /* How-to Guide */
    .page-mp66__guide-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      text-align: left;
    }

    .page-mp66__guide-item {
      background-color: #1a1a1a;
      border-left: 5px solid #ffcc00;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-mp66__guide-step-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-mp66__guide-step-description {
      color: #e0e0e0;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-mp66__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-mp66__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-mp66__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
    }

    .page-mp66__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-mp66__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-mp66__faq-toggle {
      font-size: 1.5em;
      color: #ffcc00;
      font-weight: bold;
      pointer-events: none; /* Ngăn biểu tượng chuyển đổi chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-mp66__faq-item.active .page-mp66__faq-toggle {
      transform: rotate(45deg); /* Xoay + thành X hoặc - */
    }

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

    .page-mp66__faq-item.active .page-mp66__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Điều chỉnh đáp ứng */
    @media (max-width: 768px) {
      .page-mp66__heading {
        font-size: 2em;
      }
      .page-mp66__sub-heading {
        font-size: 1.5em;
      }
      .page-mp66__paragraph {
        font-size: 1em;
      }
      .page-mp66__hero-title {
        font-size: 2.5em;
      }
      .page-mp66__hero-description {
        font-size: 1.1em;
      }
      .page-mp66__game-categories {
        grid-template-columns: 1fr;
      }
      .page-mp66__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-mp66__game-card-image-wrapper {
        height: 180px;
      }
      .page-mp66__faq-question h3 {
        font-size: 1.1em;
      }
      .page-mp66__faq-answer {
        font-size: 0.9em;
      }
    }
  