
    :root {
      --page-32win32__primary-color: #e44d26; /* Cam đậm */
      --page-32win32__secondary-color: #333; /* Xám đậm */
      --page-32win32__accent-color: #f7b731; /* Vàng cam */
      --page-32win32__background-light: #f8f8f8; /* Nền sáng */
      --page-32win32__text-color: #333; /* Màu chữ chính */
      --page-32win32__text-light: #666; /* Màu chữ phụ */
      --page-32win32__white: #ffffff; /* Trắng */
      --page-32win32__border-color: #ddd; /* Màu viền */
      --page-32win32__shadow: rgba(0, 0, 0, 0.1); /* Màu đổ bóng */
    }

    /* Base styles for the page content */
    .page-32win32 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-32win32__text-color);
      background-color: var(--page-32win32__background-light);
      padding: 0;
      margin: 0;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-32win32__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-32win32__container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
    }

    .page-32win32__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
      background-color: var(--page-32win32__white);
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--page-32win32__shadow);
    }

    .page-32win32__section:nth-of-type(even) {
      background-color: var(--page-32win32__background-light);
    }

    .page-32win32__heading {
      color: var(--page-32win32__primary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-32win32__sub-heading {
      color: var(--page-32win32__secondary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-32win32__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-32win32__text-color);
    }

    /* Hero Section */
    .page-32win32__hero-section {
      background: url('[GALLERY:banner:32win32_hero_banner,mobile_gaming,promotion_banner]') no-repeat center center/cover;
      color: var(--page-32win32__white);
      padding-top: 10px; /* For fixed header */
      text-align: center;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      margin-bottom: 0;
    }

    .page-32win32__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
      z-index: -1;
    }

    .page-32win32__hero-content {
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-32win32__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--page-32win32__white);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-32win32__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-32win32__btn-primary {
      display: inline-block;
      background-color: var(--page-32win32__accent-color);
      color: var(--page-32win32__secondary-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-32win32__btn-primary:hover {
      background-color: #f5a623;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-32win32__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-32win32__primary-color);
      color: var(--page-32win32__white);
      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.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
    }

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

    /* Why Choose Section */
    .page-32win32__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px;
      list-style: none; /* Remove default list styling */
      margin: 0;
    }

    .page-32win32__feature-item {
      background-color: var(--page-32win32__white);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px var(--page-32win32__shadow);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-32win32__border-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-32win32__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-32win32__feature-icon {
      width: 200px; /* Min size 200x200px */
      height: 200px;
      margin: 0 auto 15px auto;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

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

    .page-32win32__feature-description {
      font-size: 1em;
      color: var(--page-32win32__text-light);
    }

    /* Game Categories Section */
    .page-32win32__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 20px;
    }

    .page-32win32__game-card {
      background-color: var(--page-32win32__white);
      border-radius: 8px;
      box-shadow: 0 4px 10px var(--page-32win32__shadow);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-32win32__border-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-32win32__game-card:hover {
      transform: translateY(-5px);
    }

    .page-32win32__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-32win32__game-card-content {
      padding: 20px;
    }

    .page-32win32__game-card-title {
      font-size: 1.3em;
      color: var(--page-32win32__primary-color);
      margin-bottom: 10px;
    }

    .page-32win32__game-card-description {
      font-size: 0.95em;
      color: var(--page-32win32__text-light);
      margin-bottom: 15px;
    }

    /* Guide Section */
    .page-32win32__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 20px;
      list-style: none; /* Remove default list styling */
      margin: 0;
    }

    .page-32win32__guide-step-item {
      background-color: var(--page-32win32__white);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px var(--page-32win32__shadow);
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      border: 1px solid var(--page-32win32__border-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-32win32__guide-step-number {
      background-color: var(--page-32win32__primary-color);
      color: var(--page-32win32__white);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      margin: 0 auto 15px auto;
    }

    .page-32win32__guide-step-title {
      font-size: 1.3em;
      color: var(--page-32win32__secondary-color);
      margin-bottom: 10px;
    }

    .page-32win32__guide-step-description {
      font-size: 1em;
      color: var(--page-32win32__text-light);
    }

    /* Promotions Section */
    .page-32win32__promotion-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .page-32win32__promotion-card {
      background-color: var(--page-32win32__white);
      border: 1px solid var(--page-32win32__border-color);
      border-radius: 8px;
      box-shadow: 0 4px 10px var(--page-32win32__shadow);
      overflow: hidden;
      text-align: left;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-32win32__promotion-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-32win32__promotion-card-content {
      padding: 20px;
    }

    .page-32win32__promotion-card-title {
      font-size: 1.4em;
      color: var(--page-32win32__primary-color);
      margin-bottom: 10px;
    }

    .page-32win32__promotion-card-description {
      font-size: 1em;
      color: var(--page-32win32__text-light);
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-32win32__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-32win32__faq-item {
      background-color: var(--page-32win32__white);
      border: 1px solid var(--page-32win32__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px var(--page-32win32__shadow);
      box-sizing: border-box;
    }

    .page-32win32__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-32win32__background-light);
      color: var(--page-32win32__secondary-color);
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid var(--page-32win32__border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-32win32__faq-question:hover {
      background-color: #eaeaea;
    }

    .page-32win32__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-32win32__secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-32win32__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-32win32__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-32win32__faq-item.active .page-32win32__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-32win32__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: var(--page-32win32__text-color);
      text-align: left;
    }

    .page-32win32__faq-item.active .page-32win32__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Call to Action Section */
    .page-32win32__cta-section {
      background-color: var(--page-32win32__primary-color);
      color: var(--page-32win32__white);
      padding: 60px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-32win32__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-32win32__white);
    }

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

    .page-32win32__btn-secondary {
      background-color: var(--page-32win32__accent-color);
      color: var(--page-32win32__secondary-color);
      padding: 15px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-32win32__btn-secondary:hover {
      background-color: #f5a623;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .page-32win32__hero-title {
        font-size: 2.5em;
      }
      .page-32win32__hero-description {
        font-size: 1.1em;
      }
      .page-32win32__heading {
        font-size: 2em;
      }
      .page-32win32__sub-heading {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-32win32__hero-section {
        min-height: 350px;
        padding-top: 10px; /* For fixed header */
      }
      .page-32win32__hero-title {
        font-size: 2em;
      }
      .page-32win32__hero-description {
        font-size: 1em;
      }
      .page-32win32__btn-primary, .page-32win32__btn-secondary {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-32win32__heading {
        font-size: 1.8em;
      }
      .page-32win32__sub-heading {
        font-size: 1.3em;
      }
      .page-32win32__paragraph {
        font-size: 1em;
      }

      /* List item responsive styles */
      .page-32win32__features-grid,
      .page-32win32__game-grid,
      .page-32win32__guide-steps,
      .page-32win32__promotion-card-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
        padding: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-32win32__feature-item,
      .page-32win32__game-card,
      .page-32win32__guide-step-item,
      .page-32win32__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-32win32__faq-question, .page-32win32__faq-question h3 {
        font-size: 1em;
      }
      .page-32win32__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-32win32__hero-title {
        font-size: 1.8em;
      }
      .page-32win32__hero-description {
        font-size: 0.9em;
      }
      .page-32win32__heading {
        font-size: 1.5em;
      }
      .page-32win32__sub-heading {
        font-size: 1.2em;
      }
      .page-32win32__btn-primary, .page-32win32__btn-secondary {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-32win32__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  