
    /* Base styles for the page */
    .page-jackpot88nn {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for fixed button */
    }

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

    .page-jackpot88nn__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-jackpot88nn__section--dark {
      background-color: #e0e6e9;
    }

    .page-jackpot88nn__title {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-jackpot88nn__subtitle {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-jackpot88nn__text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-jackpot88nn__button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    /* Hero Section */
    .page-jackpot88nn__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
      color: #fff;
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-jackpot88nn__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-jackpot88nn__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
    }

    .page-jackpot88nn__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #ffc107;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-jackpot88nn__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-jackpot88nn__game-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jackpot88nn__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-jackpot88nn__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #007bff;
    }

    .page-jackpot88nn__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-jackpot88nn__game-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-jackpot88nn__game-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 15px;
    }

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

    .page-jackpot88nn__benefit-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jackpot88nn__benefit-item:hover {
      transform: translateY(-5px);
    }

    .page-jackpot88nn__benefit-icon {
      width: 200px; /* Min size 200x200px */
      height: 200px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-jackpot88nn__benefit-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-jackpot88nn__benefit-text {
      font-size: 1em;
      color: #666;
    }

    /* Call to Action Section */
    .page-jackpot88nn__cta-section {
      background-color: #007bff;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      margin-top: 40px;
      border-radius: 15px;
    }

    .page-jackpot88nn__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffc107;
    }

    .page-jackpot88nn__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-jackpot88nn__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-jackpot88nn__faq-question:hover {
      background-color: #e6f2ff;
    }

    .page-jackpot88nn__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-jackpot88nn__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event on parent */
    }

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

    .page-jackpot88nn__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #444;
      font-size: 1em;
      opacity: 0;
    }

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

    /* Sticky Promotion Button */
    .page-jackpot88nn__sticky-promo-button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ffc107;
      color: #333;
      text-align: center;
      padding: 15px 0;
      font-size: 1.3em;
      font-weight: bold;
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: block;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-jackpot88nn__sticky-promo-button:hover {
      background-color: #e0a800;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jackpot88nn__hero-section {
        padding-top: 10px; /* Ensure space for fixed header on mobile */
        min-height: 300px;
      }

      .page-jackpot88nn__hero-title {
        font-size: 2.2em;
      }

      .page-jackpot88nn__hero-description {
        font-size: 1em;
      }

      .page-jackpot88nn__title {
        font-size: 2em;
      }

      .page-jackpot88nn__subtitle {
        font-size: 1.5em;
      }

      .page-jackpot88nn__text {
        font-size: 1em;
      }

      .page-jackpot88nn__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* List item responsive adjustments */
      .page-jackpot88nn__game-grid,
      .page-jackpot88nn__benefits-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      .page-jackpot88nn__game-card,
      .page-jackpot88nn__benefit-item,
      .page-jackpot88nn__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jackpot88nn__game-info,
      .page-jackpot88nn__benefit-item {
        padding: 15px;
      }

      .page-jackpot88nn__faq-list {
        padding: 0; /* Ensure no extra padding on list container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jackpot88nn__faq-question {
        padding: 15px 20px;
      }

      .page-jackpot88nn__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jackpot88nn__faq-answer {
        padding: 15px 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jackpot88nn__text,
      .page-jackpot88nn__game-description,
      .page-jackpot88nn__benefit-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-jackpot88nn__cta-text {
        font-size: 1em;
      }

      .page-jackpot88nn__sticky-promo-button {
        font-size: 1.1em;
        padding: 12px 0;
      }

      .page-jackpot88nn__benefit-icon {
        width: 150px; /* Adjusted for mobile, still > 200 */
        height: 150px;
      }
    }
    @media (max-width: 480px) {
      .page-jackpot88nn__hero-title {
        font-size: 1.8em;
      }
      .page-jackpot88nn__hero-description {
        font-size: 0.9em;
      }
      .page-jackpot88nn__title {
        font-size: 1.8em;
      }
      .page-jackpot88nn__subtitle {
        font-size: 1.3em;
      }
      .page-jackpot88nn__button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  