
    /* CSS Styles cho trang MT68 my */
    .page-mt68 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Tạo khoảng trống cho nút nổi */
    }

    /* Khoảng cách cho phần đầu tiên do thanh điều hướng cố định */
    .page-mt68__hero-section {
      padding-top: 10px; /* Khoảng cách cho desktop và mobile */
      background-color: #0d1e3a; /* Nền tối cho phần hero */
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-bottom: 20px;
    }

    .page-mt68__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.3; /* Nền mờ */
    }

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

    .page-mt68__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-mt68__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Màu vàng nhấn */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-mt68__section--dark {
        background-color: #0d1e3a;
        color: #fff;
    }

    .page-mt68__section-title {
      font-size: 2em;
      color: #0d1e3a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-mt68__section--dark .page-mt68__section-title {
        color: #ffcc00;
    }

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

    .page-mt68__text-center {
        text-align: center;
        margin-bottom: 20px;
    }

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

    .page-mt68__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid #eee;
    }

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

    .page-mt68__game-card-image {
      max-width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh game */
      object-fit: cover;
      display: block;
    }

    .page-mt68__game-card-content {
      padding: 20px;
    }

    .page-mt68__game-card-title {
      font-size: 1.4em;
      color: #0d1e3a;
      margin-bottom: 10px;
    }

    .page-mt68__game-card-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-mt68__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-mt68__list-item {
      background-color: #f0f8ff;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-left: 5px solid #0d1e3a;
      border-radius: 5px;
      font-size: 1.1em;
      color: #333;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    }

    .page-mt68__list-item strong {
        color: #0d1e3a;
    }

    .page-mt68__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .page-mt68__promo-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #eee;
    }

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

    .page-mt68__promo-card-image {
        max-width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .page-mt68__promo-card-content {
        padding: 20px;
    }

    .page-mt68__promo-card-title {
        font-size: 1.5em;
        color: #0d1e3a;
        margin-bottom: 10px;
    }

    .page-mt68__promo-card-description {
        font-size: 1em;
        color: #555;
        margin-bottom: 15px;
    }

    .page-mt68__button-like-link {
        display: inline-block;
        background-image: linear-gradient(to right, #ffcc00, #ff9900);
        color: #0d1e3a;
        padding: 12px 25px;
        border-radius: 25px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        margin-top: 20px;
        border: none;
    }

    .page-mt68__button-like-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        background-image: linear-gradient(to right, #ffdd33, #ffaa00);
    }

    .page-mt68__floating-button-container {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      z-index: 1000;
    }

    .page-mt68__floating-button {
      background-image: linear-gradient(to right, #ffcc00, #ff9900); /* Gradient cao cấp */
      color: #0d1e3a;
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.3em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none; /* Đảm bảo trông giống nút */
      display: inline-block;
      border: none;
    }

    .page-mt68__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      background-image: linear-gradient(to right, #ffdd33, #ffaa00);
    }

    /* Phong cách cho phần Câu Hỏi Thường Gặp (FAQ) */
    .page-mt68__faq-section {
        background-color: #f9f9f9;
    }

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

    .page-mt68__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background-color: #0d1e3a;
        color: #fff;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

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

    .page-mt68__faq-question:hover {
        background-color: #1a3a60;
    }

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

    .page-mt68__faq-item.active .page-mt68__faq-toggle {
        transform: rotate(45deg); /* Dấu cộng xoay thành dấu x hoặc trừ */
    }

    .page-mt68__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Padding ban đầu */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #444;
        background-color: #fcfcfc;
        border-top: 1px solid #eee;
    }

    .page-mt68__faq-item.active .page-mt68__faq-answer {
        max-height: 2000px !important; /* Đủ lớn để chứa nội dung */
        padding: 20px 20px !important; /* Padding cuối cùng khi hoạt động */
        opacity: 1;
    }

    /* Thiết kế đáp ứng (Responsive Design) */
    @media (max-width: 768px) {
      .page-mt68__hero-section {
        padding-top: 10px; /* Khoảng cách cho mobile */
      }

      .page-mt68__hero-title {
        font-size: 1.8em;
      }

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

      .page-mt68__section {
        padding: 30px 15px;
      }

      .page-mt68__section-title {
        font-size: 1.6em;
      }

      .page-mt68__game-grid,
      .page-mt68__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-mt68__game-card-image,
      .page-mt68__promo-card-image {
        height: 180px; /* Điều chỉnh chiều cao cho mobile */
      }

      .page-mt68__floating-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }

      .page-mt68__button-like-link {
          font-size: 1em;
          padding: 10px 20px;
      }

      .page-mt68__list-item {
        font-size: 1em;
        padding: 12px 15px;
      }

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

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

      .page-mt68__faq-toggle {
          font-size: 1.3em;
      }

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

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

      /* Đảm bảo hình ảnh đáp ứng trên di động */
      .page-mt68 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-mt68__game-card-image,
      .page-mt68__promo-card-image,
      .page-mt68__hero-image {
          width: 100% !important;
          max-width: 100% !important;
          height: auto !important; /* Ghi đè chiều cao cố định nếu cần cho max-width */
      }
    }
  