
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #007bff; /* Blue */
      --text-color: #ffffff; /* White */
      --background-dark: #1a1a1a; /* Very Dark Grey */
      --background-light: #2c2c2c; /* Slightly Lighter Dark Grey */
      --border-color: #555555;
      --button-hover: #e6b800;
    }

    .page-8k8-2 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-8k8-2__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8,casino,mobile,gaming,download]') center center no-repeat;
      background-size: cover;
      padding: 10px 20px 80px 20px; /* Adjusted padding-top for header offset */
      text-align: center;
      color: var(--text-color);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      width: 100%;
      box-sizing: border-box;
    }

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

    .page-8k8-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__button:hover {
      background-color: var(--button-hover);
    }

    .page-8k8-2__section {
      padding: 60px 20px;
      background-color: var(--background-light);
      margin-bottom: 20px;
      border-radius: 8px;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
    }

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

    .page-8k8-2__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-8k8-2__card {
      background-color: var(--secondary-color);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      color: var(--text-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-8k8-2__card:hover {
      transform: translateY(-10px);
    }

    .page-8k8-2__card-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-2__card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__card-description {
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__download-steps {
      display: flex;
      flex-direction: column;
      gap: 40px;
      text-align: left;
      margin-top: 40px;
    }

    .page-8k8-2__step-item {
      display: flex;
      align-items: center;
      gap: 30px;
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-2__step-number {
      font-size: 3em;
      color: var(--primary-color);
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-8k8-2__step-content h3 {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__step-content p {
      font-size: 1.1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__step-image {
      width: 300px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      max-width: 100%;
    }
    
    .page-8k8-2__step-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .page-8k8-2__promo-banner {
      background: var(--primary-color);
      color: var(--secondary-color);
      padding: 50px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
      width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-2__promo-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__promo-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__promo-button {
      background-color: var(--secondary-color);
      color: var(--primary-color);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__promo-button:hover {
      background-color: #000000;
    }

    .page-8k8-2__faq-section {
      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-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(--secondary-color);
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      color: var(--primary-color);
      font-size: 1.2em;
    }

    .page-8k8-2__faq-toggle {
      font-size: 1.5em;
      margin-left: 20px;
      color: var(--primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-2__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.4s ease;
      background-color: var(--background-light);
      color: var(--text-color);
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-8k8-2__faq-answer p {
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-8k8-2__faq-answer ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .page-8k8-2__faq-answer li {
        margin-bottom: 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-2__hero-title {
        font-size: 2.5em;
      }

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

      .page-8k8-2__section-title {
        font-size: 2em;
      }

      .page-8k8-2__step-item {
        flex-direction: column;
        text-align: center;
      }
      .page-8k8-2__step-item:nth-child(even) {
        flex-direction: column; /* Ensure consistent stacking on smaller screens */
      }

      .page-8k8-2__step-image {
        width: 100%;
        max-width: 400px;
        margin-top: 20px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-2__hero-section {
        min-height: 400px;
        padding: 10px 15px 60px 15px;
      }

      .page-8k8-2__hero-title {
        font-size: 2em;
      }

      .page-8k8-2__hero-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-8k8-2__button, .page-8k8-2__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-2__section {
        padding: 40px 15px;
      }

      .page-8k8-2__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-2__card {
        padding: 25px;
      }

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

      .page-8k8-2__download-steps {
        gap: 30px;
      }

      .page-8k8-2__step-item {
        padding: 20px;
        flex-direction: column; /* Stack image and content */
        text-align: center;
      }
      .page-8k8-2__step-item:nth-child(even) {
        flex-direction: column;
      }

      .page-8k8-2__step-number {
        font-size: 2.5em;
        margin-bottom: 15px;
      }

      .page-8k8-2__step-content h3 {
        font-size: 1.5em;
      }

      .page-8k8-2__step-content p {
        font-size: 1em;
      }

      .page-8k8-2__promo-banner {
        padding: 30px 15px;
      }

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

      .page-8k8-2__promo-description {
        font-size: 1em;
      }

      .page-8k8-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      
      .page-8k8-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-2__faq-toggle {
        font-size: 1.2em;
        margin-left: 15px;
      }

      .page-8k8-2__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
        padding: 15px 20px !important;
      }
      
      /* List items mobile responsiveness */
      .page-8k8-2 ul, .page-8k8-2 ol {
        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-2 li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 5px 0 !important; /* Adjust padding as needed */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-2__step-image, .page-8k8-2__card-icon {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-8k8-2__hero-subtitle {
        font-size: 0.9em;
      }

      .page-8k8-2__section-title {
        font-size: 1.5em;
      }

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

      .page-8k8-2__step-content h3 {
        font-size: 1.3em;
      }
    }
  