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

    /* Fixed navigation bar spacing */
    .page-8k8-com-online__hero-section {
      padding-top: 10px; /* Minimal padding if body already has --header-offset */
      position: relative;
      overflow: hidden;
    }
    
    .page-8k8-com-online__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-online__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-online__heading {
      color: #0056b3; /* Darker blue for headings */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-com-online__sub-heading {
      color: #007bff; /* Primary blue for sub-headings */
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: 600;
    }

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

    .page-8k8-com-online__button {
      display: inline-block;
      background-color: #ffc107; /* Yellow button for call to action */
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-com-online__button:hover {
      background-color: #e0a800;
    }

    /* Hero Section */
    .page-8k8-com-online__hero-section {
      background: linear-gradient(to right, #007bff, #0056b3);
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      border-radius: 0 0 15px 15px;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-com-online__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #ffffff;
    }

    .page-8k8-com-online__hero-description {
      font-size: 1.4em;
      max-width: 800px;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-com-online__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-top: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
    
    .page-8k8-com-online__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

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

    .page-8k8-com-online__feature-card {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 200px; /* Ensure cards have a consistent minimum height */
    }

    .page-8k8-com-online__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-com-online__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    .page-8k8-com-online__feature-icon-wrapper img {
        max-width: 200px; /* Ensure images displayed are not tiny */
        height: auto;
        border-radius: 5px;
    }


    .page-8k8-com-online__feature-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-online__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Game Categories Section */
    .page-8k8-com-online__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-com-online__game-card {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-com-online__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-com-online__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }
    .page-8k8-com-online__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-8k8-com-online__game-image-wrapper img {
        max-width: 100%;
        height: auto;
    }


    .page-8k8-com-online__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-8k8-com-online__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-8k8-com-online__promo-section {
      background-color: #fff3cd; /* Light yellow for promotions */
      border: 1px solid #ffeeba;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      margin-bottom: 20px;
    }
    .page-8k8-com-online__promo-card { /* Using section directly for card styling */
      padding: 0; /* Reset internal padding if section is styled as card */
      background-color: transparent;
      box-shadow: none;
    }

    .page-8k8-com-online__promo-title {
      font-size: 1.8em;
      color: #856404; /* Dark yellow for promo title */
      margin-bottom: 15px;
    }

    .page-8k8-com-online__promo-description {
      font-size: 1.1em;
      color: #856404;
      margin-bottom: 20px;
    }

    /* How to Join Section */
    .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: 25px;
    }

    .page-8k8-com-online__step-item {
      background-color: #e6f7ff; /* Light blue for steps */
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-com-online__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #007bff;
      margin-bottom: 15px;
      background-color: #d1ecf1;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #007bff;
    }

    .page-8k8-com-online__step-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-8k8-com-online__step-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ Section */
    .page-8k8-com-online__faq-section {
      background-color: #f0f8ff;
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-online__faq-heading {
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-8k8-com-online__faq-item {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #e9f7ff;
      color: #0056b3;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-com-online__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-8k8-com-online__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
      color: #007bff;
    }

    .page-8k8-com-online__faq-item.active .page-8k8-com-online__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
    }
    
    .page-8k8-com-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #f9fcfd;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* General Image Styles for responsiveness */
    .page-8k8-com-online img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-online__container {
        padding: 15px;
      }

      .page-8k8-com-online__heading {
        font-size: 2em;
        margin-bottom: 25px;
      }

      .page-8k8-com-online__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-online__hero-description {
        font-size: 1.2em;
      }

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

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

      /* List item responsiveness */
      .page-8k8-com-online__features-grid,
      .page-8k8-com-online__game-categories-grid,
      .page-8k8-com-online__steps-list {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 20px;
      }
      
      .page-8k8-com-online__feature-card,
      .page-8k8-com-online__game-card,
      .page-8k8-com-online__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-online__steps-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-online__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      
      .page-8k8-com-online__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-online__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }
      
      .page-8k8-com-online__faq-item.active .page-8k8-com-online__faq-answer {
        padding: 15px !important;
      }
    }
    
    @media (max-width: 480px) {
      .page-8k8-com-online__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-online__hero-description {
        font-size: 1em;
      }
      .page-8k8-com-online__heading {
        font-size: 1.8em;
      }
      .page-8k8-com-online__sub-heading {
        font-size: 1.3em;
      }
      .page-8k8-com-online__feature-title,
      .page-8k8-com-online__game-title,
      .page-8k8-com-online__step-title {
        font-size: 1.2em;
      }
      .page-8k8-com-online__promo-title {
        font-size: 1.5em;
      }
    }
  