
    /* Tổng quan */
    .page-mb66com {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Nền đen */
      color: #FFF; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Để tránh footer đè lên nội dung */
      overflow-x: hidden; /* Ngăn chặn scroll ngang */
    }

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

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

    .page-mb66com__section-title {
      color: #FFD700; /* Chữ vàng */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .page-mb66com__section-subtitle {
      color: #FFF;
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-mb66com__hero-section {
      position: relative;
      width: 100%;
      padding-top: 160px; /* Để tránh bị header đè lên */
      text-align: center;
      background-color: #000;
      padding-bottom: 40px;
    }

    .page-mb66com__hero-image {
      width: 100%;
      max-width: 100%; /* Đảm bảo hình ảnh không vượt quá chiều rộng của container */
      height: auto; /* Giữ tỷ lệ khung hình */
      display: block;
      margin: 0 auto; /* Căn giữa hình ảnh */
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    .page-mb66com__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      margin-top: 20px;
    }

    .page-mb66com__hero-title {
      font-size: 3em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-mb66com__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Nút vàng */
      color: #000;
      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 15px rgba(255, 215, 0, 0.4);
    }

    .page-mb66com__cta-button:hover {
      background-color: #FFF;
      transform: translateY(-3px);
      color: #000;
    }

    /* Floating Login Button */
    .page-mb66com__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700; /* Nút vàng */
      color: #000;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-mb66com__pulse 2s infinite;
    }

    .page-mb66com__floating-button:hover {
      background-color: #FFF;
      transform: scale(1.05);
      color: #000;
    }

    @keyframes page-mb66com__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      }
    }

    /* Giới thiệu */
    .page-mb66com__intro-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #E0E0E0;
    }

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

    .page-mb66com__game-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid #333;
    }

    .page-mb66com__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    }

    .page-mb66com__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-mb66com__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the area, crop if necessary */
      display: block;
    }

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

    .page-mb66com__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      min-height: 48px; /* Ensure consistent height for titles */
    }

    .page-mb66com__game-card-description {
      font-size: 0.95em;
      color: #CCC;
      margin-bottom: 15px;
      min-height: 70px; /* Consistent height for descriptions */
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3; /* Limit to 3 lines */
      -webkit-box-orient: vertical;
    }

    .page-mb66com__game-card-link {
      display: inline-block;
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-mb66com__game-card-link:hover {
      color: #FFF;
    }

    /* Game Providers (if applicable, using gamelogo type) */
    .page-mb66com__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-mb66com__provider-logo {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-mb66com__provider-logo:hover {
      transform: translateY(-5px);
    }

    .page-mb66com__provider-image {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    /* Hướng Dẫn */
    .page-mb66com__guide-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 12px;
      margin-bottom: 20px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: 1px solid #333;
    }

    .page-mb66com__guide-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-mb66com__guide-text {
      color: #E0E0E0;
      margin-bottom: 15px;
    }

    .page-mb66com__guide-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 15px;
      border-radius: 8px;
    }

    .page-mb66com__guide-image {
      width: 100%;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-mb66com__faq-section {
      padding: 60px 0;
      background-color: #000;
    }

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

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

    .page-mb66com__faq-question:hover {
      background-color: #333;
    }

    .page-mb66com__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.3em;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-mb66com__faq-toggle {
      font-size: 2em;
      color: #FFD700;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-mb66com__faq-item.active .page-mb66com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-mb66com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #E0E0E0;
      text-align: left;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-mb66com__faq-item.active .page-mb66com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-mb66com__faq-answer p {
      margin-bottom: 10px;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-mb66com__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

      .page-mb66com__hero-title {
        font-size: 2em;
      }

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

      .page-mb66com__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-mb66com__section-title {
        font-size: 2em;
      }

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

      .page-mb66com__game-grid {
        grid-template-columns: 1fr;
      }

      .page-mb66com__game-card-image-wrapper {
        height: 180px;
      }

      .page-mb66com__game-card-title {
        font-size: 1.3em;
      }

      .page-mb66com__game-card-description {
        font-size: 0.9em;
        min-height: 60px;
      }

      .page-mb66com__guide-title {
        font-size: 1.5em;
      }

      .page-mb66com__faq-question {
        padding: 15px 20px;
      }

      .page-mb66com__faq-question h3 {
        font-size: 1.1em;
      }

      .page-mb66com__faq-toggle {
        font-size: 1.8em;
      }

      .page-mb66com__faq-answer {
        padding: 0 20px;
      }

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

      .page-mb66com__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        bottom: 15px;
        right: 15px;
      }
      /* Image responsiveness for mobile */
      .page-mb66com img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-mb66com__game-card-image-wrapper,
      .page-mb66com__guide-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  