
    /* Tổng quan */
    .page-mot88 {
      font-family: 'Arial', sans-serif;
      background-color: #0a0a0a; /* Nền đen */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 50px; /* Đảm bảo không bị footer che */
    }

    .page-mot88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-mot88__heading-primary {
      font-size: 2.5em;
      color: #ffd700; /* Vàng */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-mot88__heading-secondary {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 20px;
      border-bottom: 2px solid #ffd700;
      display: inline-block;
      padding-bottom: 5px;
    }

    .page-mot88__heading-tertiary {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 15px;
    }

    .page-mot88__paragraph {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    /* Nút hành động */
    .page-mot88__button {
      display: inline-block;
      background-color: #ffd700;
      color: #0a0a0a;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Hero Section */
    .page-mot88__hero-section {
      background-color: #1a1a1a;
      padding-top: 100px; /* Để tránh bị header cố định che */
      padding-bottom: 40px;
      position: relative;
    }

    .page-mot88__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-mot88__hero-content {
      padding: 20px;
      text-align: center;
    }

    .page-mot88__hero-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* Game Categories Section */
    .page-mot88__game-categories {
      background-color: #0a0a0a;
    }

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

    .page-mot88__game-card {
      background-color: #1c1c1c;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

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

    .page-mot88__game-card-image-wrapper {
      width: 100%;
      max-height: 200px;
      overflow: hidden;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-mot88__game-card-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
    }

    .page-mot88__game-card-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-mot88__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Game Providers Section */
    .page-mot88__providers-section {
      background-color: #1a1a1a;
    }

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

    .page-mot88__provider-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      transition: transform 0.2s ease;
    }

    .page-mot88__provider-item:hover {
      transform: scale(1.05);
    }

    .page-mot88__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      display: block;
    }

    /* Hướng dẫn và Ưu đãi */
    .page-mot88__info-section {
      background-color: #0a0a0a;
      text-align: left;
    }

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

    .page-mot88__info-list-item {
      background-color: #1c1c1c;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-left: 5px solid #ffd700;
      border-radius: 5px;
      color: #e0e0e0;
      font-size: 1.05em;
    }

    .page-mot88__info-list-item strong {
      color: #ffd700;
    }

    /* FAQ Section */
    .page-mot88__faq-section {
      background-color: #1a1a1a;
      text-align: left;
    }

    .page-mot88__faq-item {
      background-color: #1c1c1c;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-mot88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #2c2c2c;
      color: #ffd700;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-mot88__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-mot88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn span chặn sự kiện click */
    }

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

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

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

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .page-mot88__hero-section {
        padding-top: 120px; /* Điều chỉnh cho mobile */
      }

      .page-mot88__heading-primary {
        font-size: 2em;
      }

      .page-mot88__heading-secondary {
        font-size: 1.7em;
      }

      .page-mot88__heading-tertiary {
        font-size: 1.3em;
      }

      .page-mot88__paragraph {
        font-size: 0.95em;
      }

      .page-mot88__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-mot88__game-grid,
      .page-mot88__provider-grid {
        grid-template-columns: 1fr;
      }

      .page-mot88__game-card {
        margin: 0 auto;
        max-width: 350px;
      }

      .page-mot88__info-list-item {
        font-size: 0.9em;
        padding: 12px 15px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-mot88__info-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-mot88__game-card-image,
      .page-mot88__provider-logo,
      .page-mot88__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-mot88__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  