
    /* Fixed Navbar Spacing - applying to the root of the page content as a fallback if body padding is not provided by shared.css */
    .page-8k8-app {
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined */
    }

    /* Basic styles for the page */
    .page-8k8-app {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

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

    .page-8k8-app__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient reflecting casino theme */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      padding-top: calc(60px + 10px); /* Add 10px for decorative top spacing, relying on body padding for header offset */
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-app__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      z-index: 1;
    }

    .page-8k8-app__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-8k8-app__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffd700; /* Gold color for emphasis */
    }

    .page-8k8-app__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8-app__download-button {
      display: inline-block;
      background-color: #00aaff; /* A vibrant blue for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
    }

    .page-8k8-app__download-button:hover {
      background-color: #007bb5;
    }

    .page-8k8-app__section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-app__section-title {
      font-size: 2.2em;
      color: #1a2a6c; /* Dark blue from gradient */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-app__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-8k8-app__feature-card {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid #e0e0e0;
    }

    .page-8k8-app__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-app__feature-icon {
      width: 200px; /* Min size 200x200px */
      height: 200px; /* Min size 200x200px */
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-app__feature-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-app__feature-description {
      font-size: 1em;
      color: #555;
    }

    .page-8k8-app__image-container {
      text-align: center;
      margin: 30px 0;
      overflow: hidden; /* Ensure image doesn't overflow */
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
    }

    .page-8k8-app__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      display: block; /* Remove extra space below image */
      margin: 0 auto;
    }

    .page-8k8-app__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-8k8-app__step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: #fefefe;
      padding: 20px;
      border-left: 5px solid #00aaff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for list item responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-8k8-app__step-number {
      background-color: #00aaff;
      color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
    }

    .page-8k8-app__step-content {
      flex-grow: 1;
    }

    .page-8k8-app__step-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-8k8-app__step-description {
      color: #555;
      font-size: 1em;
    }

    .page-8k8-app__game-provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-app__provider-item {
      background-color: #fff;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: #1a2a6c;
      text-align: center;
      min-width: 120px;
      flex: 1 1 auto; /* Allow items to grow and shrink */
      box-sizing: border-box; /* Crucial for list item responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      max-width: 200px; /* Limit max width for larger screens */
    }

    .page-8k8-app__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-8k8-app__payment-method-item {
      background-color: #e6f7ff;
      border: 1px solid #b3e0ff;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 0.95em;
      color: #007bb5;
      font-weight: bold;
      box-sizing: border-box; /* Crucial for list item responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      flex: 1 1 auto; /* Allow items to grow and shrink */
      max-width: 150px; /* Limit max width for larger screens */
      text-align: center;
    }

    /* FAQ Section Styles */
    .page-8k8-app__faq-section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-app__faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fefefe;
    }

    .page-8k8-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f8ff;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #1a2a6c;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-app__faq-question:hover {
      background-color: #e0f0ff;
    }

    .page-8k8-app__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-app__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-8k8-app__faq-item.active .page-8k8-app__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, visually indicating 'collapse' */
    }

    .page-8k8-app__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding, will change on active */
      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: 0.95em;
      background-color: #fff;
    }

    .page-8k8-app__faq-item.active .page-8k8-app__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important; /* Adjust padding for expanded state */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-app__container {
        padding: 15px;
      }

      .page-8k8-app__hero-section {
        padding: 40px 15px;
        padding-top: calc(40px + 10px);
      }

      .page-8k8-app__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-app__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-app__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-app__section {
        padding: 30px 15px;
      }

      .page-8k8-app__section-title {
        font-size: 1.8em;
      }

      .page-8k8-app__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-app__feature-card {
        padding: 20px;
      }

      .page-8k8-app__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
      }

      .page-8k8-app__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-app__game-provider-list,
      .page-8k8-app__payment-methods {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-app__provider-item,
      .page-8k8-app__payment-method-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px !important;
      }

      .page-8k8-app__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-8k8-app__faq-answer {
        padding: 0 15px;
      }

      .page-8k8-app__faq-item.active .page-8k8-app__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-app__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-app__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-app__download-button {
        font-size: 1em;
        padding: 10px 20px;
      }

      .page-8k8-app__section-title {
        font-size: 1.6em;
      }

      .page-8k8-app__feature-title {
        font-size: 1.3em;
      }

      .page-8k8-app__step-title {
        font-size: 1.2em;
      }
    }
  