
    :root {
      --primary-color: #e44d26; /* Một màu đỏ cam sống động, hấp dẫn */
      --secondary-color: #ffb74d; /* Một màu vàng cam bổ sung */
      --text-dark: #2c3e50; /* Màu chữ tối cho độ tương phản cao */
      --text-light: #ecf0f1; /* Màu chữ sáng cho nền tối */
      --background-light: #f5f7fa; /* Nền sáng */
      --background-dark: #34495e; /* Nền tối */
      --accent-color: #2ecc71; /* Màu xanh lá cây cho hành động/thành công */
      --border-color: #ddd;
    }

    .page-12-win {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--background-light);
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

    .page-12-win__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-12-win__section--dark {
      background-color: var(--background-dark);
      color: var(--text-light);
    }

    .page-12-win__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }
    .page-12-win__section--dark .page-12-win__section-title {
        color: var(--secondary-color);
    }

    .page-12-win__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-dark);
    }
    .page-12-win__section--dark .page-12-win__section-subtitle {
        color: var(--text-light);
    }

    /* Hero Section */
    .page-12-win__hero-section {
      position: relative;
      background-color: #1a1a2e; /* Nền tối cho cảm giác game */
      color: var(--text-light);
      padding: 10px 0 60px 0; /* Đệm trên được điều chỉnh cho tiêu đề cố định */
      text-align: center;
      overflow: hidden;
    }

    .page-12-win__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
      max-width: 100%; /* Đảm bảo hình ảnh phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
    }

    .page-12-win__hero-content {
      position: relative;
      z-index: 1;
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-12-win__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-12-win__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--text-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-12-win__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: white;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none; /* Đảm bảo nó trông giống một nút */
      cursor: pointer;
    }

    .page-12-win__cta-button:hover {
      background-color: #d63f1c;
    }

    /* Nút nổi */
    .page-12-win__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-12-win__floating-button {
      display: block;
      background-color: var(--accent-color);
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      text-align: center;
      min-width: 100px;
      box-sizing: border-box;
    }

    .page-12-win__floating-button--register {
      background-color: var(--primary-color);
    }

    .page-12-win__floating-button--login {
      background-color: var(--background-dark);
    }

    .page-12-win__floating-button:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    /* Hiển thị sản phẩm */
    .page-12-win__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto 0 auto;
    }

    .page-12-win__product-card {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

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

    .page-12-win__product-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh sản phẩm */
      object-fit: cover;
      max-width: 100%; /* Đảm bảo hình ảnh phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
    }

    .page-12-win__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-12-win__product-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-12-win__product-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Phần Khuyến mãi */
    .page-12-win__promotion-item {
      display: flex;
      align-items: center;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      margin-bottom: 25px;
      padding: 20px;
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-12-win__promotion-item:hover {
      transform: translateY(-3px);
    }

    .page-12-win__promotion-image {
      width: 250px;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 20px;
      flex-shrink: 0;
      max-width: 100%; /* Đảm bảo hình ảnh phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
    }

    .page-12-win__promotion-details {
      flex-grow: 1;
    }

    .page-12-win__promotion-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-12-win__promotion-description {
      font-size: 1em;
      color: #444;
    }

    /* Phần Lợi ích */
    .page-12-win__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto 0 auto;
    }

    .page-12-win__benefit-card {
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      text-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-12-win__benefit-card:hover {
      background-color: #2c3e50;
    }

    .page-12-win__benefit-icon {
      width: 200px; /* Kích thước tối thiểu 200x200 */
      height: 200px; /* Kích thước tối thiểu 200x200 */
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%; /* Đảm bảo hình ảnh phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
    }

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

    .page-12-win__benefit-description {
      font-size: 0.95em;
      color: var(--text-light);
    }

    /* Phương thức thanh toán & Nhà cung cấp trò chơi */
    .page-12-win__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 40px auto 0 auto;
      align-items: center;
      justify-items: center;
    }

    .page-12-win__logo-item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: 80px; /* Chiều cao cố định cho logo */
        box-sizing: border-box;
    }

    .page-12-win__logo-image {
      max-width: 100%;
      max-height: 60px; /* Điều chỉnh dựa trên kích thước logo mong muốn trong mục */
      object-fit: contain;
      max-width: 100%; /* Đảm bảo hình ảnh phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-12-win__faq-section {
      text-align: left;
    }

    .page-12-win__faq-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
      border-radius: 10px;
      overflow: hidden;
      background-color: white;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .page-12-win__faq-item {
      border-bottom: 1px solid var(--border-color);
    }

    .page-12-win__faq-item:last-child {
      border-bottom: none;
    }

    .page-12-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f9f9f9;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-12-win__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-12-win__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--text-dark);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-12-win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng bật tắt chặn sự kiện click */
      min-width: 20px; /* Đảm bảo biểu tượng bật tắt có đủ không gian */
      text-align: center;
    }

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

    .page-12-win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      font-size: 0.95em;
      box-sizing: border-box;
    }

    .page-12-win__faq-item.active .page-12-win__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Lời kêu gọi hành động cuối trang */
    .page-12-win__cta-bottom {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 50px 20px;
    }

    .page-12-win__cta-bottom-title {
      font-size: 2em;
      margin-bottom: 15px;
      color: var(--text-light);
    }

    .page-12-win__cta-bottom-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Điều chỉnh phản hồi */
    @media (max-width: 768px) {
      .page-12-win__hero-title {
        font-size: 2.2em;
      }

      .page-12-win__hero-description {
        font-size: 1em;
      }

      .page-12-win__section-title {
        font-size: 2em;
      }

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

      .page-12-win__product-grid,
      .page-12-win__benefits-grid,
      .page-12-win__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      /* Yêu cầu phản hồi mục danh sách */
      .page-12-win__product-card,
      .page-12-win__benefit-card,
      .page-12-win__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Điều chỉnh đệm cho di động */
      }

      .page-12-win__product-description,
      .page-12-win__benefit-description,
      .page-12-win__promotion-description,
      .page-12-win__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-12-win__promotion-item {
        flex-direction: column;
        text-align: center;
      }

      .page-12-win__promotion-image {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: 180px; /* Điều chỉnh chiều cao cho di động */
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      /* Yêu cầu phản hồi hình ảnh */
      .page-12-win__hero-image,
      .page-12-win__product-image,
      .page-12-win__benefit-icon,
      .page-12-win__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      /* Vùng chứa hình ảnh */
      .page-12-win__hero-section,
      .page-12-win__product-card,
      .page-12-win__benefit-card,
      .page-12-win__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-12-win__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 15px;
        right: 20px;
        left: 20px;
        justify-content: space-around;
      }
      
      .page-12-win__floating-button {
          flex-grow: 1;
          padding: 10px 15px;
      }

      .page-12-win__faq-question {
        padding: 15px 20px;
      }
      
      .page-12-win__faq-question h3 {
          font-size: 1em;
      }

      .page-12-win__faq-answer {
        padding: 15px 20px !important;
      }

      .page-12-win__cta-bottom-title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 480px) {
      .page-12-win__hero-title {
        font-size: 1.8em;
      }
      .page-12-win__section-title {
        font-size: 1.8em;
      }
      .page-12-win__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-12-win__floating-buttons {
        gap: 8px;
      }
      .page-12-win__floating-button {
          font-size: 0.9em;
      }
    }
  