
    .page-2-b-ng {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-2-b-ng__header-banner {
      position: relative;
      background-color: #0d47a1;
      color: #fff;
      text-align: center;
      padding: 10px 0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      z-index: 100;
    }

    .page-2-b-ng__header-banner h1 {
      margin: 0;
      font-size: 2.2em;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #ffeb3b; /* Accent color */
    }

    .page-2-b-ng__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      background: linear-gradient(135deg, #1a237e, #0d47a1);
      color: #fff;
      text-align: center;
      padding-bottom: 40px;
    }

    .page-2-b-ng__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-2-b-ng__hero-content {
      padding: 0 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-2-b-ng__hero-content h2 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffeb3b;
    }

    .page-2-b-ng__hero-content p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-2-b-ng__promo-button {
      display: inline-block;
      background-color: #f44336; /* Red accent */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      border: none;
    }

    .page-2-b-ng__promo-button:hover {
      background-color: #d32f2f;
    }

    .page-2-b-ng__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-2-b-ng__floating-button {
      background-color: #ffeb3b; /* Yellow accent */
      color: #212121;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      flex: 1;
      margin: 0 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-2-b-ng__floating-button--register {
      background-color: #4CAF50; /* Green for register */
      color: #fff;
    }

    .page-2-b-ng__floating-button--register:hover {
      background-color: #388E3C;
      transform: translateY(-2px);
    }

    .page-2-b-ng__floating-button--login {
      background-color: #2196F3; /* Blue for login */
      color: #fff;
    }

    .page-2-b-ng__floating-button--login:hover {
      background-color: #1976D2;
      transform: translateY(-2px);
    }

    .page-2-b-ng__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
    }

    .page-2-b-ng__section-title {
      font-size: 2em;
      color: #1a237e;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-2-b-ng__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #f44336;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-2-b-ng__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-2-b-ng__game-card {
      background-color: #e3f2fd;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-2-b-ng__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-2-b-ng__game-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      padding: 10px;
    }

    .page-2-b-ng__game-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-2-b-ng__game-title {
      font-size: 1.4em;
      color: #1a237e;
      margin: 15px 10px 10px;
    }

    .page-2-b-ng__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px 15px;
    }

    .page-2-b-ng__promo-item {
      background-color: #fff3e0;
      border-left: 5px solid #ff9800;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    }

    .page-2-b-ng__promo-item h3 {
      color: #e65100;
      margin-top: 0;
      font-size: 1.3em;
    }

    .page-2-b-ng__promo-item p {
      color: #424242;
    }

    .page-2-b-ng__why-choose-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-2-b-ng__why-choose-item {
      background-color: #e8f5e9;
      border-left: 5px solid #4caf50;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-2-b-ng__why-choose-item h3 {
      color: #2e7d32;
      margin-top: 0;
      font-size: 1.2em;
    }

    .page-2-b-ng__why-choose-item p {
      color: #424242;
    }

    .page-2-b-ng__payment-grid,
    .page-2-b-ng__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-2-b-ng__payment-logo,
    .page-2-b-ng__provider-logo {
      width: 100px;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }

    .page-2-b-ng__payment-logo:hover,
    .page-2-b-ng__provider-logo:hover {
      filter: grayscale(0%);
    }

    .page-2-b-ng__faq-container {
      margin-top: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-2-b-ng__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-2-b-ng__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-2-b-ng__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #1a237e;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-2-b-ng__faq-question:hover {
      background-color: #e0f2f7;
    }

    .page-2-b-ng__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #1a237e;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-2-b-ng__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-2-b-ng__faq-answer {
      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;
      color: #555;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-2-b-ng {
        padding-bottom: 70px; /* Adjust for smaller floating buttons */
      }

      .page-2-b-ng__header-banner h1 {
        font-size: 1.8em;
      }

      .page-2-b-ng__hero-content h2 {
        font-size: 2em;
      }

      .page-2-b-ng__hero-content p {
        font-size: 1em;
      }

      .page-2-b-ng__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-2-b-ng__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-2-b-ng__section {
        padding: 30px 15px;
        margin-top: 15px;
      }

      .page-2-b-ng__section-title {
        font-size: 1.8em;
      }

      .page-2-b-ng__grid {
        grid-template-columns: 1fr;
      }

      .page-2-b-ng__game-card {
        margin-bottom: 15px;
      }

      .page-2-b-ng__why-choose-list {
        grid-template-columns: 1fr;
      }

      .page-2-b-ng__why-choose-item,
      .page-2-b-ng__promo-item {
        padding: 15px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-2-b-ng__payment-grid,
      .page-2-b-ng__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

      .page-2-b-ng__payment-logo,
      .page-2-b-ng__provider-logo {
        width: 80px;
      }

      /* Image responsive styles */
      .page-2-b-ng__hero-image,
      .page-2-b-ng__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-2-b-ng__game-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* FAQ responsive styles */
      .page-2-b-ng__faq-question,
      .page-2-b-ng__faq-question h3 {
        font-size: 1em;
      }

      .page-2-b-ng__faq-answer {
        padding: 10px 15px !important;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-2-b-ng__floating-button {
        font-size: 0.8em;
        padding: 8px 10px;
      }

      .page-2-b-ng__header-banner h1 {
        font-size: 1.5em;
      }
    }
  