
    :root {
      --page-win13game__primary-color: #e44d26; /* Một màu cam/đỏ rực rỡ */
      --page-win13game__secondary-color: #333;
      --page-win13game__background-light: #f9f9f9;
      --page-win13game__text-color: #333;
      --page-win13game__text-light: #fff;
      --page-win13game__accent-color: #ffc107; /* Màu vàng cho điểm nhấn */
      --page-win13game__border-color: #eee;
    }

    .page-win13game {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-win13game__text-color);
      background-color: var(--page-win13game__background-light);
      padding-bottom: 80px; /* Tạo khoảng trống cho nút nổi */
    }

    .page-win13game__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-win13game__section--hero {
      background: linear-gradient(135deg, var(--page-win13game__primary-color) 0%, #ff6f40 100%);
      color: var(--page-win13game__text-light);
      text-align: center;
      padding: 100px 20px 60px; /* Điều chỉnh padding-top cho header cố định */
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
      position: relative;
      overflow: hidden;
      max-width: none;
    }

    .page-win13game__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.2;
      filter: none; /* Đảm bảo không thay đổi màu gốc */
    }

    .page-win13game__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-win13game__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-win13game__text-light);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-win13game__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-win13game__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-win13game__accent-color);
      color: var(--page-win13game__secondary-color);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-win13game__button:hover {
      background-color: #e0b000;
      transform: translateY(-2px);
    }

    .page-win13game__title {
      font-size: 2em;
      color: var(--page-win13game__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-win13game__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-win13game__accent-color);
      border-radius: 2px;
    }

    .page-win13game__text-center {
      text-align: center;
    }

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

    .page-win13game__card {
      background-color: #f0f8ff;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-win13game__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-win13game__card-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      max-height: 200px; /* Giới hạn chiều cao cho hình ảnh thẻ */
      object-fit: cover; /* Đảm bảo hình ảnh vừa vặn */
      filter: none; /* Đảm bảo không thay đổi màu gốc */
    }

    .page-win13game__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .page-win13game__card-title {
      font-size: 1.4em;
      color: var(--page-win13game__primary-color);
      margin-bottom: 10px;
    }

    .page-win13game__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-win13game__list-item {
      background-color: #e8f5e9; /* Màu xanh lá nhạt */
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: flex-start;
      font-size: 1.1em;
      color: var(--page-win13game__secondary-color);
    }

    .page-win13game__list-item::before {
      content: '✓';
      color: #4CAF50; /* Dấu kiểm màu xanh lá */
      font-weight: bold;
      margin-right: 10px;
      flex-shrink: 0;
      font-size: 1.2em;
      line-height: 1;
    }

    /* Phần FAQ */
    .page-win13game__faq-section {
      background-color: #fff;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-win13game__faq-item {
      border-bottom: 1px solid var(--page-win13game__border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-win13game__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-win13game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.1em;
      color: var(--page-win13game__secondary-color);
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-win13game__faq-question:hover {
      color: var(--page-win13game__primary-color);
    }

    .page-win13game__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click trên div cha */
    }

    .page-win13game__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-win13game__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn toggle chặn sự kiện click trên div cha */
    }

    .page-win13game__faq-item.active .page-win13game__faq-toggle {
      transform: rotate(45deg); /* Thay đổi '+' thành 'x' */
    }

    .page-win13game__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-win13game__faq-item.active .page-win13game__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-win13game__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Nút đăng nhập nổi */
    .page-win13game__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-win13game__primary-color);
      color: var(--page-win13game__text-light);
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Ngăn không cho văn bản xuống dòng */
    }

    .page-win13game__floating-button:hover {
      background-color: #cc4220;
      transform: translateX(-50%) translateY(-3px);
    }

    .page-win13game__floating-button-icon {
      font-size: 1.5em; /* Kích thước biểu tượng */
    }

    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-win13game__section--hero {
        padding-top: 80px; /* Điều chỉnh cho header di động */
        font-size: 0.9em;
      }

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

      .page-win13game__hero-subtitle {
        font-size: 1em;
      }

      .page-win13game__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-win13game__title {
        font-size: 1.8em;
      }

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

      .page-win13game__card {
        padding: 20px;
      }

      .page-win13game__card-title {
        font-size: 1.2em;
      }

      .page-win13game__list-item {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-win13game__faq-question {
        font-size: 1em;
        padding: 10px 0;
      }

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

      .page-win13game__faq-answer {
        padding: 15px 10px !important; /* Quan trọng cho padding FAQ trên di động */
      }

      .page-win13game__floating-button {
        width: calc(100% - 40px);
        max-width: 350px; /* Giới hạn chiều rộng trên màn hình di động lớn hơn */
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* Đảm bảo hình ảnh đáp ứng và không bị lọc màu */
    .page-win13game img {
      max-width: 100%;
      height: auto;
      display: block; /* Loại bỏ khoảng trống thừa bên dưới hình ảnh */
      filter: none; /* Tắt các bộ lọc màu */
    }

    .page-win13game__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-win13game img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-win13game__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  