
    /* CSS Styles for page-gamenohu */
    .page-gamenohu {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f9fa;
      line-height: 1.6;
      padding-bottom: 40px;
    }

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

    .page-gamenohu__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('[GALLERY:hero:1920x1080:slot_machine,jackpot,casino]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 100px 20px 80px;
      padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      position: relative;
    }

    .page-gamenohu__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-gamenohu__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-gamenohu__button {
      display: inline-block;
      background-color: #ffc107; /* Bright yellow for call to action */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-gamenohu__button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-gamenohu__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-gamenohu__section--alt {
      background-color: #f0f2f5;
    }

    .page-gamenohu__section-title {
      font-size: 2.5em;
      color: #007bff; /* Primary blue */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-gamenohu__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffc107;
      border-radius: 2px;
    }

    .page-gamenohu__content-text {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-gamenohu__content-text strong {
      color: #007bff;
    }

    .page-gamenohu__image-wrapper {
      text-align: center;
      margin: 40px 0;
    }

    .page-gamenohu__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      display: block; /* Ensures centering with margin auto */
      margin: 0 auto;
    }

    .page-gamenohu__features-grid,
    .page-gamenohu__steps-grid,
    .page-gamenohu__providers-grid,
    .page-gamenohu__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-gamenohu__feature-item,
    .page-gamenohu__step-item,
    .page-gamenohu__provider-item,
    .page-gamenohu__payment-item {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-gamenohu__feature-item:hover,
    .page-gamenohu__step-item:hover,
    .page-gamenohu__provider-item:hover,
    .page-gamenohu__payment-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-gamenohu__item-icon {
      margin-bottom: 20px;
      width: 100px; /* Min size 200x200, but icon can be smaller */
      height: auto;
      display: block;
      margin: 0 auto 20px;
      max-width: 100%;
      border-radius: 8px;
    }
    
    .page-gamenohu__provider-logo,
    .page-gamenohu__payment-logo {
        width: 150px; /* Min size 200x200, but logos can be smaller to fit grid */
        height: auto;
        display: block;
        margin: 0 auto 15px;
        max-width: 100%;
        border-radius: 5px;
    }

    .page-gamenohu__item-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-gamenohu__item-description {
      font-size: 1em;
      color: #555;
    }

    .page-gamenohu__step-number {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      background-color: #007bff;
      color: #fff;
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    /* FAQ Section Styles */
    .page-gamenohu__faq-section {
      padding: 60px 0;
      background-color: #f0f2f5;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-gamenohu__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-gamenohu__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
      overflow: hidden;
    }

    .page-gamenohu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e9ecef;
      border-bottom: 1px solid #dee2e6;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-gamenohu__faq-question h3 {
      margin: 0;
      font-size: 1.25em;
      color: #343a40;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-gamenohu__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-gamenohu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1em;
    }

    .page-gamenohu__faq-item.active .page-gamenohu__faq-answer {
      max-height: 2000px !important; /* Use !important to ensure override */
      padding: 20px 25px !important; /* Use !important to ensure override */
      opacity: 1;
    }

    .page-gamenohu__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #007bff;
      color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-gamenohu__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-gamenohu__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-gamenohu__hero-title {
        font-size: 2.8em;
      }
      .page-gamenohu__hero-subtitle {
        font-size: 1.2em;
      }
      .page-gamenohu__section-title {
        font-size: 2em;
      }
      .page-gamenohu__cta-title {
        font-size: 2.2em;
      }
      .page-gamenohu__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-gamenohu__hero-section {
        padding: 80px 15px 60px;
        padding-top: var(--header-offset, 200px); /* Adjust for mobile header offset */
        min-height: 350px;
      }
      .page-gamenohu__hero-title {
        font-size: 2.2em;
      }
      .page-gamenohu__hero-subtitle {
        font-size: 1em;
      }
      .page-gamenohu__section {
        padding: 40px 0;
      }
      .page-gamenohu__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-gamenohu__content-text {
        font-size: 0.95em;
      }
      .page-gamenohu__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-gamenohu__features-grid,
      .page-gamenohu__steps-grid,
      .page-gamenohu__providers-grid,
      .page-gamenohu__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-gamenohu__feature-item,
      .page-gamenohu__step-item,
      .page-gamenohu__provider-item,
      .page-gamenohu__payment-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding-left: 15px !important; /* Adjusted padding */
          padding-right: 15px !important; /* Adjusted padding */
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
      .page-gamenohu__features-list, /* Assuming these are ul/ol wrappers */
      .page-gamenohu__steps-list,
      .page-gamenohu__providers-grid,
      .page-gamenohu__payment-grid {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 0 !important;
          padding-right: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
      .page-gamenohu__faq-question {
        padding: 15px 20px;
      }
      .page-gamenohu__faq-question h3 {
        font-size: 1.1em;
      }
      .page-gamenohu__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
      }
      .page-gamenohu__faq-item.active .page-gamenohu__faq-answer {
        padding: 15px 20px !important;
      }
      .page-gamenohu__cta-title {
        font-size: 1.8em;
      }
      .page-gamenohu__cta-description {
        font-size: 1em;
      }
      .page-gamenohu img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-gamenohu__image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  