
    /* General styles for the page-88nw container */
    .page-88nw {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light gray text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Sections */
    .page-88nw__hero-section,
    .page-88nw__games-section,
    .page-88nw__promotions-section,
    .page-88nw__why-choose-section,
    .page-88nw__payment-section,
    .page-88nw__providers-section,
    .page-88nw__about-section,
    .page-88nw__faq-section {
      padding: 30px 20px;
      margin-bottom: 20px;
      text-align: center;
    }

    @media (min-width: 769px) {
      .page-88nw__hero-section,
      .page-88nw__games-section,
      .page-88nw__promotions-section,
      .page-88nw__why-choose-section,
      .page-88nw__payment-section,
      .page-88nw__providers-section,
      .page-88nw__about-section,
      .page-88nw__faq-section {
        padding: 60px 40px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
      }
    }

    /* Section Titles */
    .page-88nw__section-title {
      color: #e94560; /* Vibrant red/pink accent */
      font-size: 2.2em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      text-transform: uppercase;
    }

    .page-88nw__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #0f3460; /* Dark blue accent */
      border-radius: 2px;
    }

    .page-88nw__section-description {
      font-size: 1.1em;
      color: #b0b0b0;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-88nw__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1a1a2e, #0f3460);
      padding-top: 10px; /* Decorative padding-top, assuming body has header offset */
      padding-bottom: 40px;
      text-align: center;
    }

    .page-88nw__hero-content {
      max-width: 90%;
      margin-bottom: 30px;
    }

    .page-88nw__hero-title {
      font-size: 2.5em;
      color: #ffffff;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-88nw__hero-description {
      font-size: 1.1em;
      color: #c0c0c0;
      margin-bottom: 25px;
    }

    .page-88nw__hero-cta {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .page-88nw__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      box-sizing: border-box;
      width: 100%;
      max-width: 250px;
    }

    .page-88nw__button--primary {
      background-color: #e94560;
      color: #ffffff;
    }

    .page-88nw__button--primary:hover {
      background-color: #d13a52;
      transform: translateY(-2px);
    }

    .page-88nw__button--secondary {
      background-color: transparent;
      color: #e94560;
      border: 2px solid #e94560;
    }

    .page-88nw__button--secondary:hover {
      background-color: rgba(233, 69, 96, 0.1);
      transform: translateY(-2px);
    }

    .page-88nw__hero-image-container {
      width: 100%;
      max-width: 600px; /* Adjust as needed */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-88nw__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }

    @media (min-width: 769px) {
      .page-88nw__hero-section {
        flex-direction: row;
        text-align: left;
        padding-top: 10px; /* Decorative padding-top */
        padding-bottom: 60px;
        gap: 40px;
      }

      .page-88nw__hero-content {
        max-width: 50%;
        margin-bottom: 0;
      }

      .page-88nw__hero-title {
        font-size: 3.5em;
      }

      .page-88nw__hero-cta {
        flex-direction: row;
        justify-content: flex-start;
      }

      .page-88nw__button {
        width: auto;
        max-width: none;
      }

      .page-88nw__hero-image-container {
        max-width: 50%;
      }
    }

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

    .page-88nw__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 15px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      color: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 100px;
      height: 45px;
      box-sizing: border-box;
      border: none;
      cursor: pointer;
    }

    .page-88nw__floating-button--register {
      background-color: #e94560;
    }

    .page-88nw__floating-button--register:hover {
      background-color: #d13a52;
      transform: translateY(-2px);
    }

    .page-88nw__floating-button--login {
      background-color: #0f3460;
    }

    .page-88nw__floating-button--login:hover {
      background-color: #0a2340;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-88nw__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
      }
      .page-88nw__floating-button {
        flex: 1;
        margin: 0 5px;
        min-width: unset;
      }
    }

    /* Games Grid */
    .page-88nw__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-88nw__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box; /* Important for mobile list items */
    }

    .page-88nw__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-88nw__game-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-88nw__game-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-88nw__game-text {
      font-size: 0.95em;
      color: #b0b0b0;
      padding: 0 15px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-88nw__games-grid {
        grid-template-columns: 1fr;
      }
      .page-88nw__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 10px 10px 10px; /* Adjust padding for mobile */
      }
      .page-88nw__game-text {
        word-break: break-word !important; /* Force break for long words */
      }
    }

    /* Promotions Section */
    .page-88nw__promotions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-88nw__promo-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box; /* Important for mobile list items */
    }

    .page-88nw__promo-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-88nw__promo-image {
      width: 100%;
      max-width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-88nw__promo-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-88nw__promo-text {
      font-size: 0.95em;
      color: #b0b0b0;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-88nw__promotions-list {
        grid-template-columns: 1fr;
      }
      .page-88nw__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 10px 10px 10px; /* Adjust padding for mobile */
      }
      .page-88nw__promo-text {
        word-break: break-word !important;
      }
    }

    /* Why Choose Section */
    .page-88nw__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-88nw__feature-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 25px 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Important for mobile list items */
    }

    .page-88nw__feature-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-88nw__feature-icon {
      width: 100px;
      max-width: 100%;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-88nw__feature-title {
      font-size: 1.3em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-88nw__feature-description {
      font-size: 0.9em;
      color: #b0b0b0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-88nw__features-grid {
        grid-template-columns: 1fr;
      }
      .page-88nw__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Adjust padding for mobile */
      }
      .page-88nw__feature-description {
        word-break: break-word !important;
      }
    }

    /* Payment and Providers Sections */
    .page-88nw__payment-methods-grid,
    .page-88nw__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-88nw__payment-item,
    .page-88nw__provider-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 15px 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-sizing: border-box; /* Important for mobile list items */
      color: #e0e0e0; /* Default text color for links */
    }

    .page-88nw__payment-item:hover,
    .page-88nw__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-88nw__payment-logo,
    .page-88nw__provider-logo {
      width: 80px; /* Smaller logos for these sections */
      max-width: 100%;
      height: 50px;
      object-fit: contain;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-88nw__payment-name,
    .page-88nw__provider-name {
      font-size: 0.9em;
      font-weight: bold;
      color: #e0e0e0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-88nw__payment-methods-grid,
      .page-88nw__providers-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile for better spacing */
      }
      .page-88nw__payment-item,
      .page-88nw__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 5px; /* Adjust padding for mobile */
      }
      .page-88nw__payment-name,
      .page-88nw__provider-name {
        word-break: break-word !important;
      }
    }

    /* About Section */
    .page-88nw__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 30px;
      text-align: left;
    }

    .page-88nw__about-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-88nw__about-text p {
      margin-bottom: 15px;
      color: #b0b0b0;
      font-size: 1.05em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88nw__about-text strong {
      color: #e94560;
    }

    @media (min-width: 769px) {
      .page-88nw__about-content {
        flex-direction: row;
        align-items: center;
      }
      .page-88nw__about-image {
        width: 45%;
        flex-shrink: 0;
      }
      .page-88nw__about-text {
        width: 55%;
      }
    }

    /* FAQ Section */
    .page-88nw__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-88nw__faq-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box; /* Important for mobile list items */
    }

    .page-88nw__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #0f3460;
      color: #ffffff;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

    .page-88nw__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-88nw__faq-q-text {
      margin: 0;
      font-size: 1.1em;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-88nw__faq-item.active .page-88nw__faq-toggle {
      transform: rotate(45deg); /* Plus to X/minus for expand/collapse */
    }

    .page-88nw__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #c0c0c0;
      background-color: #2a2a4a;
      box-sizing: border-box;
    }

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

    .page-88nw__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-88nw__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-88nw__faq-question {
        padding: 12px 15px;
      }
      .page-88nw__faq-q-text {
        font-size: 1em;
        word-break: break-word !important;
      }
      .page-88nw__faq-answer {
        padding: 0 15px;
      }
      .page-88nw__faq-item.active .page-88nw__faq-answer {
        padding: 15px 15px !important;
      }
      .page-88nw__faq-answer p {
        font-size: 0.95em;
        word-break: break-word !important;
      }
    }

    /* Ensure all images are responsive */
    .page-88nw img {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    /* General list item responsive rules */
    .page-88nw ul,
    .page-88nw ol {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding: 0 !important; /* Reset default padding */
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .page-88nw ul li,
    .page-88nw ol li {
      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;
    }

    @media (max-width: 768px) {
      .page-88nw__games-grid,
      .page-88nw__promotions-list,
      .page-88nw__features-grid,
      .page-88nw__payment-methods-grid,
      .page-88nw__providers-grid {
        gap: 15px;
      }
    }
  