
    /* CSS cho trang 123b nhà cái */
    .page-123bbookmaker {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị che bởi nút nổi */
    }

    .page-123bbookmaker .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    /* Hero Section */
    .page-123bbookmaker .hero-section {
      position: relative;
      text-align: center;
      padding: 0; /* Loại bỏ padding để banner sát top */
      overflow: hidden;
    }

    .page-123bbookmaker .hero-banner-img {
      width: 100%;
      height: auto;
      max-height: 400px; /* Giới hạn chiều cao banner */
      object-fit: cover;
      display: block;
    }

    .page-123bbookmaker .hero-content {
      position: absolute;
      top: 50%; /* Điều chỉnh để nội dung không bị che */
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      width: 90%;
      max-width: 800px;
      z-index: 10;
      background: rgba(0, 0, 0, 0.5); /* Nền mờ để chữ nổi bật */
      padding: 1rem;
      border-radius: 8px;
    }

    .page-123bbookmaker .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #ffcc00; /* Màu vàng nổi bật */
    }

    .page-123bbookmaker .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    /* Floating Login Button */
    .page-123bbookmaker .floating-login-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff0000; /* Màu đỏ nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 100;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: pulse 2s infinite;
    }

    .page-123bbookmaker .floating-login-btn:hover {
      background-color: #cc0000;
      transform: translateY(-3px);
    }

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

    /* Sections */
    .page-123bbookmaker .section {
      padding: 3rem 0;
      border-bottom: 1px solid #333;
    }

    .page-123bbookmaker .section:last-of-type {
      border-bottom: none;
    }

    .page-123bbookmaker .section-title {
      font-size: 2rem;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .page-123bbookmaker .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Game Cards */
    .page-123bbookmaker .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      justify-content: center;
      align-items: stretch;
    }

    .page-123bbookmaker .game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-123bbookmaker .game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    }

    .page-123bbookmaker .game-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #ffcc00;
    }

    .page-123bbookmaker .game-card-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-123bbookmaker .game-card h3 {
      font-size: 1.4rem;
      color: #ffcc00;
      margin-bottom: 0.8rem;
    }

    .page-123bbookmaker .game-card p {
      font-size: 0.95rem;
      color: #cccccc;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .page-123bbookmaker .game-card .btn {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-123bbookmaker .game-card .btn:hover {
      background-color: #0056b3;
    }

    /* General text styles */
    .page-123bbookmaker p {
      margin-bottom: 1rem;
    }

    .page-123bbookmaker ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 1rem;
    }

    .page-123bbookmaker li {
      margin-bottom: 0.5rem;
    }

    .page-123bbookmaker a {
      color: #007bff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-123bbookmaker a:hover {
      color: #0056b3;
      text-decoration: underline;
    }

    /* Call to Action Buttons */
    .page-123bbookmaker .cta-buttons {
      text-align: center;
      margin-top: 3rem;
    }

    .page-123bbookmaker .cta-buttons .btn {
      display: inline-block;
      background-color: #28a745; /* Màu xanh lá */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: bold;
      margin: 0 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-123bbookmaker .cta-buttons .btn:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-123bbookmaker .hero-content h1 {
        font-size: 1.8rem;
      }

      .page-123bbookmaker .hero-content p {
        font-size: 0.9rem;
      }

      .page-123bbookmaker .section-title {
        font-size: 1.7rem;
      }

      .page-123bbookmaker .floating-login-btn {
        padding: 12px 20px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
      }

      .page-123bbookmaker .game-grid {
        grid-template-columns: 1fr;
      }

      .page-123bbookmaker .cta-buttons .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
      }
    }

    @media (max-width: 480px) {
      .page-123bbookmaker .hero-content h1 {
        font-size: 1.5rem;
      }
      .page-123bbookmaker .hero-content {
        padding: 0.8rem;
      }
    }
  