
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow, typical for casino */
      --secondary-color: #333333; /* Dark grey */
      --text-color: #ffffff; /* White */
      --dark-bg: #1a1a1a; /* Very dark background */
      --light-bg: #2a2a2a; /* Slightly lighter dark background */
      --border-color: #555555;
      --button-hover-color: #e6b800;
    }

    /* Base styles for the page content */
    .page-8k8-17-apk {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--dark-bg);
      line-height: 1.6;
      padding-top: 10px; /* Small padding top for visual separation from header */
    }

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

    .page-8k8-17-apk__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--light-bg);
      margin-bottom: 20px;
      border-radius: 10px;
      overflow: hidden; /* Ensure content stays within rounded corners */
    }

    .page-8k8-17-apk__section--dark {
      background-color: var(--secondary-color);
    }

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

    .page-8k8-17-apk__section-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-17-apk__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      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;
    }

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

    /* Hero Section */
    .page-8k8-17-apk__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:mobile,casino,app,download,8k8]') no-repeat center center / cover;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 20px;
    }

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

    .page-8k8-17-apk__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      color: var(--text-color);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    /* Features Section */
    .page-8k8-17-apk__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-8k8-17-apk__feature-item {
      background-color: var(--dark-bg);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-17-apk__feature-icon {
      width: 250px; /* Minimum 200px */
      height: 250px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-17-apk__feature-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-17-apk__feature-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Download Steps Section */
    .page-8k8-17-apk__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      padding: 0 20px;
      list-style: none; /* Remove default list styling */
    }

    .page-8k8-17-apk__step-item {
      background-color: var(--dark-bg);
      padding: 30px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      gap: 25px;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-17-apk__step-number {
      font-size: 2.5em;
      color: var(--primary-color);
      font-weight: bold;
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
    }

    .page-8k8-17-apk__step-content h3 {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-17-apk__step-content p {
      font-size: 1.1em;
      color: var(--text-color);
    }

    /* Games Section */
    .page-8k8-17-apk__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-8k8-17-apk__game-card {
      background-color: var(--dark-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-color);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-17-apk__game-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-17-apk__game-info {
      padding: 20px;
    }

    .page-8k8-17-apk__game-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-17-apk__game-provider {
      font-size: 0.9em;
      color: #aaaaaa;
    }

    /* Call to Action Section */
    .page-8k8-17-apk__cta-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8-17-apk__cta-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-color);
    }

    /* FAQ Section */
    .page-8k8-17-apk__faq-section {
      text-align: left;
    }

    .page-8k8-17-apk__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8-17-apk__faq-item {
      background-color: var(--dark-bg);
      border: 1px solid var(--border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-17-apk__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.3em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-17-apk__faq-question:hover {
      background-color: #444444;
    }

    .page-8k8-17-apk__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-8k8-17-apk__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-8k8-17-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--text-color);
      background-color: var(--dark-bg);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1.1em;
    }

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

    .page-8k8-17-apk__faq-answer p {
      margin-top: 0;
      margin-bottom: 1em;
    }
    .page-8k8-17-apk__faq-answer p:last-child {
      margin-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-17-apk__container {
        padding: 15px;
      }

      .page-8k8-17-apk__section {
        padding: 40px 0;
      }

      .page-8k8-17-apk__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-8k8-17-apk__section-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
      }

      .page-8k8-17-apk__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }

      .page-8k8-17-apk__hero-title {
        font-size: 2.8em;
      }

      .page-8k8-17-apk__hero-description {
        font-size: 1.2em;
      }

      .page-8k8-17-apk__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-17-apk__features-grid,
      .page-8k8-17-apk__games-grid {
        grid-template-columns: 1fr; /* Stack items */
        padding: 0 15px;
      }

      .page-8k8-17-apk__feature-item,
      .page-8k8-17-apk__game-card,
      .page-8k8-17-apk__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-17-apk__feature-icon {
        width: 200px; /* Adjust for smaller screens, but still > 200px */
        height: 200px;
      }

      .page-8k8-17-apk__steps-list {
        padding: 0 15px;
      }

      .page-8k8-17-apk__step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-17-apk__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-17-apk__step-content h3 {
        font-size: 1.5em;
      }

      .page-8k8-17-apk__step-content p {
        font-size: 1em;
      }

      .page-8k8-17-apk__faq-list {
        padding: 0 15px;
      }

      .page-8k8-17-apk__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8-17-apk__faq-answer {
        padding: 0 20px;
        font-size: 1em;
      }

      .page-8k8-17-apk__faq-item.active .page-8k8-17-apk__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-17-apk__cta-text {
        font-size: 1.1em;
      }

      /* Ensure all content within list items wraps */
      .page-8k8-17-apk__feature-description,
      .page-8k8-17-apk__step-content p,
      .page-8k8-17-apk__game-title,
      .page-8k8-17-apk__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17-apk__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-17-apk__hero-description {
        font-size: 1em;
      }
      .page-8k8-17-apk__section-title {
        font-size: 1.8em;
      }
      .page-8k8-17-apk__button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  