
    :root {
      --page-32wim__primary-color: #007bff;
      --page-32wim__secondary-color: #6c757d;
      --page-32wim__accent-color: #ffc107;
      --page-32wim__background-light: #f8f9fa;
      --page-32wim__background-dark: #343a40;
      --page-32wim__text-light: #ffffff;
      --page-32wim__text-dark: #212529;
      --page-32wim__border-color: #dee2e6;
      --page-32wim__button-bg: #28a745;
      --page-32wim__button-text: #ffffff;
      --page-32wim__hover-darken: #1e7e34;
      --page-32wim__faq-bg: #e9ecef;
      --page-32wim__faq-border: #ced4da;
    }

    .page-32wim {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-32wim__text-dark);
      background-color: var(--page-32wim__background-light);
    }

    .page-32wim__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: var(--page-32wim__text-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-32wim__section--dark {
      background-color: var(--page-32wim__background-dark);
      color: var(--page-32wim__text-light);
    }

    .page-32wim__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-32wim__heading-primary {
      font-size: 2.5em;
      color: var(--page-32wim__primary-color);
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.2;
    }

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

    .page-32wim__heading-secondary::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-32wim__accent-color);
    }

    .page-32wim__heading-tertiary {
      font-size: 1.5em;
      color: var(--page-32wim__primary-color);
      margin-bottom: 15px;
    }

    .page-32wim__paragraph {
      font-size: 1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-32wim__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-32wim__button-bg);
      color: var(--page-32wim__button-text);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-32wim__button:hover {
      background-color: var(--page-32wim__hover-darken);
    }

    /* Hero Section */
    .page-32wim__hero-section {
      position: relative;
      background-color: var(--page-32wim__background-dark);
      color: var(--page-32wim__text-light);
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      overflow: hidden;
    }

    .page-32wim__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5);
      z-index: 0;
    }

    .page-32wim__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-32wim__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-32wim__accent-color);
      line-height: 1.2;
    }

    .page-32wim__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-32wim__text-light);
    }

    /* Floating Promotion Button */
    .page-32wim__floating-promo {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-32wim__accent-color);
      padding: 10px 15px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-32wim__floating-promo-link {
      color: var(--page-32wim__text-dark);
      font-weight: bold;
      text-decoration: none;
      font-size: 1.1em;
      display: block;
      padding: 8px 15px;
      border-radius: 5px;
      background-color: var(--page-32wim__button-bg);
      color: var(--page-32wim__button-text);
      transition: background-color 0.3s ease;
    }

    .page-32wim__floating-promo-link:hover {
      background-color: var(--page-32wim__hover-darken);
    }

    /* Game Cards */
    .page-32wim__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-32wim__game-card {
      background-color: var(--page-32wim__background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-32wim__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-32wim__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-32wim__border-color);
    }

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

    .page-32wim__game-card-title {
      font-size: 1.4em;
      color: var(--page-32wim__primary-color);
      margin-bottom: 10px;
      text-align: center;
    }

    .page-32wim__game-card-description {
      font-size: 0.95em;
      color: var(--page-32wim__secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
      text-align: justify;
    }

    /* Promotion Section */
    .page-32wim__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-32wim__promotion-item {
      background-color: var(--page-32wim__faq-bg);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--page-32wim__faq-border);
      text-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-32wim__promotion-item:hover {
      background-color: #e2e6ea;
    }

    .page-32wim__promotion-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
    }

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

    .page-32wim__promotion-description {
      font-size: 0.95em;
      color: var(--page-32wim__text-dark);
    }

    /* How-To Section */
    .page-32wim__how-to-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-32wim__how-to-step {
      background-color: var(--page-32wim__faq-bg);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--page-32wim__faq-border);
      text-align: center;
      flex: 1 1 calc(33% - 20px);
      min-width: 280px;
      box-sizing: border-box;
    }

    .page-32wim__how-to-step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-32wim__accent-color);
      margin-bottom: 10px;
    }

    .page-32wim__how-to-step-title {
      font-size: 1.2em;
      color: var(--page-32wim__primary-color);
      margin-bottom: 10px;
    }

    .page-32wim__how-to-step-description {
      font-size: 0.95em;
      color: var(--page-32wim__text-dark);
    }

    /* FAQ Section */
    .page-32wim__faq-list {
      margin-top: 30px;
    }

    .page-32wim__faq-item {
      background-color: var(--page-32wim__background-light);
      border: 1px solid var(--page-32wim__faq-border);
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-32wim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-32wim__faq-bg);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-32wim__faq-border);
      transition: background-color 0.3s ease;
    }

    .page-32wim__faq-question:hover {
      background-color: #e2e6ea;
    }

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

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

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

    .page-32wim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-32wim__text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-32wim__faq-answer p {
      margin: 0;
      font-size: 0.95em;
      color: var(--page-32wim__text-dark);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-32wim__hero-section {
        padding-top: 10px; /* Adjusted for mobile fixed header */
        padding-bottom: 40px;
      }
      .page-32wim__hero-title {
        font-size: 2em;
      }
      .page-32wim__hero-subtitle {
        font-size: 1.1em;
      }
      .page-32wim__heading-primary {
        font-size: 2em;
      }
      .page-32wim__heading-secondary {
        font-size: 1.6em;
      }
      .page-32wim__section {
        padding: 30px 10px;
      }
      .page-32wim__floating-promo {
        padding: 8px 10px;
      }
      .page-32wim__floating-promo-link {
        font-size: 1em;
      }

      /* List item responsive (general for cards, promotions, how-to) */
      .page-32wim__game-grid,
      .page-32wim__promotion-list,
      .page-32wim__how-to-steps {
        grid-template-columns: 1fr;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        gap: 15px;
      }

      .page-32wim__game-card,
      .page-32wim__promotion-item,
      .page-32wim__how-to-step,
      .page-32wim__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-32wim__game-card-image,
      .page-32wim__promotion-icon {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain; /* Ensure images scale down correctly */
      }
      .page-32wim__faq-question {
        padding: 12px 15px;
      }
      .page-32wim__faq-question h3 {
        font-size: 1em;
      }
      .page-32wim__faq-answer {
        padding: 0 15px;
      }
      .page-32wim__faq-item.active .page-32wim__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-32wim__hero-title {
        font-size: 1.8em;
      }
      .page-32wim__hero-subtitle {
        font-size: 1em;
      }
      .page-32wim__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-32wim__game-card-title {
        font-size: 1.2em;
      }
      .page-32wim__game-card-description,
      .page-32wim__promotion-description,
      .page-32wim__how-to-step-description,
      .page-32wim__faq-answer p {
        font-size: 0.85em;
      }
    }
  