
    /* CSS for page-mcw87 */
    .page-mcw87 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f9fa;
      line-height: 1.6;
    }

    .page-mcw87__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 10px; /* Adjusted for fixed header on desktop */
      background-color: #000;
      color: #fff;
      text-align: center;
    }

    .page-mcw87__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
    }

    .page-mcw87__hero-content {
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-mcw87__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffd700; /* Gold color for emphasis */
      text-transform: uppercase;
      line-height: 1.2;
    }

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

    .page-mcw87__button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-mcw87__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

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

    .page-mcw87__section-title {
      font-size: 2em;
      color: #007bff;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-mcw87__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffd700;
      border-radius: 2px;
    }

    .page-mcw87__content-text {
      font-size: 1em;
      margin-bottom: 15px;
      text-align: left;
    }

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

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

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

    .page-mcw87__game-icon {
      width: 100px; /* Minimum 200px requirement is for content images, icons can be smaller but should be distinct */
      height: 100px;
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
      object-fit: contain;
    }

    .page-mcw87__game-title {
      font-size: 1.1em;
      color: #007bff;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .page-mcw87__game-description {
      font-size: 0.9em;
      color: #555;
    }

    .page-mcw87__promo-card {
      background-color: #ffe0b2;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-top: 20px;
    }

    .page-mcw87__promo-title {
      font-size: 1.8em;
      color: #ff9800;
      margin-bottom: 15px;
    }

    .page-mcw87__promo-details {
      font-size: 1.1em;
      color: #6d4c41;
      margin-bottom: 20px;
    }

    .page-mcw87__list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 20px;
    }

    .page-mcw87__list-item {
      background-color: #e3f2fd;
      border-left: 5px solid #007bff;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-radius: 5px;
      font-size: 1em;
      color: #333;
    }

    .page-mcw87__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 25px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-mcw87__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

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

    .page-mcw87__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      font-weight: bold;
      color: #333;
      transition: color 0.3s ease;
      user-select: none;
    }

    .page-mcw87__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      text-align: left;
      color: #007bff;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-mcw87__faq-question:hover {
      color: #0056b3;
    }

    .page-mcw87__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

    .page-mcw87__faq-item.active .page-mcw87__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes a cross */
    }

    .page-mcw87__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.3s ease;
      color: #555;
      text-align: left;
    }

    .page-mcw87__faq-item.active .page-mcw87__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-mcw87__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Orange-red for urgency */
      color: #fff;
      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.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: calc(100% - 40px); /* Ensure it doesn't overflow on small screens */
    }

    .page-mcw87__floating-button:hover {
      background-color: #cc3700;
      transform: scale(1.05);
      animation: none;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-mcw87__hero-section {
        padding-top: 10px; /* Adjusted for fixed header on mobile */
      }
      .page-mcw87__hero-title {
        font-size: 1.8em;
      }
      .page-mcw87__hero-description {
        font-size: 1em;
      }
      .page-mcw87__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }
      .page-mcw87__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }
      .page-mcw87__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }
      .page-mcw87__game-icon {
        width: 80px;
        height: 80px;
      }
      .page-mcw87__game-title {
        font-size: 1em;
      }
      .page-mcw87__faq-section {
        padding: 25px 15px;
      }
      .page-mcw87__faq-question h3 {
        font-size: 1em;
      }
      .page-mcw87__faq-answer {
        padding: 0 10px;
      }
      .page-mcw87__faq-item.active .page-mcw87__faq-answer {
        padding: 15px 10px !important;
      }
      .page-mcw87__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      /* Image responsive optimization */
      .page-mcw87 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-mcw87__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  