
    /* Page-specific CSS for 8k8.ph */
    :root {
      --page-8k8-ph-primary-color: #FFD700; /* Gold */
      --page-8k8-ph-secondary-color: #000000; /* Black */
      --page-8k8-ph-accent-color: #DC143C; /* Crimson */
      --page-8k8-ph-text-color: #FFFFFF; /* White */
      --page-8k8-ph-bg-dark: #1a1a1a;
      --page-8k8-ph-bg-medium: #2a2a2a;
      --page-8k8-ph-bg-light: #3a3a3a;
      --page-8k8-ph-border-radius: 8px;
    }

    .page-8k8-ph {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-ph-text-color);
      background-color: var(--page-8k8-ph-bg-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-8k8-ph__hero-section {
      background: linear-gradient(135deg, var(--page-8k8-ph-bg-dark) 0%, var(--page-8k8-ph-bg-medium) 100%);
      text-align: center;
      padding: 60px 20px 40px;
      position: relative;
      overflow: hidden;
      border-bottom: 5px solid var(--page-8k8-ph-primary-color);
      padding-top: 10px; /* Small top padding, relying on body for header offset */
    }

    .page-8k8-ph__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.2;
    }

    .page-8k8-ph__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
    }

    .page-8k8-ph__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-ph__main-title {
      font-size: 3.5em;
      color: var(--page-8k8-ph-primary-color);
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
      line-height: 1.1;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-8k8-ph__subtitle {
      font-size: 1.5em;
      color: var(--page-8k8-ph-text-color);
      margin-bottom: 30px;
    }

    .page-8k8-ph__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

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

    .page-8k8-ph__button--primary {
      background-color: var(--page-8k8-ph-primary-color);
      color: var(--page-8k8-ph-secondary-color);
    }

    .page-8k8-ph__button:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-ph__button--primary:hover {
      background-color: #FFEB3B;
    }

    .page-8k8-ph__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--page-8k8-ph-bg-medium);
      margin-bottom: 20px;
      border-radius: var(--page-8k8-ph-border-radius);
    }

    .page-8k8-ph__section--dark {
      background-color: var(--page-8k8-ph-bg-dark);
    }

    .page-8k8-ph__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-ph-primary-color);
      margin-bottom: 40px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
    }

    .page-8k8-ph__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-ph-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-ph__text-content {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 30px;
      text-align: left;
    }

    .page-8k8-ph__text-content p {
      margin-bottom: 15px;
    }

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

    .page-8k8-ph__game-card {
      background-color: var(--page-8k8-ph-bg-light);
      border-radius: var(--page-8k8-ph-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-ph__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-ph__game-card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-bottom: 3px solid var(--page-8k8-ph-accent-color);
    }

    .page-8k8-ph__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8k8-ph__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-8k8-ph__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-8k8-ph__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
      list-style: none;
      padding: 0 20px;
    }

    .page-8k8-ph__feature-item {
      background-color: var(--page-8k8-ph-bg-light);
      padding: 25px;
      border-radius: var(--page-8k8-ph-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      border-left: 5px solid var(--page-8k8-ph-primary-color);
      transition: background-color 0.3s ease;
    }

    .page-8k8-ph__feature-item:hover {
      background-color: #4a4a4a;
    }

    .page-8k8-ph__feature-title {
      font-size: 1.3em;
      color: var(--page-8k8-ph-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-ph__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

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

    .page-8k8-ph__promo-card {
      background-color: var(--page-8k8-ph-bg-light);
      border-radius: var(--page-8k8-ph-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-8k8-ph__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-ph__promo-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .page-8k8-ph__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8k8-ph__promo-content {
      padding: 20px;
    }

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

    .page-8k8-ph__promo-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-8k8-ph__promo-link-text {
      color: var(--page-8k8-ph-accent-color);
      font-weight: bold;
      text-decoration: none;
      cursor: default; /* Not a link, so default cursor */
      transition: color 0.3s ease;
    }

    .page-8k8-ph__promo-link-text:hover {
      color: #FF6347;
    }

    .page-8k8-ph__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      padding: 0 20px;
    }

    .page-8k8-ph__provider-logo-wrapper {
      background-color: var(--page-8k8-ph-bg-light);
      padding: 15px 25px;
      border-radius: var(--page-8k8-ph-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      width: 160px;
      box-sizing: border-box;
    }

    .page-8k8-ph__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .page-8k8-ph__faq-section {
      text-align: left;
    }

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

    .page-8k8-ph__faq-item {
      background-color: var(--page-8k8-ph-bg-light);
      border-radius: var(--page-8k8-ph-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-ph-bg-medium);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-8k8-ph__faq-question:hover {
      background-color: #3a3a3a;
    }

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

    .page-8k8-ph__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-ph-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

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

    .page-8k8-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, adjust to 20px 25px when active */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

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

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

      .page-8k8-ph__subtitle {
        font-size: 1.3em;
      }

      .page-8k8-ph__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-ph__container {
        padding: 15px;
      }

      .page-8k8-ph__hero-section {
        padding: 40px 15px 30px;
      }

      .page-8k8-ph__main-title {
        font-size: 2.5em;
        margin-bottom: 15px;
      }

      .page-8k8-ph__subtitle {
        font-size: 1.1em;
        margin-bottom: 20px;
      }

      .page-8k8-ph__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-ph__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

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

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

      .page-8k8-ph__text-content {
        font-size: 1em;
        padding: 0 15px;
      }

      .page-8k8-ph__game-grid,
      .page-8k8-ph__features-list,
      .page-8k8-ph__promo-grid,
      .page-8k8-ph__payment-providers {
        padding: 0 15px;
        gap: 20px;
      }

      /* List item responsive requirements */
      .page-8k8-ph__game-grid > div,
      .page-8k8-ph__features-list > li,
      .page-8k8-ph__promo-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-ph__features-list,
      .page-8k8-ph__game-grid,
      .page-8k8-ph__promo-grid {
        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-ph__game-card-image-wrapper,
      .page-8k8-ph__promo-image-wrapper {
        height: 180px;
      }

      .page-8k8-ph__game-card-title,
      .page-8k8-ph__promo-title {
        font-size: 1.3em;
      }

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

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

      .page-8k8-ph__faq-question {
        padding: 15px 20px;
      }

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

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

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

      /* Ensure all images are responsive */
      .page-8k8-ph img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-ph__hero-image-wrapper,
      .page-8k8-ph__game-card-image-wrapper,
      .page-8k8-ph__promo-image-wrapper,
      .page-8k8-ph__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-8k8-ph__provider-logo-wrapper {
        height: auto !important; /* Allow height to adjust */
        padding: 10px 15px !important;
        width: calc(50% - 10px) !important; /* Two columns */
      }
    }

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

      .page-8k8-ph__subtitle {
        font-size: 1em;
      }

      .page-8k8-ph__section-title {
        font-size: 1.6em;
      }

      .page-8k8-ph__button {
        font-size: 0.9em;
        padding: 10px 20px;
      }

      .page-8k8-ph__game-card-title,
      .page-8k8-ph__promo-title {
        font-size: 1.2em;
      }

      .page-8k8-ph__feature-title {
        font-size: 1.1em;
      }

      .page-8k8-ph__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-ph__provider-logo-wrapper {
        width: 100% !important; /* Single column */
      }
    }
  