
    /* General styles for the page scope */
    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px; /* Space above footer */
    }

    /* Fixed navigation bar spacing - assuming body padding is handled by shared.css */
    .page-8k8-4__hero-section {
      padding-top: 10px; /* Small decorative top padding */
    }

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

    .page-8k8-4__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-8k8-4__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-4__heading {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #333;
    }

    .page-8k8-4__section--dark .page-8k8-4__heading {
      color: #ecf0f1;
    }

    .page-8k8-4__subheading {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-8k8-4__section--dark .page-8k8-4__subheading {
      color: #bdc3c7;
    }

    .page-8k8-4__text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-8k8-4__button {
      display: inline-block;
      background-color: #e74c3c; /* A vibrant color for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-4__button:hover {
      background-color: #c0392b;
    }

    /* Hero Section */
    .page-8k8-4__hero-section {
      background-color: #1a1a2e; /* Dark background for a premium feel */
      color: #fff;
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

    .page-8k8-4__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4; /* Slightly dim the background image */
    }

    .page-8k8-4__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-4__hero-heading {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f39c12; /* Gold/orange for emphasis */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-8k8-4__hero-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ecf0f1;
    }

    /* Grid for features/benefits */
    .page-8k8-4__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-4__grid-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-8k8-4__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-4__grid-item-icon {
      width: 250px; /* Minimum size 200x200 enforced */
      height: 250px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-4__grid-item-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #e74c3c;
    }

    .page-8k8-4__grid-item-description {
      color: #666;
    }

    /* Steps Section */
    .page-8k8-4__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      text-align: left;
    }

    .page-8k8-4__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-4__step-number {
      background-color: #e74c3c;
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 20px;
      flex-shrink: 0;
    }

    .page-8k8-4__step-title {
      font-size: 1.6em;
      margin-bottom: 10px;
      color: #333;
    }

    .page-8k8-4__step-description {
      color: #666;
    }

    /* Promotions Section */
    .page-8k8-4__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-top: 40px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-4__promo-image {
      width: 100%;
      max-width: 600px;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      max-height: 350px;
      min-width: 200px; /* Enforce minimum size for images */
      min-height: 200px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-4__promo-title {
      font-size: 2em;
      color: #f39c12;
      margin-bottom: 15px;
    }

    .page-8k8-4__promo-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 25px;
    }

    /* Payment Methods & Game Providers */
    .page-8k8-4__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-8k8-4__logo-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      width: 100%;
      max-width: 180px; /* Ensure max-width for logos */
      height: 100px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-8k8-4__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      width: auto; /* Allow image to scale within container */
      height: auto; /* Allow image to scale within container */
      min-width: 200px; /* Enforce minimum size for images as per requirement */
      min-height: 200px;
    }
    
    /* FAQ Section */
    .page-8k8-4__faq-section {
      background-color: #f0f2f5;
      padding: 60px 0;
    }

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

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      color: #333;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-4__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-8k8-4__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-4__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-8k8-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #555;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-4__hero-heading {
        font-size: 3em;
      }
      .page-8k8-4__heading {
        font-size: 2em;
      }
      .page-8k8-4__subheading {
        font-size: 1.5em;
      }
      .page-8k8-4__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-4__steps-list {
        grid-template-columns: 1fr;
      }
      .page-8k8-4__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-4__hero-section {
        padding: 60px 0;
        min-height: 300px;
      }
      .page-8k8-4__hero-heading {
        font-size: 2.5em;
      }
      .page-8k8-4__hero-text {
        font-size: 1.1em;
      }
      .page-8k8-4__section {
        padding: 30px 0;
      }
      .page-8k8-4__heading {
        font-size: 1.8em;
      }
      .page-8k8-4__subheading {
        font-size: 1.3em;
      }
      .page-8k8-4__text {
        font-size: 1em;
      }
      .page-8k8-4__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Responsive list items requirements */
      .page-8k8-4__grid-item,
      .page-8k8-4__step-item,
      .page-8k8-4__logo-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 mobile */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-4__grid,
      .page-8k8-4__steps-list,
      .page-8k8-4__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Ensure container padding is adjusted */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-4__faq-question,
      .page-8k8-4__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-8k8-4__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-4__faq-answer p {
        font-size: 0.95em;
      }
      .page-8k8-4__promo-card {
        padding: 20px;
      }
      .page-8k8-4__promo-title {
        font-size: 1.5em;
      }
      .page-8k8-4__promo-description {
        font-size: 1em;
      }

      /* Image responsive optimization */
      .page-8k8-4 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-4__hero-background,
      .page-8k8-4__promo-image,
      .page-8k8-4__grid-item-icon,
      .page-8k8-4__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      /* Specific image containers */
      .page-8k8-4__logo-item {
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust if image scales */
        min-height: 100px !important; /* Maintain a minimum visual presence */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-4__hero-heading {
        font-size: 2em;
      }
      .page-8k8-4__hero-text {
        font-size: 1em;
      }
      .page-8k8-4__heading {
        font-size: 1.5em;
      }
    }
  