
    /* Tổng quan */
    .page-gamesunwin {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị nút nổi che */
    }

    /* Đảm bảo khu vực an toàn cho banner */
    .page-gamesunwin__hero {
        padding-top: 150px; /* Khu vực an toàn 140px-180px cho header và menu nổi */
        position: relative;
        overflow: hidden;
    }

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

    /* Tiêu đề */
    .page-gamesunwin h1, .page-gamesunwin h2, .page-gamesunwin h3 {
      color: #f7b32b; /* Màu vàng cam cho tiêu đề */
      text-align: center;
      margin-bottom: 25px;
      margin-top: 40px;
    }

    .page-gamesunwin h1 {
      font-size: 2.5em;
      padding-top: 20px; /* Thêm padding cho H1 */
    }
    .page-gamesunwin h2 {
      font-size: 2em;
    }
    .page-gamesunwin h3 {
      font-size: 1.5em;
      color: #ffd700; /* Màu vàng sáng hơn cho H3 */
    }

    /* Các phần */
    .page-gamesunwin__section {
      padding: 40px 0;
      border-bottom: 1px solid rgba(247, 179, 43, 0.1); /* Đường phân cách mờ */
    }
    .page-gamesunwin__section:last-of-type {
      border-bottom: none;
    }

    /* Banner chính */
    .page-gamesunwin__hero-image {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto; /* Căn giữa */
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      object-fit: contain; /* Giữ nguyên tỷ lệ, không bị kéo dãn */
    }

    /* Nút đăng nhập nổi */
    .page-gamesunwin__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, #ff6b6b, #ee4c7c); /* Gradient màu hồng đỏ */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
      white-space: nowrap; /* Ngăn nút bị xuống dòng */
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .page-gamesunwin__floating-button:hover {
      background: linear-gradient(90deg, #ee4c7c, #ff6b6b);
      transform: translateX(-50%) translateY(-5px);
    }

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

    .page-gamesunwin__card {
      background-color: #2c2c44; /* Nền thẻ tối hơn */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      padding: 15px;
    }
    .page-gamesunwin__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-gamesunwin__card-image {
      width: 100%;
      height: 120px; /* Chiều cao cố định cho ảnh */
      object-fit: cover; /* Đảm bảo ảnh lấp đầy khung */
      border-radius: 8px;
      margin-bottom: 10px;
    }
    .page-gamesunwin__card-gamelogo {
      width: 100%;
      height: 80px; /* Chiều cao cố định cho logo nhà cung cấp */
      object-fit: contain; /* Đảm bảo logo không bị cắt */
      border-radius: 8px;
      margin-bottom: 10px;
      background-color: #3a3a5e; /* Nền nhẹ cho logo */
      padding: 5px;
    }


    .page-gamesunwin__card-title {
      font-weight: bold;
      font-size: 1.1em;
      color: #f7b32b;
      margin-bottom: 10px;
    }
    .page-gamesunwin__card-title a {
        color: #f7b32b;
        text-decoration: none;
    }
    .page-gamesunwin__card-title a:hover {
        text-decoration: underline;
    }

    .page-gamesunwin__card-description {
      font-size: 0.9em;
      color: #c0c0c0;
    }

    /* Danh sách các tính năng/lợi ích */
    .page-gamesunwin__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
    .page-gamesunwin__list-item {
      background-color: #2c2c44;
      padding: 15px 20px;
      border-radius: 8px;
      flex: 1 1 auto; /* Cho phép item co giãn */
      min-width: 280px; /* Chiều rộng tối thiểu */
      max-width: 48%; /* Tối đa 2 cột trên desktop */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .page-gamesunwin__list-item::before {
      content: '✔';
      color: #4CAF50; /* Màu xanh lá cho dấu tích */
      font-weight: bold;
      font-size: 1.2em;
    }
    .page-gamesunwin__list-item strong {
        color: #f7b32b;
    }

    /* Văn bản */
    .page-gamesunwin p {
      margin-bottom: 15px;
      text-align: justify;
      color: #e0e0e0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-gamesunwin h1 {
        font-size: 2em;
      }
      .page-gamesunwin h2 {
        font-size: 1.6em;
      }
      .page-gamesunwin__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-gamesunwin__card-image {
        height: 100px;
      }
      .page-gamesunwin__card-gamelogo {
        height: 60px;
      }
      .page-gamesunwin__card-title {
        font-size: 1em;
      }
      .page-gamesunwin__list-item {
        min-width: unset;
        max-width: 100%;
      }
      .page-gamesunwin__floating-button {
        padding: 12px 25px;
        font-size: 1em;
        gap: 5px;
      }
    }

    @media (max-width: 480px) {
      .page-gamesunwin h1 {
        font-size: 1.8em;
      }
      .page-gamesunwin h2 {
        font-size: 1.4em;
      }
      .page-gamesunwin__grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-gamesunwin__card-image {
        height: 80px;
      }
      .page-gamesunwin__card-gamelogo {
        height: 50px;
      }
      .page-gamesunwin__floating-button {
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
        bottom: 15px;
        text-align: center;
        justify-content: center;
      }
    }
  