
    /* Tổng quan */
    .page-acb88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f0f2f5;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    /* Các phần chính */
    .page-acb88-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .page-acb88-section-dark {
      background-color: #0056b3; /* Màu xanh đậm cho phần nổi bật */
      color: #ffffff;
      padding: 30px 15px;
      text-align: center;
    }
    .page-acb88-section-dark h2, .page-acb88-section-dark p {
      color: #ffffff;
    }

    /* Tiêu đề */
    .page-acb88 h1, .page-acb88 h2, .page-acb88 h3 {
      color: #0056b3; /* Xanh dương đậm */
      text-align: center;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-acb88 h1 {
      font-size: 2.2em;
      margin-top: 10px;
      color: #003366; /* Màu xanh đậm hơn cho H1 */
    }

    .page-acb88 h2 {
      font-size: 1.8em;
      border-bottom: 2px solid #0056b3;
      padding-bottom: 10px;
      margin-top: 30px;
    }

    .page-acb88 h3 {
      font-size: 1.4em;
      color: #0066cc;
    }

    /* Banner */
    .page-acb88-hero {
      position: relative;
      text-align: center;
      background-color: #e0f2f7;
      padding: 0;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-acb88-banner-image {
      width: 100%;
      height: auto;
      max-height: 250px; /* Giới hạn chiều cao banner trên di động */
      object-fit: cover;
      display: block;
    }

    .page-acb88-hero-content {
      padding: 20px 15px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); /* Lớp phủ gradient */
      color: #fff;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding-top: 50px; /* Đảm bảo đủ không gian cho văn bản */
    }
    .page-acb88-hero-content h1 {
      color: #ffffff;
      margin-bottom: 10px;
      font-size: 1.8em;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    .page-acb88-hero-content p {
      font-size: 1em;
      margin-bottom: 20px;
      color: #eee;
    }

    /* Nút CTA */
    .page-acb88-btn {
      display: inline-block;
      background-color: #ffc107; /* Màu vàng nổi bật */
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-acb88-btn:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
      color: #333;
    }

    /* Nút nổi đăng nhập */
    .page-acb88-floating-btn {
      position: fixed;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #dc3545; /* Màu đỏ nổi bật */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      animation: page-acb88-pulse 1.5s infinite;
      white-space: nowrap; /* Ngăn nút xuống dòng */
    }

    .page-acb88-floating-btn:hover {
      background-color: #c82333;
      color: #fff;
    }

    @keyframes page-acb88-pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Lưới sản phẩm/game */
    .page-acb88-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
      justify-content: center; /* Căn giữa các mục */
    }

    .page-acb88-game-card {
      background-color: #fefefe;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center; /* Căn giữa nội dung thẻ */
    }

    .page-acb88-game-card:hover {
      transform: translateY(-5px);
    }

    .page-acb88-game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-acb88-game-card-content {
      padding: 10px;
      flex-grow: 1; /* Đảm bảo nội dung chiếm hết không gian */
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-acb88-game-card h3 {
      font-size: 1.1em;
      margin-top: 0;
      margin-bottom: 5px;
      color: #0056b3;
    }
    .page-acb88-game-card h3 a {
        color: #0056b3;
        text-decoration: none;
    }
    .page-acb88-game-card h3 a:hover {
        text-decoration: underline;
    }


    .page-acb88-game-card p {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 0;
    }

    /* Danh sách */
    .page-acb88-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-acb88-list li {
      background-color: #e9ecef;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      font-size: 1em;
      color: #444;
    }

    .page-acb88-list li::before {
      content: '✔️';
      margin-right: 10px;
      color: #28a745; /* Màu xanh lá cây */
      font-weight: bold;
    }

    /* Nhà cung cấp & Thanh toán */
    .page-acb88-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-acb88-logos img {
      height: 40px;
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }

    .page-acb88-logos img:hover {
      filter: grayscale(0%);
    }

    /* Phương tiện truyền thông xã hội */
    .page-acb88-social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-acb88-social-links a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background-color: #0056b3;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5em;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-acb88-social-links a:hover {
      background-color: #004085;
      color: #fff;
    }

    /* Responsive cho desktop */
    @media (min-width: 768px) {
      .page-acb88-hero-content h1 {
        font-size: 3em;
      }
      .page-acb88-hero-content p {
        font-size: 1.2em;
      }
      .page-acb88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-acb88-section {
        padding: 30px;
      }
      .page-acb88 h1 {
        font-size: 2.8em;
      }
      .page-acb88 h2 {
        font-size: 2.2em;
      }
      .page-acb88-banner-image {
        max-height: 400px;
      }
    }
  