
    /* Base styles for the specific page */
    .page-8k8-ph {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding, assuming body already handles header offset */
    }

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

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

    .page-8k8-ph__section--dark {
      background-color: #16213e;
    }

    .page-8k8-ph__section--light {
      background-color: #0f3460;
    }

    .page-8k8-ph__heading {
      color: #e94560;
      margin-bottom: 20px;
      font-size: 2.5em;
    }

    .page-8k8-ph__subheading {
      color: #e94560;
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-8k8-ph__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #c0c0c0;
    }

    /* Hero Section */
    .page-8k8-ph__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }

    .page-8k8-ph__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.5); /* Allowed for background effect */
    }

    .page-8k8-ph__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

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

    .page-8k8-ph__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #c0c0c0;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-ph__cta-button {
      display: inline-block;
      background-color: #e94560;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-ph__cta-button:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    /* Features/Highlights Section */
    .page-8k8-ph__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-ph__feature-item {
      background-color: #0f3460;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-ph__feature-icon {
      width: 250px; /* Minimum 200x200 */
      height: 200px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .page-8k8-ph__feature-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-8k8-ph__feature-description {
      color: #c0c0c0;
    }

    /* Game Providers Section */
    .page-8k8-ph__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-ph__provider-card {
      background-color: #1a1a2e;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
      transition: background-color 0.3s ease;
    }

    .page-8k8-ph__provider-card:hover {
      background-color: #0f3460;
    }

    .page-8k8-ph__provider-logo {
      width: 200px; /* Minimum 200x200 */
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-8k8-ph__provider-name {
      font-size: 1.2em;
      color: #e94560;
      font-weight: bold;
    }

    /* Promotions Section */
    .page-8k8-ph__promo-card {
      background-color: #0f3460;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      padding: 30px;
      margin-bottom: 30px;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
    }

    .page-8k8-ph__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8-ph__promo-title {
      font-size: 1.8em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-8k8-ph__promo-description {
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    /* Payment Methods Section */
    .page-8k8-ph__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-ph__payment-item {
      background-color: #1a1a2e;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-ph__payment-logo {
      width: 200px; /* Minimum 200x200 */
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-8k8-ph__payment-name {
      font-size: 1.1em;
      color: #c0c0c0;
    }

    /* FAQ Section */
    .page-8k8-ph__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-ph__faq-item {
      background-color: #0f3460;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #1a1a2e;
      color: #e94560;
      font-size: 1.3em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-ph__faq-question:hover {
      background-color: #2a2a4e;
    }

    .page-8k8-ph__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-ph__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-ph__faq-item.active .page-8k8-ph__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar effect */
    }

    .page-8k8-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: #c0c0c0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Register/Login Floating Buttons */
    .page-8k8-ph__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-8k8-ph__floating-button {
      background-color: #e94560;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      text-decoration: none; /* Ensure no underline */
    }

    .page-8k8-ph__floating-button:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }
    
    .page-8k8-ph__external-link {
        color: #e94560;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .page-8k8-ph__external-link:hover {
        color: #ff6a80;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-ph__hero-title {
        font-size: 3em;
      }
      .page-8k8-ph__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-ph__heading {
        font-size: 2em;
      }
      .page-8k8-ph__subheading {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-ph__hero-section {
        min-height: 50vh;
        padding: 40px 15px;
      }
      .page-8k8-ph__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-ph__hero-description {
        font-size: 1em;
      }
      .page-8k8-ph__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-ph__container {
        padding: 15px;
      }
      .page-8k8-ph__section {
        padding: 30px 0;
      }
      .page-8k8-ph__heading {
        font-size: 1.8em;
      }
      .page-8k8-ph__subheading {
        font-size: 1.3em;
      }
      .page-8k8-ph__text {
        font-size: 1em;
      }

      /* Responsive list items for features, providers, payments */
      .page-8k8-ph__features-grid,
      .page-8k8-ph__providers-grid,
      .page-8k8-ph__payment-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-ph__feature-item,
      .page-8k8-ph__provider-card,
      .page-8k8-ph__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-ph__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-ph__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-ph__faq-item.active .page-8k8-ph__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-ph__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-8k8-ph__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-ph__hero-title {
        font-size: 2em;
      }
      .page-8k8-ph__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-ph__heading {
        font-size: 1.5em;
      }
      .page-8k8-ph__subheading {
        font-size: 1.2em;
      }
      .page-8k8-ph__promo-title {
        font-size: 1.5em;
      }
      .page-8k8-ph__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: space-around;
        bottom: 10px;
        left: 15px;
        right: 15px;
      }
      .page-8k8-ph__floating-button {
        flex-grow: 1;
        margin: 0 5px;
      }
    }
  