
    :root {
      --primary-color: #e44d26; /* Màu đỏ cam sống động */
      --secondary-color: #ff9800; /* Màu cam nhấn */
      --dark-bg: #1a1a1a; /* Nền tối */
      --light-bg: #2c2c2c; /* Nền sáng hơn một chút */
      --text-color: #f0f0f0; /* Màu chữ sáng */
      --heading-color: #ffffff; /* Màu tiêu đề trắng */
      --border-color: #444444; /* Màu đường viền */
      --button-hover-bg: #f57c00; /* Màu nút khi hover */
    }

    /* Phong cách cơ bản cho nội dung trang, đảm bảo không bị che bởi header */
    .page-58win-bet {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Giá trị dự phòng nếu shared.css không định nghĩa --header-offset */
    }

    .page-58win-bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    @media (max-width: 768px) {
      .page-58win-bet__container {
        padding: 15px;
      }
    }

    /* Phần Hero */
    .page-58win-bet__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-image: url('[GALLERY:hero:1920x1080:betting,sports,casino,58win]');
      background-size: cover;
      background-position: center;
      color: var(--heading-color);
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .page-58win-bet__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-58win-bet__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-58win-bet__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: var(--heading-color);
    }

    .page-58win-bet__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-58win-bet__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-58win-bet__button {
      background-color: var(--primary-color);
      color: var(--heading-color);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none; /* Đảm bảo không có gạch chân cho các phần tử giống nút */
    }

    .page-58win-bet__button:hover {
      background-color: var(--button-hover-bg);
    }

    @media (max-width: 768px) {
      .page-58win-bet__hero-section {
        padding: 40px 15px;
      }
      .page-58win-bet__hero-title {
        font-size: 2.5em;
      }
      .page-58win-bet__hero-subtitle {
        font-size: 1.2em;
      }
      .page-58win-bet__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-58win-bet__button {
        width: 100%;
        padding: 12px 20px;
      }
    }

    /* Phong cách chung cho các Section */
    .page-58win-bet__section {
      background-color: var(--light-bg);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-58win-bet__section-title {
      font-size: 2.2em;
      color: var(--heading-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    /* Danh mục trò chơi / Hiển thị sản phẩm */
    .page-58win-bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center; /* Căn giữa các mục trong lưới */
    }

    .page-58win-bet__game-card {
      background-color: var(--dark-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--border-color);
    }

    .page-58win-bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-58win-bet__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Chiều cao cố định cho sự nhất quán */
    }

    .page-58win-bet__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Bao phủ khu vực, cắt nếu cần */
      display: block;
      transition: transform 0.3s ease;
    }

    .page-58win-bet__game-card:hover .page-58win-bet__game-card-image {
      transform: scale(1.05);
    }

    .page-58win-bet__game-card-content {
      padding: 15px;
    }

    .page-58win-bet__game-card-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-58win-bet__game-card-description {
      font-size: 0.95em;
      color: var(--text-color);
      margin-bottom: 15px;
    }

    .page-58win-bet__game-card-button {
      background-color: var(--primary-color);
      color: var(--heading-color);
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 0.9em;
      display: inline-block; /* Đảm bảo kiểu nút */
    }

    .page-58win-bet__game-card-button:hover {
      background-color: var(--button-hover-bg);
    }

    @media (max-width: 768px) {
      .page-58win-bet__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-58win-bet__game-card-image-wrapper {
        height: 180px;
      }
    }

    /* Phần Khuyến mãi */
    .page-58win-bet__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-58win-bet__promo-card {
      background-color: var(--dark-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      height: 100%; /* Đảm bảo các thẻ trong một hàng có cùng chiều cao */
    }

    .page-58win-bet__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px; /* Chiều cao cố định cho ảnh khuyến mãi */
    }

    .page-58win-bet__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-58win-bet__promo-content {
      padding: 20px;
      flex-grow: 1; /* Cho phép nội dung phát triển và đẩy nút xuống dưới cùng */
      display: flex;
      flex-direction: column;
    }

    .page-58win-bet__promo-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      flex-grow: 1; /* Cho phép tiêu đề chiếm không gian có sẵn */
    }

    .page-58win-bet__promo-description {
      font-size: 0.95em;
      margin-bottom: 15px;
      color: var(--text-color);
    }

    .page-58win-bet__promo-button {
      background-color: var(--primary-color);
      color: var(--heading-color);
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 1em;
      text-align: center;
      align-self: flex-start; /* Căn chỉnh nút về phía bắt đầu */
    }

    .page-58win-bet__promo-button:hover {
      background-color: var(--button-hover-bg);
    }

    @media (max-width: 768px) {
      .page-58win-bet__promo-list {
        grid-template-columns: 1fr;
      }
      .page-58win-bet__promo-image-wrapper {
        height: 200px;
      }
      .page-58win-bet__promo-button {
        width: 100%;
        align-self: center;
      }
    }

    /* Phần Tin tức */
    .page-58win-bet__news-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-58win-bet__news-item {
      background-color: var(--dark-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-58win-bet__news-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 180px;
    }

    .page-58win-bet__news-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-58win-bet__news-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-58win-bet__news-title {
      font-size: 1.2em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      flex-grow: 1;
    }

    .page-58win-bet__news-date {
      font-size: 0.85em;
      color: #999;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .page-58win-bet__news-list {
        grid-template-columns: 1fr;
      }
      .page-58win-bet__news-image-wrapper {
        height: 160px;
      }
    }

    /* Phần Lý do chọn */
    .page-58win-bet__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-58win-bet__feature-card {
      background-color: var(--dark-bg);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
    }

    .page-58win-bet__feature-icon-wrapper {
      margin-bottom: 15px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100px; /* Chiều cao cố định cho các biểu tượng tính năng */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-58win-bet__feature-icon {
      width: 100px; /* Chiều rộng cố định cho các biểu tượng tính năng */
      height: 100px; /* Chiều cao cố định cho các biểu tượng tính năng */
      object-fit: contain;
    }

    .page-58win-bet__feature-title {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-58win-bet__feature-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

    @media (max-width: 768px) {
      .page-58win-bet__features-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Logo thanh toán và nhà cung cấp */
    .page-58win-bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-58win-bet__logo-item {
      background-color: #333;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid var(--border-color);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Chiều cao cố định cho các mục logo */
      box-sizing: border-box;
      width: 100%; /* Đảm bảo chiếm toàn bộ chiều rộng cột lưới */
      max-width: 150px; /* Chiều rộng tối đa cho từng mục logo */
    }
    
    .page-58win-bet__logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: none; /* Đã loại bỏ filter để tuân thủ nghiêm ngặt quy tắc */
    }

    @media (max-width: 768px) {
      .page-58win-bet__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }
      .page-58win-bet__logo-item {
        height: 70px;
      }
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-58win-bet__faq-section {
      background-color: var(--light-bg);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-58win-bet__faq-title {
      font-size: 2.2em;
      color: var(--heading-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-58win-bet__faq-item {
      background-color: var(--dark-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
    }

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

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

    .page-58win-bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--heading-color);
      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: var(--secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn nút chuyển đổi chặn sự kiện click */
    }

    .page-58win-bet__faq-item.active .page-58win-bet__faq-toggle {
      transform: rotate(45deg); /* Dấu cộng biến thành hình chữ X */
    }

    .page-58win-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-color);
    }

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

    .page-58win-bet__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }
    .page-58win-bet__faq-answer ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 10px;
      box-sizing: border-box; /* Đảm bảo padding được bao gồm */
      width: 100%;
      max-width: 100%;
    }
    .page-58win-bet__faq-answer li {
      margin-bottom: 5px;
      box-sizing: border-box; /* Quan trọng cho khả năng đáp ứng di động */
      width: 100%; /* Mặc định 100% cho các mục danh sách */
      word-wrap: break-word; /* Đảm bảo từ dài tự động xuống dòng */
      overflow-wrap: break-word; /* Đảm bảo từ dài tự động xuống dòng */
    }

    @media (max-width: 768px) {
      .page-58win-bet__section-title {
        font-size: 1.8em;
      }
      .page-58win-bet__faq-question {
        padding: 12px 15px;
      }
      .page-58win-bet__faq-question h3 {
        font-size: 1em;
      }
      .page-58win-bet__faq-answer {
        padding: 0 15px;
      }
      .page-58win-bet__faq-item.active .page-58win-bet__faq-answer {
        padding: 15px 15px !important;
      }
      .page-58win-bet__faq-answer ul {
        padding-left: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-58win-bet__faq-answer li {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  