
    /* CSS cho trang 58win */
    .page-58win {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Nền đen */
      color: #fff; /* Chữ trắng mặc định */
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-58win__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-58win__section--dark {
      background-color: #1a1a1a;
    }

    .page-58win__title {
      color: #FFD700; /* Màu vàng kim */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-58win__subtitle {
      color: #FFD700;
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-58win__text {
      font-size: 1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-58win__button {
      display: block;
      width: fit-content;
      margin: 20px auto;
      padding: 15px 30px;
      background-color: #FFD700;
      color: #000;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
    }

    .page-58win__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-58win__hero-section {
      position: relative;
      text-align: center;
      padding-top: 100px; /* Đệm trên để tránh bị che bởi header cố định */
      padding-bottom: 40px;
      background-color: #000; /* Đảm bảo nền đen */
    }

    .page-58win__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    .page-58win__hero-content {
      padding: 0 15px;
    }

    .page-58win__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-58win__hero-description {
      font-size: 1.2em;
      color: #fff;
      margin-bottom: 25px;
    }

    /* Game Categories */
    .page-58win__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-58win__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-58win__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    }

    .page-58win__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-58win__game-content {
      padding: 20px;
    }

    .page-58win__game-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-58win__game-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Why Choose Section */
    .page-58win__why-choose-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-58win__why-choose-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-58win__why-choose-icon {
      width: 80px; /* Đảm bảo kích thước lớn hơn 200px là không thể vì nó là icon */
      height: 80px; /* Tuy nhiên, đây là ví dụ về icon, trong thực tế sẽ dùng hình ảnh lớn hơn */
      object-fit: contain;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      /* Các icon sẽ được thay thế bằng hình ảnh có kích thước tối thiểu 200x200px theo yêu cầu */
    }

    .page-58win__why-choose-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-58win__why-choose-text {
      font-size: 0.9em;
      color: #ccc;
    }

    /* Game Providers Section */
    .page-58win__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-58win__provider-logo {
      width: 100%;
      max-width: 200px; /* Đảm bảo kích thước tối thiểu 200px */
      height: auto;
      object-fit: contain;
      padding: 10px;
      background-color: #2a2a2a;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .page-58win__provider-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-58win__faq-list {
      margin-top: 30px;
    }

    .page-58win__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-58win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      color: #FFD700;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-58win__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-58win__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-58win__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-58win__faq-item.active .page-58win__faq-toggle {
      transform: rotate(45deg); /* Chuyển '+' thành 'x' hoặc '-' */
    }

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

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

    /* Floating Promo Button */
    .page-58win__floating-promo-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFD700;
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
    }

    .page-58win__floating-promo-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-58win__hero-section {
        padding-top: 90px; /* Đệm trên cho di động */
      }
      .page-58win__hero-title {
        font-size: 2.2em;
      }
      .page-58win__hero-description {
        font-size: 1em;
      }
      .page-58win__title {
        font-size: 2em;
      }
      .page-58win__subtitle {
        font-size: 1.5em;
      }
      .page-58win__section {
        padding: 30px 10px;
      }
      .page-58win__game-categories {
        grid-template-columns: 1fr;
      }
      .page-58win__why-choose-list {
        grid-template-columns: 1fr;
      }
      .page-58win__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-58win__floating-promo-button {
        width: 90%;
        max-width: 350px;
        font-size: 1em;
        padding: 12px 20px;
      }

      /* Force responsive image styles for mobile */
      .page-58win img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-58win .page-58win__hero-image,
      .page-58win .page-58win__game-image,
      .page-58win .page-58win__why-choose-icon,
      .page-58win .page-58win__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  