
    .page-acb-n-h {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Adjust for fixed header, as body padding is handled by shared.css */
    }

    .page-acb-n-h__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-acb-n-h__hero-section {
      background: linear-gradient(135deg, #2a0a5e, #0f0a2e);
      padding: 60px 20px;
      text-align: center;
      margin-bottom: 40px;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .page-acb-n-h__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-acb-n-h__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-acb-n-h__hero-title {
      font-size: 3.2em;
      color: #ffd700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__hero-subtitle {
      font-size: 1.4em;
      color: #e0e0e0;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__cta-button {
      display: inline-block;
      background-color: #00bfff;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-acb-n-h__cta-button:hover {
      background-color: #009acd;
      transform: translateY(-2px);
    }

    .page-acb-n-h__section {
      background-color: #2a2a4a;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-acb-n-h__section-title {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 25px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__section-text {
      font-size: 1.1em;
      color: #c0c0c0;
      margin-bottom: 20px;
      text-align: left;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-acb-n-h__game-card {
      background-color: #3b3b6b;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-acb-n-h__game-card:hover {
      transform: translateY(-5px);
    }

    .page-acb-n-h__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-acb-n-h__game-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 0 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__game-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin: 0 15px 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-acb-n-h__list-item {
      background-color: #3b3b6b;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      color: #e0e0e0;
      font-size: 1.05em;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__list-icon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    .page-acb-n-h__list-item strong {
      color: #00bfff;
    }

    .page-acb-n-h__steps-grid {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-acb-n-h__step-item {
      background-color: #3b3b6b;
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__step-number {
      background-color: #00bfff;
      color: #ffffff;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.6em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-acb-n-h__step-content h3 {
      color: #ffd700;
      margin-top: 0;
      margin-bottom: 8px;
      font-size: 1.4em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__step-content p {
      color: #c0c0c0;
      margin-bottom: 0;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__faq-section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #2a2a4a;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-acb-n-h__faq-title {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 30px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__faq-item {
      background-color: #3b3b6b;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-acb-n-h__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #4a4a7a;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__faq-question:hover {
      background-color: #5a5a8a;
    }

    .page-acb-n-h__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: inherit;
      pointer-events: none;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
      flex-grow: 1;
    }

    .page-acb-n-h__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none;
      flex-shrink: 0;
    }

    .page-acb-n-h__faq-item.active .page-acb-n-h__faq-toggle {
      transform: rotate(45deg);
    }

    .page-acb-n-h__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #e0e0e0;
      font-size: 1.05em;
      box-sizing: border-box;
      text-align: left;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-acb-n-h__faq-item.active .page-acb-n-h__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-acb-n-h__container {
        padding: 15px;
      }

      .page-acb-n-h__hero-section {
        padding: 40px 15px;
        margin-bottom: 30px;
      }

      .page-acb-n-h__hero-title {
        font-size: 2.2em;
      }

      .page-acb-n-h__hero-subtitle {
        font-size: 1.1em;
      }

      .page-acb-n-h__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-acb-n-h__section {
        padding: 30px 15px;
        margin-bottom: 25px;
      }

      .page-acb-n-h__section-title {
        font-size: 2em;
      }

      .page-acb-n-h__section-text {
        font-size: 1em;
      }

      .page-acb-n-h__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-acb-n-h__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-acb-n-h__list {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-acb-n-h__list-item {
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-acb-n-h__list-icon {
        width: 40px;
        height: 40px;
      }

      .page-acb-n-h__steps-grid {
        gap: 20px;
      }

      .page-acb-n-h__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }

      .page-acb-n-h__step-number {
        margin-bottom: 10px;
      }

      .page-acb-n-h__faq-section {
        padding: 30px 15px;
      }

      .page-acb-n-h__faq-title {
        font-size: 2em;
      }

      .page-acb-n-h__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-acb-n-h__faq-question h3 {
        font-size: 1.1em;
      }

      .page-acb-n-h__faq-toggle {
        font-size: 1.5em;
      }

      .page-acb-n-h__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

      .page-acb-n-h__faq-item.active .page-acb-n-h__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-acb-n-h__hero-title {
        font-size: 1.8em;
      }

      .page-acb-n-h__hero-subtitle {
        font-size: 1em;
      }

      .page-acb-n-h__section-title,
      .page-acb-n-h__faq-title {
        font-size: 1.8em;
      }

      .page-acb-n-h__game-title {
        font-size: 1.3em;
      }

      .page-acb-n-h__faq-question h3 {
        font-size: 1em;
      }
    }
  