
    /* Base styles for the specific page */
    .page-8k8-com-online {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-8k8-com-online__hero-section {
      background-color: #0a192f; /* Dark background for hero */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, body handles main offset */
    }

    .page-8k8-com-online__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3; /* Slightly transparent background image */
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-com-online__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-online__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #fff;
      word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-8k8-com-online__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-com-online__cta-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      box-sizing: border-box;
    }

    .page-8k8-com-online__cta-button:hover {
      background-color: #0056b3;
    }

    .page-8k8-com-online__title {
      font-size: 2.5em;
      color: #212529;
      text-align: center;
      margin-bottom: 30px;
      word-wrap: break-word;
    }

    .page-8k8-com-online__subtitle {
      font-size: 1.8em;
      color: #343a40;
      margin-bottom: 20px;
      word-wrap: break-word;
    }

    .page-8k8-com-online__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #495057;
      word-wrap: break-word;
    }

    .page-8k8-com-online__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-com-online__feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-online__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-online__feature-icon {
      width: 250px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-8k8-com-online__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-8k8-com-online__feature-description {
      font-size: 1em;
      color: #6c757d;
      word-wrap: break-word;
    }

    .page-8k8-com-online__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-com-online__step-item {
      background-color: #e9ecef;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-com-online__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #007bff;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-8k8-com-online__step-text {
      font-size: 1.1em;
      color: #343a40;
      flex-grow: 1;
      word-wrap: break-word;
    }

    .page-8k8-com-online__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-com-online__game-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-com-online__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-8k8-com-online__game-info {
      padding: 20px;
    }

    .page-8k8-com-online__game-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-8k8-com-online__game-description {
      font-size: 0.95em;
      color: #6c757d;
      word-wrap: break-word;
    }

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

    .page-8k8-com-online__payment-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px 25px;
      font-weight: bold;
      color: #343a40;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      min-width: 120px;
      text-align: center;
      word-wrap: break-word;
    }

    .page-8k8-com-online__faq-section {
      background-color: #f1f1f1;
      border-top: 1px solid #e0e0e0;
    }

    .page-8k8-com-online__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-com-online__faq-item {
      background-color: #fff;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #f8f9fa;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      color: #333;
    }

    .page-8k8-com-online__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-8k8-com-online__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #007bff;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
    }

    .page-8k8-com-online__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 */
      flex-shrink: 0;
      margin-left: 10px; /* Space between text and toggle */
    }

    .page-8k8-com-online__faq-item.active .page-8k8-com-online__faq-toggle {
      transform: rotate(45deg); /* Change + to X or rotate for - */
    }

    .page-8k8-com-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #495057;
      font-size: 1em;
      background-color: #fff;
      word-wrap: break-word;
    }

    .page-8k8-com-online__faq-item.active .page-8k8-com-online__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-online__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-com-online__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-com-online__title {
        font-size: 2em;
      }

      .page-8k8-com-online__subtitle {
        font-size: 1.5em;
      }

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

      /* List item responsive requirements */
      .page-8k8-com-online__features-grid,
      .page-8k8-com-online__steps-list,
      .page-8k8-com-online__games-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        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-com-online__feature-item,
      .page-8k8-com-online__step-item,
      .page-8k8-com-online__game-card,
      .page-8k8-com-online__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for smaller screens */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-online__payments-list {
        flex-direction: column;
        align-items: stretch;
      }

      .page-8k8-com-online__payment-item {
        min-width: unset;
      }

      /* Image responsive */
      .page-8k8-com-online__feature-icon,
      .page-8k8-com-online__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-online__faq-question h3 {
        font-size: 1.1em;
      }
    }
  