
    /* Tổng thể */
    .page-43-88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 50px; /* Thêm khoảng trống cuối trang */
    }

    /* Đây là một fallback để đảm bảo nội dung không bị che bởi header cố định.
       Lý tưởng là shared.css sẽ xử lý padding-top cho body.
       Nếu shared.css đã thêm padding-top cho body, phần này sẽ không cần thiết. */
    .page-43-88__main-wrapper {
        padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset not defined */
    }

    @media (max-width: 768px) {
        .page-43-88__main-wrapper {
            padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
        }
    }

    /* Tiêu đề chính */
    .page-43-88__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-43-88__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]');
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
    }

    .page-43-88__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-43-88__title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }

    .page-43-88__subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 300;
    }

    .page-43-88__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-43-88__cta-button {
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-43-88__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-43-88__cta-button--secondary {
        background-color: #007bff;
        color: #fff;
    }

    .page-43-88__cta-button--secondary:hover {
        background-color: #0056b3;
    }

    /* Các phần nội dung */
    .page-43-88__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 40px auto;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-43-88__section-heading {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-43-88__section-heading::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: #fdbb2d;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-43-88__sub-heading {
        font-size: 1.5em;
        color: #1a2a6c;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 25px;
    }

    /* Lưới sản phẩm/game */
    .page-43-88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

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

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

    .page-43-88__game-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
      max-width: 100%; /* Đảm bảo hình ảnh responsive */
    }

    .page-43-88__game-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin: 20px 15px 10px;
      font-weight: 600;
    }

    .page-43-88__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* Tính năng nổi bật */
    .page-43-88__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-43-88__feature-item {
        background-color: #e8f4f8;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border: 1px solid #d0e7f1;
        box-sizing: border-box; /* Quan trọng cho responsive */
    }

    .page-43-88__feature-item strong {
        display: block;
        font-size: 1.2em;
        color: #007bff;
        margin-bottom: 10px;
    }

    /* Khuyến mãi */
    .page-43-88__promotion-card {
        background-color: #fff3cd;
        border: 1px solid #ffeeba;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-43-88__promotion-icon {
        width: 80px; /* Smallest allowed size */
        height: 80px; /* Smallest allowed size */
        object-fit: contain;
        flex-shrink: 0;
        max-width: 100%; /* Đảm bảo hình ảnh responsive */
    }

    .page-43-88__promotion-content h3 {
        color: #856404;
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.4em;
    }

    .page-43-88__promotion-content p {
        color: #856404;
        margin-bottom: 0;
    }

    /* Phương thức thanh toán & Nhà cung cấp */
    .page-43-88__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 25px;
        justify-items: center;
        align-items: center;
    }

    .page-43-88__logo-item {
        padding: 15px;
        background-color: #f0f0f0;
        border-radius: 8px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px; /* Consistent height for logos */
        width: 100%;
        box-sizing: border-box;
        max-width: 160px; /* Giới hạn chiều rộng cho item */
    }

    .page-43-88__logo-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    /* FAQ */
    .page-43-88__faq-section {
        background-color: #f0f8ff;
        border: 1px solid #e0f0ff;
    }

    .page-43-88__faq-item {
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-43-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e9f7ff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      color: #1a2a6c;
      font-weight: 600;
    }

    .page-43-88__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit the parent */
      color: #1a2a6c;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-43-88__faq-question:hover {
      background-color: #d0edff;
    }

    .page-43-88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-43-88__faq-item.active .page-43-88__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-43-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      background-color: #fefefe;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-43-88__hero-section {
        padding: 40px 15px;
      }

      .page-43-88__title {
        font-size: 2em;
      }

      .page-43-88__subtitle {
        font-size: 1em;
      }

      .page-43-88__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-43-88__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-43-88__section {
        padding: 30px 15px;
        margin: 20px auto;
      }

      .page-43-88__section-heading {
        font-size: 1.8em;
      }

      .page-43-88__game-grid,
      .page-43-88__features-list,
      .page-43-88__logo-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
      }

      .page-43-88__game-card {
        margin: 0 auto;
        max-width: 350px;
      }

      .page-43-88__feature-item,
      .page-43-88__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }
      .page-43-88__features-list, .page-43-88__logo-grid {
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
      }

      .page-43-88__promotion-card {
        flex-direction: column;
        text-align: center;
      }

      .page-43-88__promotion-icon {
        margin-bottom: 15px;
      }

      .page-43-88__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-43-88__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive */
      .page-43-88__game-image,
      .page-43-88__promotion-icon,
      .page-43-88__logo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-43-88__game-card img, .page-43-88__promotion-card img, .page-43-88__logo-item img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
          overflow: hidden !important;
      }
      .page-43-88__game-card, .page-43-88__promotion-card, .page-43-88__logo-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          overflow: hidden !important;
      }
    }
  