
    /* Tổng quan */
    .page-iwinclub {
      font-family: 'Arial', sans-serif;
      color: #ffffff; /* Màu chữ trắng */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Để tránh nút nổi bị che */
    }

    .page-iwinclub a {
      color: #ffd700; /* Màu vàng kim cho liên kết */
      text-decoration: none;
    }

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

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

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

    .page-iwinclub h1 {
      font-size: 2.5em;
      margin-top: 30px;
    }

    .page-iwinclub h2 {
      font-size: 2em;
      border-bottom: 2px solid #333;
      padding-bottom: 10px;
      margin-top: 40px;
    }

    .page-iwinclub h3 {
      font-size: 1.5em;
      margin-top: 30px;
    }

    /* Banner chính */
    .page-iwinclub .hero-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #000;
      text-align: center; /* Đảm bảo banner và chữ nằm giữa */
      padding-bottom: 20px; /* Khoảng cách dưới banner */
    }

    .page-iwinclub .hero-banner img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Căn giữa hình ảnh */
      max-width: 1000px; /* Giới hạn chiều rộng ảnh để không quá lớn trên desktop */
    }

    .page-iwinclub .hero-content {
      position: relative; /* Đảm bảo nội dung nằm trên banner */
      z-index: 10;
      padding: 15px;
      color: #ffffff;
    }

    .page-iwinclub .hero-content h1 {
      color: #ffd700;
      font-size: 2.2em;
      margin-bottom: 10px;
    }

    .page-iwinclub .hero-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-iwinclub .btn-primary {
      display: inline-block;
      background-color: #ff4500; /* Màu cam đỏ */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      text-transform: uppercase;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-iwinclub .btn-primary:hover {
      background-color: #e63900;
      text-decoration: none;
    }

    /* Nút đăng nhập nổi */
    .page-iwinclub .floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ff4500; /* Màu cam đỏ */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: pulse 1.5s infinite;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: block; /* Đảm bảo chiếm toàn bộ không gian để căn giữa text */
    }

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

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

    /* Phần sản phẩm/game */
    .page-iwinclub .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-iwinclub .game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

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

    .page-iwinclub .game-card img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .page-iwinclub .game-card h3 {
      color: #ffd700;
      font-size: 1.1em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Phần văn bản chung */
    .page-iwinclub section {
      margin-bottom: 40px;
      padding: 0 15px;
    }

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

    .page-iwinclub ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-iwinclub ol {
      list-style-type: decimal;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-iwinclub li {
      margin-bottom: 8px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-iwinclub h1 {
        font-size: 2em;
      }
      .page-iwinclub h2 {
        font-size: 1.7em;
      }
      .page-iwinclub .hero-content h1 {
        font-size: 1.8em;
      }
      .page-iwinclub .floating-button {
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
      }
      .page-iwinclub .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }

    @media (max-width: 480px) {
      .page-iwinclub h1 {
        font-size: 1.8em;
      }
      .page-iwinclub h2 {
        font-size: 1.5em;
      }
      .page-iwinclub .hero-content h1 {
        font-size: 1.5em;
      }
      .page-iwinclub .btn-primary {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-iwinclub .floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
        bottom: 10px;
        right: 10px;
      }
      .page-iwinclub .game-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột trên màn hình rất nhỏ */
      }
    }
  