
    /* CSS cho trang 123b app */
    .page-123bapp {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      background-color: #0a0a0a; /* Nền tối */
      color: #f0f0f0; /* Chữ sáng để đảm bảo độ tương phản */
      line-height: 1.6;
      padding-bottom: 80px; /* Đệm dưới để tránh che footer */
      padding-top: 160px; /* Vùng an toàn cho banner/menu cố định trên cùng */
      box-sizing: border-box;
      overflow-x: hidden; /* Ngăn chặn tràn ngang */
    }

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

    /* Tiêu đề */
    .page-123bapp h1, .page-123bapp h2, .page-123bapp h3 {
      color: #ffd700; /* Màu vàng nổi bật */
      text-align: center;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .page-123bapp h1 {
      font-size: 2.5em;
      margin-top: 20px;
    }

    .page-123bapp h2 {
      font-size: 2em;
      border-bottom: 2px solid #ffd700;
      padding-bottom: 10px;
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123bapp h3 {
      font-size: 1.5em;
      color: #f0f0f0;
    }

    .page-123bapp p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-123bapp strong {
      color: #ffd700;
    }

    /* Nút đăng nhập/đăng ký nổi bật */
    .page-123bapp .floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e50914; /* Màu đỏ nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-123bapp .floating-button:hover {
      transform: translateY(-5px);
      background-color: #ff3d47;
    }
    
    /* Banner chính */
    .page-123bapp .hero-section {
      text-align: center;
      padding: 20px 0;
      background-color: #1a1a1a;
      border-bottom: 5px solid #ffd700;
    }

    .page-123bapp .hero-section img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    /* Phần giới thiệu */
    .page-123bapp .intro-text {
      text-align: center;
      margin: 30px 0;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Lưới trò chơi */
    .page-123bapp .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-123bapp .game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid #333;
    }

    .page-123bapp .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-123bapp .game-card img {
      max-width: 80px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-123bapp .game-card h3 {
      font-size: 1.1em;
      margin: 0;
      color: #ffd700;
    }

    /* Phần khuyến mãi */
    .page-123bapp .promo-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-123bapp .promo-list li {
      background-color: #1a1a1a;
      margin-bottom: 10px;
      padding: 15px;
      border-left: 5px solid #e50914;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-123bapp .promo-list li strong {
      color: #e50914;
    }

    /* Nhà cung cấp trò chơi */
    .page-123bapp .provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-top: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-123bapp .provider-logo {
      background-color: #1a1a1a;
      padding: 10px;
      border-radius: 5px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      border: 1px solid #333;
    }

    .page-123bapp .provider-logo:hover {
      transform: scale(1.05);
    }

    .page-123bapp .provider-logo img {
      max-width: 100%;
      height: 40px; /* Chiều cao cố định cho logo nhà cung cấp */
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    /* Hướng dẫn tải app */
    .page-123bapp .download-steps {
      margin-top: 30px;
      text-align: center;
    }

    .page-123bapp .download-steps .step {
      background-color: #1a1a1a;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid #333;
    }

    .page-123bapp .download-steps .step h3 {
      color: #ffd700;
      margin-top: 0;
      text-align: left;
    }

    .page-123bapp .download-steps .step p {
      text-align: left;
    }

    .page-123bapp .qr-code-img {
      max-width: 200px;
      height: auto;
      margin: 20px auto;
      display: block;
      border: 5px solid #ffd700;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    /* Câu hỏi thường gặp */
    .page-123bapp .faq-item {
      background-color: #1a1a1a;
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      border: 1px solid #333;
    }

    .page-123bapp .faq-question {
      padding: 15px;
      background-color: #2a2a2a;
      cursor: pointer;
      font-weight: bold;
      color: #f0f0f0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .page-123bapp .faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-123bapp .faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-123bapp .faq-answer {
      padding: 15px;
      background-color: #1a1a1a;
      display: none;
      color: #e0e0e0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-123bapp h1 {
        font-size: 2em;
      }
      .page-123bapp h2 {
        font-size: 1.7em;
      }
      .page-123bapp .floating-button {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1.1em;
      }
      .page-123bapp {
        padding-bottom: 100px; /* Tăng đệm dưới cho nút nổi */
      }
    }

    @media (max-width: 480px) {
      .page-123bapp h1 {
        font-size: 1.8em;
      }
      .page-123bapp h2 {
        font-size: 1.5em;
      }
      .page-123bapp .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-123bapp .provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
      }
    }
  