
    /* CSS cho trang 98win01 */
    .page-98win01 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
    }

    .page-98win01__hero-section {
      background-color: #0d1a26; /* Nền tối cho banner */
      color: #fff;
      text-align: center;
      padding: 120px 0 40px 0; /* Đảm bảo không bị che bởi header cố định */
      position: relative;
      overflow: hidden;
    }

    .page-98win01__hero-image {
      width: 100%;
      max-width: 1200px; /* Giới hạn chiều rộng ảnh hero */
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-98win01__hero-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-98win01__hero-content h1 {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffcc00; /* Màu vàng nổi bật */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-98win01__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-98win01__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #0d1a26;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-98win01__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-98win01__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e00000; /* Màu đỏ nổi bật cho ưu đãi */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: pulse 2s infinite;
    }

    .page-98win01__floating-button:hover {
      background-color: #c00000;
      transform: scale(1.05);
    }

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

    .page-98win01__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }
    .page-98win01__section:first-of-type {
        padding-top: 60px; /* Đảm bảo phần đầu tiên của main có đủ padding nếu không có hero */
    }

    .page-98win01__section-title {
      font-size: 2.5em;
      color: #0d1a26;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-98win01__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

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

    .page-98win01__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-98win01__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Cố định chiều cao cho ảnh sản phẩm */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-98win01__game-card-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Đảm bảo ảnh cover toàn bộ khu vực */
      min-height: 200px; /* Đảm bảo kích thước tối thiểu */
      min-width: 200px;
    }

    .page-98win01__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-98win01__game-card-content h3 {
      font-size: 1.5em;
      color: #0d1a26;
      margin-bottom: 10px;
    }

    .page-98win01__game-card-content p {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-98win01__game-card-link {
      display: inline-block;
      background-color: #0d1a26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-98win01__game-card-link:hover {
      background-color: #ffcc00;
      color: #0d1a26;
    }

    .page-98win01__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-98win01__provider-logo {
      width: 100%;
      max-width: 180px; /* Kích thước logo nhà cung cấp */
      height: auto;
      display: block;
      padding: 10px;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      min-width: 200px; /* Đảm bảo kích thước tối thiểu */
      min-height: 200px;
      object-fit: contain;
    }

    .page-98win01__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-98win01__text-content {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-98win01__text-content h2 {
        font-size: 1.8em;
        color: #0d1a26;
        margin-top: 30px;
        margin-bottom: 15px;
        text-align: left;
    }

    .page-98win01__text-content h3 {
        font-size: 1.4em;
        color: #0d1a26;
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: left;
    }

    .page-98win01__list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 20px;
    }

    .page-98win01__list-item {
      position: relative;
      padding-left: 30px;
      margin-bottom: 10px;
      font-size: 1.05em;
      color: #555;
    }

    .page-98win01__list-item::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: #ffcc00;
      font-weight: bold;
    }

    .page-98win01__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto 30px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-98win01__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-98win01__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-98win01__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #0d1a26;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-98win01__faq-question:hover {
      color: #ffcc00;
    }

    .page-98win01__faq-question h3 {
        margin: 0;
        padding: 0;
        font-size: 1.2em; /* Giữ kích thước tương tự cha */
        color: inherit; /* Kế thừa màu từ cha */
        pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-98win01__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
      transition: transform 0.3s ease;
    }

    .page-98win01__faq-item.active .page-98win01__faq-toggle {
      transform: rotate(45deg); /* Biểu tượng xoay khi mở */
    }

    .page-98win01__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

    .page-98win01__faq-item.active .page-98win01__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-98win01__hero-section {
        padding-top: 100px; /* Điều chỉnh cho mobile header */
        padding-bottom: 30px;
      }

      .page-98win01__hero-content h1 {
        font-size: 2.2em;
      }

      .page-98win01__hero-content p {
        font-size: 1em;
      }

      .page-98win01__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-98win01__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-98win01__section {
        padding: 40px 15px;
      }

      .page-98win01__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-98win01__game-grid {
        grid-template-columns: 1fr;
      }

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

      .page-98win01__provider-logo {
        max-width: 150px;
        min-width: 150px;
        min-height: 150px;
      }

      .page-98win01__text-content {
        font-size: 1em;
      }

      .page-98win01__text-content h2 {
          font-size: 1.6em;
      }

      .page-98win01__faq-section {
        padding: 40px 15px;
      }

      .page-98win01__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }

      .page-98win01__faq-question h3 {
          font-size: 1.1em;
      }

      .page-98win01__faq-answer {
        padding: 15px 10px;
      }

      /* Responsive image optimization */
      .page-98win01 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-98win01__game-card-image-wrapper,
      .page-98win01__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
        .page-98win01__hero-content h1 {
            font-size: 1.8em;
        }
        .page-98win01__floating-button {
            font-size: 0.8em;
            padding: 8px 15px;
        }
    }
  