
    :root {
      --primary-color: #FFD700; /* Gold/Yellow for casino theme */
      --secondary-color: #000000; /* Black */
      --text-color: #FFFFFF; /* White */
      --dark-grey: #333333;
      --light-grey: #CCCCCC;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --button-hover-color: #FFC107; /* Slightly darker gold */
      --border-color: #444444;
      /* --header-offset: 122px; This will be set by shared.css or act as a fallback */
    }

    /* Base styles for the page container */
    .page-8k8-2 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      /* The body padding from shared.css should handle the main header offset.
         This padding-top on the main content is a fallback/additional decorative spacing. */
      padding-top: var(--header-offset, 122px);
    }

    /* Section styling */
    .page-8k8-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-2__section--dark {
      background-color: var(--background-light);
    }

    .page-8k8-2__section-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-2__section-subtitle {
      font-size: 1.5em;
      color: var(--light-grey);
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-8k8-2__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 600px;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      padding-bottom: 60px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Slightly darken background for text readability */
    }

    .page-8k8-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-2__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: var(--text-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-2__download-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-2__download-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block; /* Ensure padding works as expected */
      border: none; /* Make it look like a button */
      cursor: pointer;
      box-sizing: border-box;
    }

    .page-8k8-2__download-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    /* Feature/Benefit cards */
    .page-8k8-2__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-2__feature-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
    }

    .page-8k8-2__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-2__feature-icon {
      width: 250px; /* Enforce min size 200x200 */
      height: 250px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-8k8-2__feature-card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-2__feature-card-description {
      color: var(--light-grey);
      font-size: 1em;
    }

    /* How to Download Steps */
    .page-8k8-2__steps-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-8k8-2__step-item {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
      min-width: 280px;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-8k8-2__step-number {
      font-size: 2.5em;
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-2__step-title {
      font-size: 1.3em;
      color: var(--text-color);
      margin-bottom: 15px;
    }

    .page-8k8-2__step-description {
      color: var(--light-grey);
    }

    /* Image Styling */
    .page-8k8-2__image-container {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      width: 100%; /* Ensure responsiveness */
      box-sizing: border-box;
    }

    .page-8k8-2__content-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      box-sizing: border-box;
    }

    /* Game Providers / Promotions List */
    .page-8k8-2__provider-list,
    .page-8k8-2__promotion-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-8k8-2__provider-item,
    .page-8k8-2__promotion-item {
      background-color: var(--background-light);
      padding: 20px 25px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      font-size: 1.1em;
      color: var(--primary-color);
      font-weight: bold;
      text-align: center;
      flex: 1 1 auto; /* Allow items to grow/shrink */
      max-width: 200px; /* Max width for individual items */
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-8k8-2__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-2__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--dark-grey);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-2__faq-question:hover {
      background-color: #444444;
    }

    .page-8k8-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar effect */
    }

    .page-8k8-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: var(--light-grey);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-8k8-2__faq-answer p {
      margin-bottom: 10px;
    }
    .page-8k8-2__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-2__hero-title {
        font-size: 3em;
      }
      .page-8k8-2__section-title {
        font-size: 2.2em;
      }
      .page-8k8-2__step-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row on medium screens */
      }
    }

    @media (max-width: 768px) {
      .page-8k8-2__hero-section {
        min-height: 450px;
        padding-bottom: 40px;
      }
      .page-8k8-2__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-2__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-2__download-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-2__download-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-2__section {
        padding: 40px 15px;
      }
      .page-8k8-2__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-8k8-2__section-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
      }

      .page-8k8-2__feature-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }
      .page-8k8-2__feature-card {
        padding: 20px;
      }

      .page-8k8-2__steps-container {
        gap: 20px;
      }
      .page-8k8-2__step-item {
        flex: 1 1 100%; /* Single column on mobile */
        max-width: 100%;
        padding: 20px;
      }

      /* Image responsiveness for mobile */
      .page-8k8-2__image-container {
        margin: 30px auto;
        padding: 0 10px; /* Add some padding to container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-8k8-2__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item mobile responsiveness */
      .page-8k8-2__provider-list,
      .page-8k8-2__promotion-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        flex-direction: column; /* Stack items */
        align-items: center;
      }

      .page-8k8-2__provider-item,
      .page-8k8-2__promotion-item {
        width: 90% !important;
        max-width: 90% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-2__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-2__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-2__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-2__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-2__hero-description {
        font-size: 1em;
      }
      .page-8k8-2__section-title {
        font-size: 1.6em;
      }
      .page-8k8-2__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }
  