
    /* Tổng thể */
    .page-sumvipclub {
      font-family: 'Arial', sans-serif;
      color: #333; /* Màu chữ xám đen */
      line-height: 1.6;
      background-color: #f0f2f5; /* Nền xám nhạt */
      padding-bottom: 80px; /* Tạo khoảng trống cho nút nổi */
    }

    /* Tiêu đề chính */
    .page-sumvipclub-h1 {
      text-align: center;
      color: #c0392b; /* Đỏ sẫm cho tiêu đề */
      margin-top: 20px;
      margin-bottom: 20px;
      font-size: 2.2em;
      padding: 0 15px;
    }
    @media (min-width: 768px) {
      .page-sumvipclub-h1 {
        font-size: 2.8em;
      }
    }

    /* Phần banner */
    .page-sumvipclub-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .page-sumvipclub-banner img {
      width: 100%;
      height: auto;
      display: block;
    }
    .page-sumvipclub-banner-text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
      color: #fff;
      padding: 15px;
      text-align: center;
    }
    .page-sumvipclub-banner-text h2 {
      margin: 0;
      font-size: 1.8em;
      color: #f1c40f; /* Vàng cho điểm nhấn */
    }
    .page-sumvipclub-banner-text p {
      margin: 5px 0 0;
      font-size: 1.1em;
    }
    @media (min-width: 768px) {
      .page-sumvipclub-banner-text h2 {
        font-size: 2.5em;
      }
      .page-sumvipclub-banner-text p {
        font-size: 1.3em;
      }
    }

    /* Nút đăng nhập/đăng ký nổi */
    .page-sumvipclub-floating-btn-container {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8); /* Nền tối bán trong suốt */
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    }
    .page-sumvipclub-floating-btn {
      flex: 1;
      margin: 0 5px;
      padding: 12px 15px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    .page-sumvipclub-login-btn {
      background-color: #2ecc71; /* Xanh lá cho đăng nhập */
    }
    .page-sumvipclub-login-btn:hover {
      background-color: #27ae60;
    }
    .page-sumvipclub-register-btn {
      background-color: #e74c3c; /* Đỏ cho đăng ký */
    }
    .page-sumvipclub-register-btn:hover {
      background-color: #c0392b;
    }
    @media (min-width: 768px) {
      .page-sumvipclub-floating-btn-container {
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        max-width: 400px;
        border-radius: 10px 10px 0 0;
        bottom: 0;
        padding: 15px;
      }
      .page-sumvipclub-floating-btn {
        font-size: 1.2em;
        padding: 15px 20px;
      }
    }

    /* Phần nội dung chung */
    .page-sumvipclub-section {
      background-color: #fff;
      margin: 20px 15px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .page-sumvipclub-section h2 {
      color: #2c3e50; /* Xám xanh đậm */
      font-size: 1.8em;
      margin-bottom: 15px;
      text-align: center;
    }
    .page-sumvipclub-section h3 {
      color: #34495e; /* Xám xanh đậm hơn một chút */
      font-size: 1.4em;
      margin-top: 20px;
      margin-bottom: 10px;
    }
    .page-sumvipclub-section p {
      margin-bottom: 10px;
      color: #555;
    }
    .page-sumvipclub-section ul {
      list-style: disc;
      margin-left: 20px;
      margin-bottom: 10px;
      color: #555;
    }
    .page-sumvipclub-section li {
      margin-bottom: 5px;
    }
    .page-sumvipclub-section strong {
      color: #c0392b;
    }

    /* Lưới sản phẩm/game */
    .page-sumvipclub-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }
    .page-sumvipclub-game-item {
      background-color: #ecf0f1; /* Nền xám nhạt cho các mục */
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
      padding: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-sumvipclub-game-item img {
      width: 100%;
      height: 100px; /* Chiều cao cố định cho ảnh */
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }
    .page-sumvipclub-game-item h4 {
      margin: 0 0 10px;
      font-size: 1.1em;
      color: #2c3e50;
    }
    .page-sumvipclub-game-item a {
      display: block;
      background-color: #3498db; /* Xanh lam cho nút hành động */
      color: #fff;
      padding: 8px 10px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Đẩy xuống cuối */
    }
    .page-sumvipclub-game-item a:hover {
      background-color: #2980b9;
    }

    /* Phần tải ứng dụng */
    .page-sumvipclub-download-options {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }
    .page-sumvipclub-download-link {
      display: flex;
      align-items: center;
      background-color: #2c3e50; /* Xám xanh đậm cho nút tải */
      color: #fff;
      padding: 15px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-sumvipclub-download-link:hover {
      background-color: #34495e;
    }
    .page-sumvipclub-download-link img {
      width: 30px;
      height: 30px;
      margin-right: 15px;
    }

    /* Các nhà cung cấp game */
    .page-sumvipclub-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 10px;
      margin-top: 20px;
      text-align: center;
    }
    .page-sumvipclub-provider-item img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      border-radius: 5px;
      background-color: #ecf0f1;
      padding: 5px;
    }

    /* Xếp hạng game */
    .page-sumvipclub-ranking-list {
      list-style: none;
      padding: 0;
      margin-top: 15px;
    }
    .page-sumvipclub-ranking-list li {
      background-color: #ecf0f1;
      padding: 12px 15px;
      margin-bottom: 8px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      font-weight: bold;
      color: #2c3e50;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    .page-sumvipclub-ranking-list li:nth-child(1) { background-color: #f1c40f; color: #fff; } /* Vàng cho hạng 1 */
    .page-sumvipclub-ranking-list li:nth-child(2) { background-color: #bdc3c7; color: #fff; } /* Bạc cho hạng 2 */
    .page-sumvipclub-ranking-list li:nth-child(3) { background-color: #cd7f32; color: #fff; } /* Đồng cho hạng 3 */
    .page-sumvipclub-ranking-list li span {
      margin-right: 10px;
      font-size: 1.2em;
      min-width: 25px;
      text-align: center;
    }

    /* Liên kết khuyến mãi */
    .page-sumvipclub-promo-link {
      display: block;
      background-color: #f39c12; /* Cam cho khuyến mãi */
      color: #fff;
      padding: 15px 20px;
      text-align: center;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      margin-top: 20px;
      transition: background-color 0.3s ease;
    }
    .page-sumvipclub-promo-link:hover {
      background-color: #e67e22;
    }

    /* Điều chỉnh cho màn hình lớn hơn */
    @media (min-width: 768px) {
      .page-sumvipclub-section {
        margin: 30px auto;
        max-width: 960px;
        padding: 30px;
      }
      .page-sumvipclub-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-sumvipclub-download-options {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
      }
      .page-sumvipclub-download-link {
        flex: 1;
        max-width: 300px;
        justify-content: center;
      }
      .page-sumvipclub-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  