
    /* CSS Styles for page-moinhat */
    .page-moinhat {
      background-color: #000000;
      color: #FFFFFF;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
    }

    .page-moinhat__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 0 40px; /* Safety padding for fixed header */
      background-color: #1a1a1a;
      overflow: hidden;
    }

    .page-moinhat__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-moinhat__hero-content {
      padding: 20px 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-moinhat__hero-title {
      color: #FFD700;
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-moinhat__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-moinhat__download-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    }

    .page-moinhat__download-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-moinhat__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      border-bottom: 1px solid #333;
    }

    .page-moinhat__section:last-of-type {
      border-bottom: none;
    }

    .page-moinhat__section-title {
      color: #FFD700;
      font-size: 2em;
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-moinhat__text-content {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    .page-moinhat__text-content strong {
      color: #FFD700;
    }

    .page-moinhat__guide-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-moinhat__step-item {
      background-color: #1a1a1a;
      border: 1px solid #333;
      border-radius: 10px;
      padding: 25px;
      flex: 1 1 calc(33% - 20px);
      min-width: 280px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .page-moinhat__step-number {
      background-color: #FFD700;
      color: #000000;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-moinhat__step-title {
      color: #FFD700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-moinhat__step-text {
      color: #e0e0e0;
      font-size: 0.95em;
    }

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

    .page-moinhat__game-item {
      background-color: #1a1a1a;
      border: 1px solid #333;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-moinhat__game-image {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #333;
    }

    .page-moinhat__game-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-moinhat__game-name {
      color: #FFD700;
      font-size: 1.1em;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-moinhat__game-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 8px 15px;
      border-radius: 20px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-moinhat__game-link:hover {
      background-color: #e6c200;
    }

    .page-moinhat__faq-section {
      background-color: #1a1a1a;
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    }

    .page-moinhat__faq-item {
      margin-bottom: 15px;
      border: 1px solid #333;
      border-radius: 8px;
      overflow: hidden;
    }

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

    .page-moinhat__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-moinhat__faq-question h3 {
      color: #FFD700;
      font-size: 1.1em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-moinhat__faq-toggle {
      color: #FFD700;
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-moinhat__faq-answer {
      background-color: #1f1f1f;
      color: #e0e0e0;
      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;
    }

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

    .page-moinhat__cta-section {
      text-align: center;
      padding: 50px 15px;
      background-color: #1a1a1a;
      border-top: 1px solid #333;
    }

    .page-moinhat__cta-title {
      color: #FFD700;
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-moinhat__cta-description {
      color: #e0e0e0;
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-moinhat__hero-section {
        padding-top: 10px; /* Safety padding for fixed header on mobile */
      }

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

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

      .page-moinhat__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-moinhat__section-title {
        font-size: 1.8em;
      }

      .page-moinhat__step-item {
        flex: 1 1 100%;
        min-width: unset;
      }

      .page-moinhat__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }

      .page-moinhat__game-image {
        height: 100px;
      }

      .page-moinhat__faq-question h3 {
        font-size: 1em;
      }

      .page-moinhat__cta-title {
        font-size: 1.8em;
      }

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

      /* Image responsive optimization for mobile */
      .page-moinhat img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-moinhat__hero-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-moinhat__game-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (min-width: 769px) {
      .page-moinhat__hero-section {
        padding-top: 10px; /* Safety padding for fixed header on desktop */
      }
    }
  