
    /* General Reset & Base Styles for .page-neo88 scope */
    .page-neo88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: 10px; /* Small padding, assuming body handles main offset */
    }

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

    .page-neo88__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
    }

    .page-neo88__section-title {
      font-size: 2.5em;
      color: #2c3e50;
      margin-bottom: 20px;
      font-weight: 700;
      text-align: center;
      line-height: 1.2;
    }

    .page-neo88__section-subtitle {
      font-size: 1.2em;
      color: #555;
      margin-bottom: 30px;
      text-align: center;
    }

    /* Hero Section */
    .page-neo88__hero-section {
      background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
      color: #fff;
      padding: 80px 20px;
      border-radius: 12px;
      margin-bottom: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 400px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-neo88__hero-title {
      font-size: 3.8em;
      margin-bottom: 20px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      color: #ffffff;
    }

    .page-neo88__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      font-weight: 400;
      color: #f0f0f0;
    }

    .page-neo88__promo-link {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-neo88__promo-link:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-neo88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-neo88__button {
      background-color: #ffcc00;
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      cursor: pointer; /* Indicate it's clickable */
      border: none; /* Ensure it looks like a button */
    }
    
    .page-neo88__button--register { background-color: #4CAF50; color: white; }
    .page-neo88__button--login { background-color: #008CBA; color: white; }

    .page-neo88__button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    /* Game Categories Section */
    .page-neo88__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-neo88__category-item {
      background-color: #fcfcfc;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-neo88__category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-neo88__category-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e0e0e0; /* Placeholder background */
    }

    .page-neo88__category-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
      filter: none; /* Ensure no color filters */
    }

    .page-neo88__category-name {
      font-size: 1.4em;
      color: #2c3e50;
      padding: 15px;
      font-weight: 600;
    }

    /* About Section / Feature List */
    .page-neo88__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      text-align: left;
    }

    .page-neo88__feature-item {
      background-color: #fcfcfc;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      border-left: 5px solid #ffcc00;
    }

    .page-neo88__feature-item h3 {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-neo88__feature-item p {
      font-size: 1em;
      color: #555;
    }

    /* Providers & Payments & Social Sections */
    .page-neo88__list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-neo88__list-item {
      background-color: #f0f0f0;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 1.1em;
      color: #444;
      font-weight: 500;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
      word-wrap: break-word; /* Ensure long names wrap */
      overflow-wrap: break-word; /* Ensure long names wrap */
      word-break: break-word; /* Force break for long keywords */
    }
    
    .page-neo88__list-item:hover {
      background-color: #e0e0e0;
    }

    /* FAQ Section */
    .page-neo88__faq-section {
      text-align: left;
    }

    .page-neo88__faq-item {
      background-color: #fcfcfc;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

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

    .page-neo88__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-neo88__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #2c3e50;
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-neo88__faq-item.active .page-neo88__faq-toggle {
      transform: rotate(45deg); /* Visual cue for expanded state */
      color: #e6b800;
    }

    .page-neo88__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: #555;
      font-size: 1em;
      background-color: #fdfdfd;
    }

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

    .page-neo88__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .page-neo88__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Call to Action Section */
    .page-neo88__cta-section {
      background-color: #2c3e50;
      color: #fff;
      padding: 60px 20px;
      border-radius: 12px;
      text-align: center;
    }

    .page-neo88__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: 700;
      color: #ffffff;
    }

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

    .page-neo88__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-neo88__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-neo88__hero-title {
        font-size: 3em;
      }
      .page-neo88__hero-description {
        font-size: 1.3em;
      }
      .page-neo88__section-title {
        font-size: 2em;
      }
      .page-neo88__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-neo88__container {
        padding: 15px;
      }
      .page-neo88__hero-section {
        padding: 60px 15px;
      }
      .page-neo88__hero-title {
        font-size: 2.5em;
      }
      .page-neo88__hero-description {
        font-size: 1.1em;
      }
      .page-neo88__section {
        padding: 20px;
        margin-bottom: 20px;
      }
      .page-neo88__section-title {
        font-size: 1.8em;
      }
      .page-neo88__cta-title {
        font-size: 1.8em;
      }
      .page-neo88__promo-link,
      .page-neo88__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      /* Floating buttons for mobile */
      .page-neo88__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 10px;
        justify-content: space-around;
      }
      .page-neo88__button {
        flex: 1;
        margin: 0 5px; /* Adjust spacing */
        padding: 10px 15px;
        font-size: 1em;
      }
      .page-neo88__button:first-child { margin-left: 0; }
      .page-neo88__button:last-child { margin-right: 0; }

      /* List item responsive styles */
      .page-neo88__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important; /* Adjust padding for mobile */
      }
      .page-neo88__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-neo88__faq-question {
        padding: 15px 20px;
      }
      .page-neo88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-neo88__faq-toggle {
        font-size: 1.5em;
      }
      .page-neo88__faq-answer {
        padding: 0 20px;
      }
      .page-neo88__faq-item.active .page-neo88__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-neo88__hero-title {
        font-size: 2em;
      }
      .page-neo88__hero-description {
        font-size: 1em;
      }
      .page-neo88__section-title {
        font-size: 1.6em;
      }
      .page-neo88__cta-title {
        font-size: 1.6em;
      }
    }
  