
    /* Tổng quan */
    .page-789win {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a; /* Nền tối */
      color: #f0f0f0; /* Chữ sáng, độ tương phản tốt */
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-789win a {
      color: #ffcc00; /* Màu vàng cam cho liên kết */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-789win a:hover {
      color: #ffe066;
      text-decoration: underline;
    }

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

    .page-789win .section-title {
      text-align: center;
      color: #ffcc00;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
      position: relative;
      padding-bottom: 10px;
    }

    .page-789win .section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    /* Banner chính */
    .page-789win-hero {
      background-color: #2a2a2a;
      padding: 20px 0;
      margin-bottom: 30px;
    }

    .page-789win .hero-banner {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-789win .hero-banner img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    /* Nút đăng nhập nổi */
    .page-789win .floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: center;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-789win .floating-login-btn {
      background-color: #e74c3c; /* Màu đỏ nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      animation: pulse 1.5s infinite;
      display: block; /* Đảm bảo nút chiếm toàn bộ chiều rộng có thể */
      max-width: 300px; /* Giới hạn chiều rộng trên di động */
      width: 100%;
      transition: background-color 0.3s ease;
    }

    .page-789win .floating-login-btn:hover {
      background-color: #c0392b;
      animation: none;
    }

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

    /* Giới thiệu */
    .page-789win .intro-section-text {
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #ccc;
    }

    /* Lưới sản phẩm/trò chơi */
    .page-789win .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

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

    .page-789win .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-789win .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;
      border-bottom: 1px solid #333;
    }

    .page-789win .game-card h3 {
      font-size: 1.1em;
      color: #ffcc00;
      padding: 10px;
      margin: 0;
      flex-grow: 1; /* Đảm bảo tiêu đề chiếm không gian còn lại */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-789win .game-card h3 a {
      color: #ffcc00;
      text-decoration: none;
      display: block;
      width: 100%;
    }

    /* Nhà cung cấp */
    .page-789win .provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-bottom: 40px;
    }

    .page-789win .provider-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .page-789win .provider-item:hover {
      transform: translateY(-3px);
    }

    .page-789win .provider-item img {
      max-width: 100%;
      height: 60px; /* Chiều cao cố định cho logo nhà cung cấp */
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    /* Phương thức thanh toán */
    .page-789win .payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-bottom: 40px;
    }

    .page-789win .payment-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .page-789win .payment-item:hover {
      transform: translateY(-3px);
    }

    .page-789win .payment-item img {
      max-width: 100%;
      height: 50px; /* Chiều cao cố định cho logo thanh toán */
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    /* Danh sách lợi ích/FAQ */
    .page-789win .content-list {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .page-789win .content-list li {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      color: #f0f0f0;
    }

    .page-789win .content-list li::before {
      content: '✔';
      color: #ffcc00;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
      line-height: 1;
    }

    .page-789win .faq-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-789win .faq-question {
      padding: 15px;
      background-color: #333;
      color: #ffcc00;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .page-789win .faq-question:hover {
      background-color: #444;
    }

    .page-789win .faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-789win .faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-789win .faq-answer {
      padding: 0 15px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out, padding 0.5s ease-out;
      color: #ccc;
    }

    .page-789win .faq-answer p {
      padding-bottom: 15px;
      margin: 0;
    }

    .page-789win .faq-answer.active {
      max-height: 200px; /* Adjust as needed for content */
      padding-top: 15px;
    }

    /* Nút kêu gọi hành động cuối trang */
    .page-789win .cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto 20px auto;
      background-color: #28a745; /* Màu xanh lá */
      color: #fff;
      padding: 15px 40px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease;
    }

    .page-789win .cta-button:hover {
      background-color: #218838;
    }

    /* Media Queries cho thiết bị di động */
    @media (max-width: 768px) {
      .page-789win .section-title {
        font-size: 1.8em;
      }

      .page-789win .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-789win .game-card img {
        height: 100px;
      }

      .page-789win .game-card h3 {
        font-size: 1em;
      }

      .page-789win .provider-grid,
      .page-789win .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
      }

      .page-789win .provider-item img {
        height: 50px;
      }

      .page-789win .payment-item img {
        height: 40px;
      }

      .page-789win .floating-login-btn {
        font-size: 1em;
        padding: 12px 20px;
      }
    }

    @media (max-width: 480px) {
      .page-789win .section-title {
        font-size: 1.6em;
      }

      .page-789win .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-789win .game-card img {
        height: 80px;
      }

      .page-789win .game-card h3 {
        font-size: 0.9em;
      }

      .page-789win .provider-grid,
      .page-789win .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
      }

      .page-789win .provider-item img {
        height: 40px;
      }

      .page-789win .payment-item img {
        height: 30px;
      }

      .page-789win .floating-login-btn {
        font-size: 0.9em;
        padding: 10px 15px;
        max-width: 250px;
      }
    }
  