
    /* CSS Styles for page-58win1 */
    .page-58win1 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Khoảng trống cho nút cố định */
    }

    .page-58win1__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 25px;
    }

    .page-58win1__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-58win1__section--dark h2,
    .page-58win1__section--dark h3 {
      color: #ecf0f1;
    }

    .page-58win1__main-heading {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-58win1__sub-heading {
      text-align: center;
      color: #34495e;
      margin-bottom: 30px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-58win1__text-content {
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-58win1__text-content p {
      margin-bottom: 15px;
    }

    /* Hero Section */
    .page-58win1__hero-section {
      text-align: center;
      background-color: #1a2a3a; /* Nền tối hơn để tương phản với văn bản */
      color: #fff;
      padding: 10px 0 40px 0; /* padding-top cho header cố định, padding-bottom cho nội dung */
      margin-bottom: 25px;
      border-radius: 8px;
      overflow: hidden; /* Đảm bảo nội dung nằm trong giới hạn */
    }

    .page-58win1__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-58win1__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-58win1__hero-title {
      font-size: 3em;
      margin-top: 20px;
      margin-bottom: 15px;
      color: #f39c12; /* Màu nhấn */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-58win1__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #ecf0f1;
    }

    /* Floating Login Button */
    .page-58win1__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e74c3c; /* Màu đỏ nhấn */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap; /* Ngăn chặn văn bản xuống dòng */
    }

    .page-58win1__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

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

    .page-58win1__game-card {
      background-color: #f1f2f6;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-58win1__game-card:hover {
      transform: translateY(-5px);
    }

    .page-58win1__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Chiều cao cố định để nhất quán */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-58win1__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Đảm bảo hình ảnh bao phủ khu vực mà không bị biến dạng */
      width: 100%; /* Đảm bảo hình ảnh lấp đầy chiều rộng của wrapper */
      height: 100%; /* Đảm bảo hình ảnh lấp đầy chiều cao của wrapper */
    }

    .page-58win1__game-card-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin: 15px 10px 5px 10px;
      font-weight: 600;
    }

    .page-58win1__game-card-link {
      text-decoration: none;
      color: inherit;
    }
    .page-58win1__game-card-link:hover .page-58win1__game-card-title {
        color: #e74c3c;
    }

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

    .page-58win1__provider-logo-wrapper {
      width: 100%;
      max-width: 150px; /* Chiều rộng tối đa cho logo */
      height: 80px; /* Chiều cao cố định cho logo */
      overflow: hidden;
      box-sizing: border-box;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px;
    }

    .page-58win1__provider-logo {
      max-width: 90%;
      max-height: 90%;
      display: block;
      object-fit: contain;
    }

    /* Promotions */
    .page-58win1__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-58win1__promo-item {
      background-color: #ecf0f1;
      border-left: 5px solid #e74c3c;
      padding: 15px 20px;
      margin-bottom: 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
    }

    .page-58win1__promo-item strong {
      color: #e74c3c;
      margin-right: 10px;
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-58win1__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-58win1__faq-item {
      background-color: #f1f2f6;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    }

    .page-58win1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #34495e;
      color: #fff;
      font-weight: 600;
      font-size: 1.1em;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-58win1__faq-question:hover {
      background-color: #2c3e50;
    }

    .page-58win1__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: #fff;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click trên phần tử cha */
    }

    .page-58win1__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn toggle chặn sự kiện click trên phần tử cha */
    }

    .page-58win1__faq-item.active .page-58win1__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc - */
    }

    .page-58win1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Padding ban đầu */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #333;
      background-color: #f8f9fa;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    .page-58win1__faq-answer p {
      margin: 0 0 10px 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-58win1__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }

      .page-58win1__hero-section {
        padding-top: 10px; /* Điều chỉnh cho header cố định trên di động */
        padding-bottom: 30px;
      }

      .page-58win1__hero-title {
        font-size: 2.2em;
      }

      .page-58win1__hero-description {
        font-size: 1em;
        padding: 0 10px;
      }

      .page-58win1__main-heading {
        font-size: 2em;
      }

      .page-58win1__sub-heading {
        font-size: 1.5em;
      }

      .page-58win1__game-categories {
        grid-template-columns: 1fr;
      }

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

      .page-58win1__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-58win1__game-card-image-wrapper {
        height: 180px;
      }

      .page-58win1__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-58win1__faq-answer {
        padding: 0 15px; /* Padding ban đầu cho di động */
      }

      .page-58win1__faq-item.active .page-58win1__faq-answer {
        padding: 15px !important; /* Padding cuối cùng cho di động */
      }

      /* Tối ưu hóa phản hồi hình ảnh cho di động */
      .page-58win1__hero-image,
      .page-58win1__game-card-image,
      .page-58win1__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-58win1__hero-image-wrapper,
      .page-58win1__game-card-image-wrapper,
      .page-58win1__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-58win1__hero-title {
        font-size: 1.8em;
      }
      .page-58win1__main-heading {
        font-size: 1.8em;
      }
      .page-58win1__sub-heading {
        font-size: 1.3em;
      }
    }
  