
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #000000; /* Black */
      --text-color-light: #FFFFFF;
      --text-color-dark: #333333;
      --button-bg-register: #FF4500; /* OrangeRed */
      --button-bg-login: #1E90FF; /* DodgerBlue */
      --section-bg-dark: #1a1a1a;
      --section-bg-light: #2c2c2c;
      --border-color: #444444;
      --faq-question-bg: #333333;
      --faq-answer-bg: #222222;
    }

    /* Base styles for the page, scoped to page-nohu-888b */
    .page-nohu-888b {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--secondary-color);
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-nohu-888b__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-nohu-888b__section {
      padding: 40px 0;
      text-align: center;
      position: relative;
    }

    .page-nohu-888b__section--dark {
      background-color: var(--section-bg-dark);
    }

    .page-nohu-888b__section--light {
      background-color: var(--section-bg-light);
    }

    .page-nohu-888b__heading-primary {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-nohu-888b__heading-secondary {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-nohu-888b__heading-tertiary {
      font-size: 1.5em;
      color: var(--text-color-light);
      margin-bottom: 15px;
    }

    .page-nohu-888b__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color-light);
    }

    /* Hero Section */
    .page-nohu-888b__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:slot_game,jackpot,888b_nohu]') no-repeat center center/cover;
      padding: 10px 0 80px; /* Small top padding, more bottom for content */
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      box-sizing: border-box;
    }

    .page-nohu-888b__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    /* Floating Buttons */
    .page-nohu-888b__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 10px;
      background-color: rgba(0, 0, 0, 0.9);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-nohu-888b__button {
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      color: var(--text-color-light);
      display: inline-block;
      text-align: center;
      min-width: 120px;
    }

    .page-nohu-888b__button--register {
      background-color: var(--button-bg-register);
    }

    .page-nohu-888b__button--register:hover {
      background-color: #E03E00;
      transform: translateY(-2px);
    }

    .page-nohu-888b__button--login {
      background-color: var(--button-bg-login);
    }

    .page-nohu-888b__button--login:hover {
      background-color: #1A7DD9;
      transform: translateY(-2px);
    }

    /* Game Display */
    .page-nohu-888b__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Center items in grid cells */
    }

    .page-nohu-888b__game-card {
      background-color: var(--section-bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 350px; /* Limit card width */
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

    .page-nohu-888b__game-card:hover {
      transform: translateY(-5px);
    }

    .page-nohu-888b__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-nohu-888b__game-content {
      padding: 20px;
    }

    .page-nohu-888b__game-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-nohu-888b__game-description {
      font-size: 0.95em;
      color: var(--text-color-light);
      margin-bottom: 15px;
    }

    .page-nohu-888b__game-button {
      background-color: var(--button-bg-login);
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: bold;
      color: var(--text-color-light);
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-nohu-888b__game-button:hover {
      background-color: #1A7DD9;
    }

    /* Benefits/Features Section */
    .page-nohu-888b__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-nohu-888b__benefit-item {
      background-color: var(--section-bg-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      border: 1px solid var(--border-color);
    }

    .page-nohu-888b__benefit-icon {
      width: 200px; /* Placeholder for image */
      height: 200px;
      margin-bottom: 15px;
      display: block;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-nohu-888b__benefit-title {
      font-size: 1.2em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-nohu-888b__benefit-description {
      font-size: 0.95em;
      color: var(--text-color-light);
    }

    /* How-to Guide */
    .page-nohu-888b__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-nohu-888b__step-item {
      background-color: var(--section-bg-light);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      display: flex;
      align-items: flex-start;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
      width: 100%;
    }

    .page-nohu-888b__step-number {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-nohu-888b__step-content {
      flex-grow: 1;
    }

    .page-nohu-888b__step-title {
      font-size: 1.2em;
      color: var(--primary-color);
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-nohu-888b__step-description {
      font-size: 1em;
      color: var(--text-color-light);
    }

    /* Game Providers */
    .page-nohu-888b__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-nohu-888b__provider-logo {
      width: 200px;
      height: 100px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-nohu-888b__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* FAQ Section */
    .page-nohu-888b__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-nohu-888b__faq-item {
      margin-bottom: 10px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--faq-question-bg);
    }

    .page-nohu-888b__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--faq-question-bg);
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-nohu-888b__faq-question:hover {
      background-color: #444444;
    }

    .page-nohu-888b__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-nohu-888b__faq-item.active .page-nohu-888b__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar, or just rotate */
    }

    .page-nohu-888b__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--faq-answer-bg);
      color: var(--text-color-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-nohu-888b__hero-title {
        font-size: 2.5em;
      }

      .page-nohu-888b__hero-subtitle {
        font-size: 1.2em;
      }

      .page-nohu-888b__heading-primary {
        font-size: 2em;
      }

      .page-nohu-888b__heading-secondary {
        font-size: 1.8em;
      }

      .page-nohu-888b__text {
        font-size: 1em;
      }

      .page-nohu-888b__button {
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
        flex: 1;
        margin: 0 5px;
      }

      .page-nohu-888b__game-grid,
      .page-nohu-888b__benefits-grid,
      .page-nohu-888b__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-nohu-888b__game-card {
        max-width: 100%;
      }

      .page-nohu-888b__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-nohu-888b__benefit-item,
      .page-nohu-888b__step-item {
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-nohu-888b__steps-list,
      .page-nohu-888b__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-nohu-888b__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-nohu-888b__faq-answer {
        padding: 15px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-nohu-888b__provider-logo {
        width: 150px;
        height: 80px;
      }
      
      /* Ensure all images are responsive */
      .page-nohu-888b img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-nohu-888b__section img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-nohu-888b__hero-title {
        font-size: 2em;
      }
      .page-nohu-888b__hero-subtitle {
        font-size: 1em;
      }
      .page-nohu-888b__heading-primary {
        font-size: 1.8em;
      }
      .page-nohu-888b__heading-secondary {
        font-size: 1.6em;
      }
      .page-nohu-888b__section {
        padding: 30px 0;
      }
      .page-nohu-888b__floating-buttons {
        padding: 10px 5px;
      }
      .page-nohu-888b__button {
        padding: 8px 10px;
        font-size: 0.9em;
      }
    }
  