
    .page-6ff-n-h {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light grey for general text */
      background-color: #1a1a2e; /* Dark blue background */
      line-height: 1.6;
    }

    .page-6ff-n-h__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 20px 40px; /* 10px top padding for hero as per fixed nav bar rule */
      background: linear-gradient(135deg, #1a1a2e, #0f0f1d);
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .page-6ff-n-h__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-6ff-n-h__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffd700; /* Gold color for title */
      line-height: 1.2;
    }

    .page-6ff-n-h__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-6ff-n-h__hero-button {
      background-color: #32cd32; /* Lime green for button */
      color: #ffffff;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 200px;
      box-shadow: 0 4px 15px rgba(0, 205, 0, 0.4);
    }

    .page-6ff-n-h__hero-button:hover {
      background-color: #228b22; /* Darker green on hover */
      transform: translateY(-2px);
    }

    .page-6ff-n-h__hero-image-wrapper {
      margin-top: 30px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-6ff-n-h__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      display: block;
      margin: 0 auto;
    }

    .page-6ff-n-h__section-title {
      font-size: 2.2em;
      color: #ffd700; /* Gold color for section titles */
      text-align: center;
      margin: 60px 20px 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-6ff-n-h__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #32cd32; /* Lime green underline */
      border-radius: 2px;
    }

    .page-6ff-n-h__section-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      color: #c0c0c0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
    }

    .page-6ff-n-h__features-section,
    .page-6ff-n-h__games-showcase,
    .page-6ff-n-h__promotions-section,
    .page-6ff-n-h__how-to-play-section,
    .page-6ff-n-h__faq-section {
      padding: 40px 20px;
      background-color: #1a1a2e;
    }

    .page-6ff-n-h__features-grid,
    .page-6ff-n-h__game-grid,
    .page-6ff-n-h__promo-grid,
    .page-6ff-n-h__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-6ff-n-h__feature-item,
    .page-6ff-n-h__game-card,
    .page-6ff-n-h__promo-card,
    .page-6ff-n-h__step-item {
      background-color: #2a2a4a; /* Slightly lighter dark blue */
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%; /* Ensure cards have equal height */
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-6ff-n-h__feature-item:hover,
    .page-6ff-n-h__game-card:hover,
    .page-6ff-n-h__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-6ff-n-h__feature-icon {
      width: 200px; /* Minimum size */
      height: 200px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
    }

    .page-6ff-n-h__feature-title,
    .page-6ff-n-h__game-title,
    .page-6ff-n-h__promo-title,
    .page-6ff-n-h__step-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .page-6ff-n-h__feature-text,
    .page-6ff-n-h__game-provider,
    .page-6ff-n-h__promo-text,
    .page-6ff-n-h__step-text {
      font-size: 1em;
      color: #c0c0c0;
      flex-grow: 1; /* Allows text to take up available space */
    }

    .page-6ff-n-h__game-image,
    .page-6ff-n-h__promo-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-6ff-n-h__game-provider {
      font-style: italic;
      font-size: 0.9em;
      color: #888888;
      margin-top: 10px;
    }

    .page-6ff-n-h__promo-button {
      background-color: #32cd32;
      color: #ffffff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 0.95em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 20px;
      box-shadow: 0 2px 10px rgba(0, 205, 0, 0.3);
    }

    .page-6ff-n-h__promo-button:hover {
      background-color: #228b22;
      transform: translateY(-2px);
    }

    .page-6ff-n-h__step-item {
      position: relative;
      padding-top: 60px; /* Space for the number */
    }

    .page-6ff-n-h__step-number {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffd700; /* Gold circle for number */
      color: #1a1a2e; /* Dark text on gold */
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    /* FAQ Section */
    .page-6ff-n-h__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-6ff-n-h__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-6ff-n-h__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #3a3a5a; /* Slightly darker than item bg */
      color: #ffd700;
      font-size: 1.1em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-6ff-n-h__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-6ff-n-h__faq-question-text {
      margin: 0;
      pointer-events: none; /* Prevent text from blocking click event */
      color: #ffd700; /* Ensure good contrast */
    }

    .page-6ff-n-h__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
      color: #32cd32; /* Green for toggle icon */
    }

    .page-6ff-n-h__faq-item.active .page-6ff-n-h__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like symbol */
    }

    .page-6ff-n-h__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #e0e0e0;
    }

    .page-6ff-n-h__faq-item.active .page-6ff-n-h__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Ensure good padding when open */
      opacity: 1;
    }

    .page-6ff-n-h__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-6ff-n-h__hero-title {
        font-size: 2em;
      }

      .page-6ff-n-h__hero-description {
        font-size: 1em;
      }

      .page-6ff-n-h__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-6ff-n-h__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
      }

      .page-6ff-n-h__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-6ff-n-h__features-grid,
      .page-6ff-n-h__game-grid,
      .page-6ff-n-h__promo-grid,
      .page-6ff-n-h__steps-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      .page-6ff-n-h__feature-item,
      .page-6ff-n-h__game-card,
      .page-6ff-n-h__promo-card,
      .page-6ff-n-h__step-item {
        padding: 20px;
        width: 100% !important; /* Mobile list item width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-6ff-n-h__feature-icon {
        width: 150px;
        height: 150px;
      }

      .page-6ff-n-h__game-image,
      .page-6ff-n-h__promo-image {
        height: 200px;
        max-width: 100% !important; /* Mobile image width */
        box-sizing: border-box !important;
      }

      .page-6ff-n-h__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-6ff-n-h__faq-answer {
        padding: 0 15px;
        box-sizing: border-box !important;
      }

      .page-6ff-n-h__faq-item.active .page-6ff-n-h__faq-answer {
        padding: 15px !important;
      }

      .page-6ff-n-h__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-6ff-n-h__hero-title {
        font-size: 1.8em;
      }
      .page-6ff-n-h__section-title {
        font-size: 1.6em;
      }
    }
  