
    /* Tổng quan */
    .page-58win-bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Điều chỉnh cho header cố định, padding nhỏ */
    }

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

    .page-58win-bet__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-58win-bet__section--dark {
      background-color: #2a2a2a;
      color: #fff;
    }

    .page-58win-bet__heading {
      font-size: 2.5em;
      color: #c0392b; /* Màu đỏ nổi bật, độ tương phản tốt */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-58win-bet__heading--light {
      color: #f39c12; /* Màu cam nổi bật cho nền tối */
    }

    .page-58win-bet__subheading {
      font-size: 1.8em;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .page-58win-bet__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    .page-58win-bet__paragraph--light {
      color: #ccc;
    }

    /* Hero Section */
    .page-58win-bet__hero-section {
      position: relative;
      overflow: hidden;
      background-color: #1a1a1a;
      color: #fff;
      padding: 60px 0;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .page-58win-bet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4; /* Làm mờ ảnh nền một chút */
    }

    .page-58win-bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5); /* Nền bán trong suốt cho văn bản */
      border-radius: 10px;
    }

    .page-58win-bet__hero-title {
      font-size: 3.5em;
      color: #f39c12; /* Màu cam cho tên thương hiệu */
      margin-bottom: 10px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-58win-bet__hero-subtitle {
      font-size: 1.8em;
      color: #fff;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-58win-bet__promo-text {
      font-size: 1.3em;
      color: #e74c3c; /* Màu đỏ cho các chương trình khuyến mãi */
      font-weight: bold;
      margin-top: 15px;
    }

    /* Floating Buttons */
    .page-58win-bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-58win-bet__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #e74c3c; /* Nút màu đỏ */
      color: #fff;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      white-space: nowrap;
    }

    .page-58win-bet__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-58win-bet__button--secondary {
      background-color: #3498db; /* Nút màu xanh */
    }

    .page-58win-bet__button--secondary:hover {
      background-color: #2980b9;
    }

    /* Product Display */
    .page-58win-bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-58win-bet__product-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-58win-bet__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-58win-bet__product-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-58win-bet__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Đảm bảo hình ảnh vừa vặn */
    }

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

    .page-58win-bet__product-title {
      font-size: 1.5em;
      color: #c0392b;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-58win-bet__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Benefits Section */
    .page-58win-bet__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-58win-bet__benefit-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-58win-bet__benefit-item:hover {
      transform: translateY(-5px);
    }

    .page-58win-bet__benefit-icon {
      width: 200px; /* Đảm bảo kích thước tối thiểu 200px */
      height: 200px; /* Đảm bảo kích thước tối thiểu 200px */
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-58win-bet__benefit-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-58win-bet__benefit-description {
      font-size: 0.9em;
      color: #777;
    }

    /* Promotion Section */
    .page-58win-bet__promo-card {
      background: linear-gradient(135deg, #e74c3c, #c0392b);
      color: #fff;
      padding: 40px;
      border-radius: 15px;
      margin-top: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-58win-bet__promo-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-58win-bet__promo-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      line-height: 1.8;
    }

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

    .page-58win-bet__provider-item {
      text-align: center;
      background-color: #3a3a3a;
      padding: 15px;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

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

    .page-58win-bet__provider-logo {
      width: 200px; /* Đảm bảo kích thước tối thiểu 200px */
      height: 100px; /* Điều chỉnh chiều cao cho logo */
      object-fit: contain;
      max-width: 100%;
      height: auto;
      filter: grayscale(100%) brightness(150%); /* Để dễ nhìn hơn trên nền tối, giữ độ tinh tế */
      transition: filter 0.3s ease;
    }

    .page-58win-bet__provider-item:hover .page-58win-bet__provider-logo {
      filter: grayscale(0%) brightness(100%);
    }

    .page-58win-bet__provider-name {
      color: #fff;
      font-size: 0.9em;
      margin-top: 10px;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-58win-bet__faq-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .page-58win-bet__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

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

    .page-58win-bet__faq-question:hover {
      background-color: #eee;
    }

    .page-58win-bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #2c3e50;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-58win-bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }

    .page-58win-bet__faq-item.active .page-58win-bet__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc tương tự */
    }

    .page-58win-bet__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;
      background-color: #fff;
      color: #555;
      text-align: left;
    }

    .page-58win-bet__faq-item.active .page-58win-bet__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Call to Action Section */
    .page-58win-bet__cta-section {
      background-color: #f39c12; /* Nền màu cam */
      color: #fff;
      padding: 50px 0;
    }

    .page-58win-bet__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-58win-bet__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-58win-bet__heading {
        font-size: 2em;
      }

      .page-58win-bet__subheading {
        font-size: 1.5em;
      }

      .page-58win-bet__hero-title {
        font-size: 2.5em;
      }

      .page-58win-bet__hero-subtitle {
        font-size: 1.3em;
      }

      .page-58win-bet__promo-text {
        font-size: 1.1em;
      }

      .page-58win-bet__product-grid {
        grid-template-columns: 1fr;
      }

      .page-58win-bet__benefits-grid {
        grid-template-columns: 1fr;
      }

      .page-58win-bet__promo-card {
        padding: 30px 20px;
      }

      .page-58win-bet__promo-title {
        font-size: 1.8em;
      }

      .page-58win-bet__promo-description {
        font-size: 1em;
      }

      .page-58win-bet__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 10px;
        justify-content: space-around;
        gap: 5px;
      }

      .page-58win-bet__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

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

      /* Yêu cầu responsive cho các mục danh sách trên di động */
      .page-58win-bet__product-card,
      .page-58win-bet__benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-58win-bet__product-grid,
      .page-58win-bet__benefits-grid,
      .page-58win-bet__providers-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-58win-bet__product-image-wrapper {
        height: 180px;
      }

      .page-58win-bet__benefit-icon {
        width: 150px;
        height: 150px;
      }
      
      .page-58win-bet__provider-logo {
        width: 150px;
        height: 75px;
      }

      .page-58win-bet__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-58win-bet__hero-title {
        font-size: 2em;
      }
      .page-58win-bet__hero-subtitle {
        font-size: 1.1em;
      }
      .page-58win-bet__cta-title {
        font-size: 2em;
      }
      .page-58win-bet__cta-description {
        font-size: 1em;
      }
      .page-58win-bet__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-58win-bet__faq-question h3 {
        font-size: 1em;
      }
      .page-58win-bet__faq-answer {
        padding: 15px 15px !important;
      }
    }
  