
    /* CSS cho trang 123b app */
    .page-123bapp {
      font-family: 'Arial', sans-serif;
      color: #333; /* Màu chữ đậm, tương phản tốt với nền sáng */
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

    .page-123bapp-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    @media (min-width: 768px) {
      .page-123bapp-section {
        padding: 30px 25px;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .page-123bapp-header-banner {
      background-color: #0056b3; /* Màu xanh đậm */
      color: #fff; /* Chữ trắng, tương phản tốt */
      text-align: center;
      padding: 20px 15px 0;
      border-radius: 0 0 8px 8px;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }

    .page-123bapp-banner-img {
      width: 100%;
      height: auto;
      max-width: 600px; /* Giới hạn chiều rộng ảnh banner */
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-123bapp-header-banner h1 {
      font-size: 2em;
      margin-top: 15px;
      margin-bottom: 10px;
      line-height: 1.2;
      color: #FFC107; /* Màu vàng nổi bật, tương phản tốt trên nền xanh đậm */
    }
    @media (min-width: 768px) {
      .page-123bapp-header-banner h1 {
        font-size: 2.8em;
      }
    }

    .page-123bapp-header-banner p {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123bapp-cta-group {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 25px;
      margin-bottom: 25px;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (min-width: 600px) {
      .page-123bapp-cta-group {
        flex-direction: row;
        justify-content: center;
      }
    }

    .page-123bapp-btn {
      display: block;
      width: 100%;
      padding: 12px 20px;
      border-radius: 25px;
      text-align: center;
      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-123bapp-btn-primary {
      background-color: #FFC107; /* Vàng */
      color: #333; /* Chữ đậm trên nền vàng, tương phản tốt */
    }
    .page-123bapp-btn-primary:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-123bapp-btn-secondary {
      background-color: #28a745; /* Xanh lá */
      color: #fff; /* Chữ trắng trên nền xanh lá, tương phản tốt */
    }
    .page-123bapp-btn-secondary:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-123bapp-floating-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 30px);
      max-width: 400px;
      background-color: #dc3545; /* Đỏ */
      color: #fff; /* Chữ trắng trên nền đỏ, tương phản tốt */
      padding: 15px 20px;
      border-radius: 30px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .page-123bapp-floating-btn:hover {
      background-color: #c82333;
      transform: translateX(-50%) translateY(-3px);
    }

    .page-123bapp h2 {
      color: #0056b3; /* Màu xanh đậm */
      font-size: 1.8em;
      margin-bottom: 20px;
      text-align: center;
    }
    @media (min-width: 768px) {
      .page-123bapp h2 {
        font-size: 2.2em;
      }
    }

    .page-123bapp h3 {
      color: #0056b3; /* Màu xanh đậm */
      font-size: 1.4em;
      margin-top: 25px;
      margin-bottom: 15px;
      border-bottom: 2px solid #eee;
      padding-bottom: 5px;
    }

    .page-123bapp ul {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 20px;
    }
    .page-123bapp ol {
      list-style: decimal;
      padding-left: 25px;
      margin-bottom: 20px;
    }

    .page-123bapp li {
      margin-bottom: 10px;
    }

    .page-123bapp-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    @media (min-width: 600px) {
      .page-123bapp-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
    }

    .page-123bapp-game-card {
      background-color: #f9f9f9; /* Nền xám nhạt */
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
      padding: 15px;
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .page-123bapp-game-card:hover {
      transform: translateY(-5px);
    }

    .page-123bapp-game-card img {
      width: 100%;
      max-width: 120px; /* Kích thước ảnh game */
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .page-123bapp-game-card h4 {
      font-size: 1.1em;
      color: #0056b3; /* Màu xanh đậm */
      margin: 0;
    }

    .page-123bapp-download-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    @media (min-width: 768px) {
      .page-123bapp-download-steps {
        flex-direction: row;
        justify-content: space-around;
      }
    }

    .page-123bapp-step-card {
      flex: 1;
      background-color: #f9f9f9; /* Nền xám nhạt */
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
    }

    .page-123bapp-step-card img {
      max-width: 150px;
      margin-bottom: 15px;
      height: auto;
      border-radius: 8px;
    }

    .page-123bapp-step-card h4 {
      color: #0056b3; /* Màu xanh đậm */
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-123bapp-step-card ol {
      text-align: left;
      list-style-position: inside;
    }
    .page-123bapp-step-card li {
      margin-bottom: 8px;
    }

    .page-123bapp-promotions-list li {
      background-color: #e6f7ff; /* Nền xanh nhạt */
      border-left: 5px solid #007bff; /* Viền xanh */
      padding: 10px 15px;
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .page-123bapp-faq-item {
      margin-bottom: 15px;
      padding: 15px;
      background-color: #f9f9f9; /* Nền xám nhạt */
      border-radius: 8px;
    }
    .page-123bapp-faq-item strong {
      display: block;
      color: #0056b3; /* Màu xanh đậm */
      margin-bottom: 5px;
    }

    .page-123bapp-text-center {
      text-align: center;
    }

    .page-123bapp-link {
        color: #007bff; /* Màu xanh dương, tương phản tốt */
        text-decoration: none;
    }
    .page-123bapp-link:hover {
        text-decoration: underline;
    }
  