
    /* Tổng quan */
    .page-sclub88 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-sclub88 a {
      color: #e94560; /* Màu đỏ hồng cho liên kết */
      text-decoration: none;
    }

    .page-sclub88 a:hover {
      text-decoration: underline;
    }

    /* Tiêu đề */
    .page-sclub88 h1, .page-sclub88 h2, .page-sclub88 h3 {
      color: #ffe04d; /* Màu vàng cho tiêu đề */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 20px;
    }

    .page-sclub88 h1 {
      font-size: 2.2em;
      padding: 20px 10px;
    }

    .page-sclub88 h2 {
      font-size: 1.8em;
      margin-top: 40px;
    }

    .page-sclub88 h3 {
      font-size: 1.4em;
      margin-top: 30px;
    }

    /* Phần chính */
    .page-sclub88-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: #0f3460; /* Nền xanh đậm hơn cho các phần */
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

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

    /* Banner chính */
    .page-sclub88-hero {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-sclub88-hero img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block; /* Đảm bảo hình ảnh không có khoảng trống dưới cùng */
      margin: 0 auto; /* Căn giữa hình ảnh */
    }

    /* Nút đăng nhập nổi */
    .page-sclub88-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e94560; /* Màu đỏ hồng */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-sclub88-pulse 2s infinite;
      display: block; /* Đảm bảo nút chiếm toàn bộ chiều rộng có thể */
      max-width: 90%; /* Giới hạn chiều rộng trên thiết bị di động */
    }

    .page-sclub88-floating-button:hover {
      background-color: #ff6f8a;
      text-decoration: none;
    }

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

    /* Danh mục trò chơi */
    .page-sclub88-game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
      text-align: center;
    }

    .page-sclub88-game-card {
      background-color: #1a1a2e;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

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

    .page-sclub88-game-card img {
      width: 100%;
      height: 120px; /* Chiều cao cố định cho hình ảnh sản phẩm */
      object-fit: cover;
      display: block;
    }

    .page-sclub88-game-card h3 {
      font-size: 1.1em;
      padding: 10px;
      margin: 0;
      color: #ffe04d;
      background-color: #0f3460;
    }
    
    .page-sclub88-game-card a {
        display: block;
        color: inherit;
    }

    /* Nhà cung cấp game */
    .page-sclub88-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 10px;
      margin-top: 20px;
      text-align: center;
    }

    .page-sclub88-provider-logo img {
      width: 100%;
      max-width: 100px;
      height: auto;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
      display: block;
      margin: 0 auto;
    }

    .page-sclub88-provider-logo img:hover {
      filter: grayscale(0%);
    }

    /* Tin tức */
    .page-sclub88-news-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-sclub88-news-item {
      background-color: #1a1a2e;
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .page-sclub88-news-item h3 {
      text-align: left;
      margin-top: 0;
      font-size: 1.2em;
      color: #ffe04d;
    }

    .page-sclub88-news-item p {
      font-size: 0.9em;
      color: #cccccc;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-sclub88 h1 {
        font-size: 1.8em;
      }
      .page-sclub88 h2 {
        font-size: 1.5em;
      }
      .page-sclub88 h3 {
        font-size: 1.2em;
      }
      .page-sclub88-game-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-sclub88-game-card img {
        height: 100px;
      }
      .page-sclub88-floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-sclub88 h1 {
        font-size: 1.5em;
      }
      .page-sclub88 h2 {
        font-size: 1.3em;
      }
      .page-sclub88-game-categories {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-sclub88-game-card img {
        height: 80px;
      }
      .page-sclub88-floating-button {
        width: 95%; /* Gần như toàn bộ chiều rộng trên thiết bị rất nhỏ */
        bottom: 15px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  