
    /* CSS Styles for page-nhap */
    :root {
      --page-nhap-bg-color: #000000;
      --page-nhap-text-color-primary: #FFFFFF;
      --page-nhap-text-color-secondary: #FFD700; /* Gold/Yellow */
      --page-nhap-accent-color: #FFD700;
      --page-nhap-button-bg: #FFD700;
      --page-nhap-button-text: #000000;
      --page-nhap-card-bg: #1a1a1a;
      --page-nhap-border-color: #333333;
    }

    .page-nhap {
      background-color: var(--page-nhap-bg-color);
      color: var(--page-nhap-text-color-primary);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the sticky button */
    }

    .page-nhap__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-nhap__section--dark {
      background-color: #0d0d0d;
    }

    .page-nhap__hero-section {
      text-align: center;
      padding-top: 10px; /* Desktop safe zone */
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .page-nhap__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
      border-radius: 8px;
    }

    .page-nhap__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
      margin-top: -80px; /* Overlap with image for better visual flow */
      border-radius: 0 0 8px 8px;
    }

    .page-nhap__hero-title {
      color: var(--page-nhap-text-color-secondary);
      font-size: 2.5em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-nhap__hero-subtitle {
      color: var(--page-nhap-text-color-primary);
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-nhap__button {
      display: inline-block;
      background-color: var(--page-nhap-button-bg);
      color: var(--page-nhap-button-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-nhap__heading {
      color: var(--page-nhap-text-color-secondary);
      font-size: 2em;
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 2px solid var(--page-nhap-accent-color);
      padding-bottom: 10px;
      display: inline-block;
      width: auto;
      max-width: 100%;
    }

    .page-nhap__text {
      color: var(--page-nhap-text-color-primary);
      margin-bottom: 20px;
      font-size: 1.05em;
    }

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

    .page-nhap__game-card {
      background-color: var(--page-nhap-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-nhap-border-color);
    }

    .page-nhap__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-nhap__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-nhap__game-title {
      color: var(--page-nhap-text-color-secondary);
      font-size: 1.3em;
      margin: 15px 10px 10px;
    }

    .page-nhap__game-description {
      color: var(--page-nhap-text-color-primary);
      font-size: 0.9em;
      padding: 0 15px 15px;
    }

    .page-nhap__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for logos */
      gap: 20px;
      margin-top: 30px;
    }

    .page-nhap__provider-logo-wrapper {
      background-color: var(--page-nhap-card-bg);
      padding: 15px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Fixed height for consistency */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-nhap-border-color);
    }

    .page-nhap__provider-logo {
      width: auto; /* Allow width to adjust based on height */
      height: 100%; /* Fill the height of the wrapper */
      max-width: 100%;
      object-fit: contain; /* Ensure logo fits without cropping */
      display: block;
    }

    .page-nhap__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-nhap__step-item {
      background-color: var(--page-nhap-card-bg);
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-nhap-border-color);
    }

    .page-nhap__step-number {
      color: var(--page-nhap-accent-color);
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 10px;
      display: block;
    }

    .page-nhap__step-title {
      color: var(--page-nhap-text-color-secondary);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-nhap__step-description {
      color: var(--page-nhap-text-color-primary);
      font-size: 1em;
    }

    .page-nhap__faq-section {
      background-color: var(--page-nhap-section-bg, #0d0d0d);
    }

    .page-nhap__faq-item {
      background-color: var(--page-nhap-card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-nhap-border-color);
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .page-nhap__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      color: var(--page-nhap-text-color-secondary);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-nhap__faq-question:hover {
      background-color: #333333;
    }

    .page-nhap__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent font size */
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-nhap__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--page-nhap-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

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

    .page-nhap__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-nhap-text-color-primary);
      background-color: var(--page-nhap-card-bg);
      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-nhap__faq-item.active .page-nhap__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-nhap__sticky-cta {
      position: sticky;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 15px 20px;
      text-align: center;
      box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      border-top: 1px solid var(--page-nhap-border-color);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
    }

    .page-nhap__sticky-text {
      color: var(--page-nhap-text-color-primary);
      font-size: 1.1em;
      font-weight: bold;
      margin: 0;
    }

    .page-nhap__sticky-button {
      background-color: var(--page-nhap-button-bg);
      color: var(--page-nhap-button-text);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      white-space: nowrap; /* Prevent button text from wrapping */
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-nhap__hero-section {
        padding-top: 10px; /* Mobile safe zone */
      }

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

      .page-nhap__hero-subtitle {
        font-size: 1em;
      }

      .page-nhap__section {
        padding: 30px 15px;
      }

      .page-nhap__heading {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      .page-nhap__game-grid {
        grid-template-columns: 1fr;
      }

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

      .page-nhap__provider-logo-wrapper {
        height: 80px;
        padding: 10px;
      }

      .page-nhap__step-item {
        padding: 20px;
      }

      .page-nhap__step-number {
        font-size: 1.8em;
      }

      .page-nhap__step-title {
        font-size: 1.3em;
      }

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

      .page-nhap__faq-answer {
        padding: 0 20px;
      }

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

      .page-nhap__sticky-cta {
        flex-direction: column;
        padding: 10px 15px;
        gap: 10px;
      }

      .page-nhap__sticky-text {
        font-size: 0.95em;
      }

      .page-nhap__sticky-button {
        width: 100%;
        max-width: 250px;
        font-size: 0.95em;
        padding: 8px 15px;
      }

      /* Image responsive optimization for mobile */
      .page-nhap img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-nhap__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-nhap__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-nhap__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-nhap__game-card, .page-nhap__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  