
    /* Page-specific CSS for 8k8 17 */
    :root {
      --page-8k8-17-primary-color: #f7931a; /* Orange */
      --page-8k8-17-secondary-color: #333; /* Dark Grey */
      --page-8k8-17-accent-color: #ffcc00; /* Gold */
      --page-8k8-17-background-dark: #1a1a1a;
      --page-8k8-17-background-light: #f4f4f4;
      --page-8k8-17-text-light: #ffffff;
      --page-8k8-17-text-dark: #333333;
      --page-8k8-17-border-color: #555;
    }

    .page-8k8-17 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-17-text-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for safe measure, but body padding-top should handle this */
    }

    .page-8k8-17__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

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

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

    .page-8k8-17__heading {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-8k8-17-primary-color);
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    .page-8k8-17__heading--secondary {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: var(--page-8k8-17-secondary-color);
    }
    .page-8k8-17__section--dark .page-8k8-17__heading--secondary {
      color: var(--page-8k8-17-text-light);
    }

    .page-8k8-17__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-17__hero-section {
      position: relative;
      padding: 10px 20px 100px; /* Adjusted padding-top as per instruction */
      background-size: cover;
      background-position: center;
      color: var(--page-8k8-17-text-light);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .page-8k8-17__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-8k8-17__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-8k8-17__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-17-primary-color);
      line-height: 1.2;
    }

    .page-8k8-17__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-8k8-17__button {
      background-color: var(--page-8k8-17-primary-color);
      color: var(--page-8k8-17-text-light);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }

    .page-8k8-17__button:hover {
      background-color: var(--page-8k8-17-accent-color);
      transform: translateY(-3px);
    }

    /* Content Area */
    .page-8k8-17__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      align-items: center;
      text-align: left;
      margin-top: 40px;
    }

    .page-8k8-17__text-column,
    .page-8k8-17__image-column {
      flex: 1;
      min-width: 300px;
    }

    .page-8k8-17__image-column img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    /* Features/Promotions List */
    .page-8k8-17__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-17__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      color: var(--page-8k8-17-text-dark);
      border: 1px solid var(--page-8k8-17-border-color);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }
    .page-8k8-17__section--dark .page-8k8-17__feature-item {
      background-color: #2a2a2a;
      color: var(--page-8k8-17-text-light);
      border-color: #444;
    }

    .page-8k8-17__feature-item:hover {
      transform: translateY(-5px);
    }

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

    .page-8k8-17__feature-item img {
      width: 100%;
      max-width: 400px; /* Ensure images are not too wide */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    /* Game Providers */
    .page-8k8-17__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-17__provider-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      border: 1px solid var(--page-8k8-17-border-color);
    }
    .page-8k8-17__section--dark .page-8k8-17__provider-item {
      background-color: #2a2a2a;
      color: var(--page-8k8-17-text-light);
      border-color: #444;
    }

    .page-8k8-17__provider-item img {
      max-width: 150px;
      height: auto;
      margin-bottom: 10px;
    }

    .page-8k8-17__provider-name {
      font-weight: bold;
      color: var(--page-8k8-17-primary-color);
    }
    .page-8k8-17__section--dark .page-8k8-17__provider-name {
      color: var(--page-8k8-17-accent-color);
    }

    /* FAQ Section */
    .page-8k8-17__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-8k8-17__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-8k8-17-border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
      transition: background-color 0.3s ease;
    }
    .page-8k8-17__section--dark .page-8k8-17__faq-item {
      background-color: #2a2a2a;
      border-color: #444;
    }

    .page-8k8-17__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-8k8-17-secondary-color);
      transition: background-color 0.3s ease;
    }
    .page-8k8-17__section--dark .page-8k8-17__faq-question {
      color: var(--page-8k8-17-text-light);
    }

    .page-8k8-17__faq-question:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }
    .page-8k8-17__section--dark .page-8k8-17__faq-question:hover {
      background-color: rgba(255, 255, 255, 0.05);
    }


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

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

    .page-8k8-17__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-8k8-17-text-dark);
    }
    .page-8k8-17__section--dark .page-8k8-17__faq-answer {
      color: var(--page-8k8-17-text-light);
    }

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

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

    /* Sticky Register/Login Buttons */
    .page-8k8-17__sticky-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-17__sticky-button {
      background-color: var(--page-8k8-17-primary-color);
      color: var(--page-8k8-17-text-light);
      padding: 12px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      min-width: 100px;
    }

    .page-8k8-17__sticky-button:hover {
      background-color: var(--page-8k8-17-accent-color);
      transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-17 {
        padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header */
      }

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

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

      .page-8k8-17__heading {
        font-size: 2em;
      }

      .page-8k8-17__heading--secondary {
        font-size: 1.8em;
      }

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

      .page-8k8-17__content-wrapper {
        flex-direction: column;
        gap: 30px;
      }

      .page-8k8-17__text-column,
      .page-8k8-17__image-column {
        min-width: unset;
        width: 100%;
      }

      /* Mobile list item responsiveness */
      .page-8k8-17__feature-list,
      .page-8k8-17__provider-grid {
        grid-template-columns: 1fr; /* Single column */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-17__feature-item,
      .page-8k8-17__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-17__feature-item-title {
        font-size: 1.3em;
      }
      .page-8k8-17__feature-item img {
        max-width: 100%;
      }

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

      .page-8k8-17__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-17__faq-answer {
        padding: 0 15px;
      }

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

      .page-8k8-17__sticky-buttons {
        right: 10px;
        gap: 10px;
      }

      .page-8k8-17__sticky-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17__hero-title {
        font-size: 2em;
      }
      .page-8k8-17__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-17__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  