
    /* Page specific styles for 123 b */
    .page-123b {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng cho độ tương phản tốt */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
      direction: ltr; /* Hướng chữ từ trái sang phải */
    }

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

    .page-123b .section-title {
      font-size: 2.2em;
      color: #ffcc00; /* Màu nhấn */
      text-align: center;
      margin-bottom: 30px;
      padding-top: 40px;
      position: relative;
      text-transform: uppercase;
    }

    .page-123b .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
      margin: 10px auto 0;
    }

    /* Hero Banner */
    .page-123b .hero-banner {
      width: 100%;
      overflow: hidden;
      margin-bottom: 20px;
      padding-top: 160px; /* Vùng an toàn cho menu nổi, 140-180px */
      background-color: #222; /* Nền giữ chỗ */
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 250px; /* Chiều cao tối thiểu cho banner */
    }

    .page-123b .hero-banner img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Đảm bảo tỷ lệ gốc, không che/kéo giãn */
      margin: 0 auto;
    }

    /* Floating Login Button */
    .page-123b .floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%; /* Chiều rộng phản hồi */
      max-width: 300px; /* Chiều rộng tối đa cho màn hình lớn hơn */
    }

    .page-123b .floating-login-button {
      display: block;
      width: 100%;
      padding: 15px 20px;
      background: linear-gradient(90deg, #ff6600, #ffcc00); /* Gradient hấp dẫn */
      color: #fff;
      text-align: center;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      animation: pulse 2s infinite; /* Hoạt ảnh bắt mắt */
    }

    .page-123b .floating-login-button:hover {
      background: linear-gradient(90deg, #ffcc00, #ff6600);
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

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

    /* Product Display / Game Categories */
    .page-123b .game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }

    .page-123b .game-category-item {
      background-color: #2c2c2c;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none; /* Đối với các mục liên kết */
      color: #f0f0f0;
    }

    .page-123b .game-category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-123b .game-category-item img {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-123b .game-category-item h3 {
      font-size: 1.1em;
      margin: 0;
      color: #ffcc00;
    }

    /* Game Providers */
    .page-123b .game-providers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-bottom: 50px;
      background-color: #222;
      padding: 30px 15px;
      border-radius: 10px;
    }

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

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

    .page-123b .provider-logo img {
      max-width: 80%;
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    .page-123b .provider-logo span {
      display: block;
      margin-top: 5px;
      font-size: 0.8em;
      color: #aaa;
    }

    /* About Section */
    .page-123b .about-section {
      background-color: #2c2c2c;
      padding: 40px 20px;
      border-radius: 10px;
      margin-bottom: 50px;
    }

    .page-123b .about-section h2 {
      color: #ffcc00;
      margin-bottom: 20px;
      text-align: center;
    }

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

    .page-123b .about-section ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-123b .about-section li {
      margin-bottom: 8px;
    }

    .page-123b .about-section a {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-123b .about-section a:hover {
      color: #fff;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-123b .section-title {
        font-size: 1.8em;
      }

      .page-123b .game-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-123b .game-category-item img {
        max-width: 80px;
      }

      .page-123b .game-providers {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        padding: 20px 10px;
      }

      .page-123b .provider-logo img {
        max-width: 70%;
      }

      .page-123b .floating-login-button {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-123b .hero-banner {
          padding-top: 140px; /* Điều chỉnh vùng an toàn cho màn hình nhỏ hơn */
          min-height: 200px;
      }
    }

    @media (max-width: 480px) {
      .page-123b .section-title {
        font-size: 1.5em;
      }

      .page-123b .game-categories {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
      }

      .page-123b .game-category-item img {
        max-width: 60px;
      }

      .page-123b .game-category-item h3 {
        font-size: 1em;
      }

      .page-123b .game-providers {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 10px;
      }

      .page-123b .floating-button-wrapper {
        width: 95%;
      }
      .page-123b .hero-banner {
          min-height: 180px;
      }
    }
  