
    :root {
      --page-8k8-17-primary: #FFD700; /* Gold */
      --page-8k8-17-secondary: #000000; /* Black */
      --page-8k8-17-accent: #FF4500; /* OrangeRed */
      --page-8k8-17-text-light: #ffffff;
      --page-8k8-17-text-dark: #333333;
      --page-8k8-17-bg-dark: #1a1a1a;
      --page-8k8-17-bg-light: #f0f0f0;
    }

    .page-8k8-17 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-17-text-light);
      background-color: var(--page-8k8-17-bg-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

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

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

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

    .page-8k8-17__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      padding: 60px 20px;
      text-align: center;
      background: linear-gradient(135deg, #000000, #333333);
    }

    .page-8k8-17__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4;
    }

    .page-8k8-17__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      color: var(--page-8k8-17-text-light);
    }

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

    .page-8k8-17__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-17-text-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-17__button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-8k8-17__heading {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-17-primary);
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-17__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-8k8-17-accent);
    }

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

    .page-8k8-17__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-8k8-17-text-light);
    }

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

    .page-8k8-17__feature-card {
      background-color: rgba(255, 255, 255, 0.08);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-17__feature-card:hover {
      transform: translateY(-5px);
      background-color: rgba(255, 255, 255, 0.15);
    }

    .page-8k8-17__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
    }

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

    .page-8k8-17__feature-description {
      color: var(--page-8k8-17-text-light);
      font-size: 0.95em;
    }

    .page-8k8-17__game-showcase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-17__game-card {
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-8k8-17__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-17__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 2px solid var(--page-8k8-17-primary);
      max-width: 100%;
      height: auto;
    }

    .page-8k8-17__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-17__game-title {
      font-size: 1.2em;
      color: var(--page-8k8-17-primary);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17__game-description {
      font-size: 0.9em;
      color: var(--page-8k8-17-text-light);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-17__payment-item {
      background-color: rgba(255, 255, 255, 0.08);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      color: var(--page-8k8-17-primary);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17__payment-item:hover {
      background-color: rgba(255, 255, 255, 0.15);
    }

    .page-8k8-17__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-17__faq-item {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-17__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: rgba(255, 255, 255, 0.15);
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-17__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-17-primary);
      pointer-events: none; /* Prevents text selection from interfering with click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1;
      padding-right: 10px;
    }

    .page-8k8-17__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-17-accent);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
    }

    .page-8k8-17__faq-item.active .page-8k8-17__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

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

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .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__subheading {
        font-size: 1.5em;
      }

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

      .page-8k8-17__features-grid,
      .page-8k8-17__game-showcase-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-17__feature-card,
      .page-8k8-17__game-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-17__payment-methods-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-17__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.9em;
        box-sizing: border-box !important;
      }

      .page-8k8-17__game-info {
        padding: 15px;
      }

      .page-8k8-17__faq-question {
        padding: 12px 15px;
      }

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

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

    /* Image responsiveness */
    .page-8k8-17 img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }
    .page-8k8-17__hero-background {
      width: 100%;
      height: 100%;
    }
  