
    /* Page-specific CSS for 8k8.ph */
    .page-8k8-ph {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
    }

    .page-8k8-ph__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-ph__section--dark {
      background-color: #2a0a5e;
      color: #fff;
    }

    .page-8k8-ph__section--dark h2,
    .page-8k8-ph__section--dark h3 {
      color: #ffe01a;
    }

    .page-8k8-ph__section--dark .page-8k8-ph__text-highlight {
      color: #ffe01a;
    }

    .page-8k8-ph__section-title {
      text-align: center;
      color: #2a0a5e;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-ph__section--dark .page-8k8-ph__section-title {
      color: #ffe01a;
    }

    .page-8k8-ph__hero-section {
      position: relative;
      background-color: #2a0a5e;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-ph__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-8k8-ph__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #ffe01a;
      line-height: 1.2;
    }

    .page-8k8-ph__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 25px;
      color: #e0e0e0;
    }

    .page-8k8-ph__cta-button {
      background-color: #ffe01a;
      color: #2a0a5e;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      margin: 10px;
      text-decoration: none;
    }

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

    .page-8k8-ph__text-highlight {
      color: #2a0a5e;
      font-weight: bold;
    }

    .page-8k8-ph__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-ph__floating-button {
      background-color: #ffe01a;
      color: #2a0a5e;
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      flex: 1;
      margin: 0 5px;
      max-width: 180px;
      text-align: center;
    }

    .page-8k8-ph__floating-button--register {
      background-color: #00b894;
      color: #fff;
    }

    .page-8k8-ph__floating-button--register:hover {
      background-color: #00a080;
    }

    .page-8k8-ph__floating-button--login {
      background-color: #0984e3;
      color: #fff;
    }

    .page-8k8-ph__floating-button--login:hover {
      background-color: #076bbd;
    }

    .page-8k8-ph__floating-button:hover {
      transform: translateY(-2px);
    }

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

    .page-8k8-ph__grid-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-ph__grid-item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-ph__grid-item-title {
      font-size: 1.3em;
      color: #2a0a5e;
      margin-bottom: 10px;
    }

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

    .page-8k8-ph__provider-logo {
      width: 150px;
      height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-ph__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

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

    .page-8k8-ph__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      filter: brightness(0.8);
      transition: filter 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-ph__payment-logo:hover {
      filter: brightness(1);
    }

    .page-8k8-ph__faq-section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-ph__faq-title {
      text-align: center;
      color: #2a0a5e;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-ph__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-8k8-ph__faq-item:last-child {
      border-bottom: none;
    }

    .page-8k8-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      background-color: #f5f5f5;
      border-radius: 5px;
      margin-bottom: 5px;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-ph__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2a0a5e;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-ph__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #2a0a5e;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle 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 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

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

    .page-8k8-ph__promo-link {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      background-color: #ff4757;
      color: #fff;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-8k8-ph__promo-link:hover {
      background-color: #e03747;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-ph__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-8k8-ph__hero-section {
        padding: 40px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

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

      .page-8k8-ph__hero-subtitle {
        font-size: 1.1em;
      }

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

      .page-8k8-ph__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
      }

      .page-8k8-ph__floating-buttons {
        padding: 8px 0;
      }

      .page-8k8-ph__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        margin: 0 3px;
        max-width: 150px;
      }

      .page-8k8-ph__grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-ph__grid-item-image {
        height: 180px;
      }

      .page-8k8-ph__game-providers-list,
      .page-8k8-ph__payment-methods-list {
        gap: 15px;
      }

      .page-8k8-ph__provider-logo,
      .page-8k8-ph__payment-logo {
        width: 100px;
        height: 50px;
      }

      .page-8k8-ph__faq-title {
        font-size: 2em;
      }

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

      .page-8k8-ph__faq-answer {
        font-size: 0.95em;
      }

      /* List item responsive requirements */
      .page-8k8-ph__grid-item,
      .page-8k8-ph__game-providers-list > *,
      .page-8k8-ph__payment-methods-list > * {
        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;
      }

      .page-8k8-ph__grid-container,
      .page-8k8-ph__game-providers-list,
      .page-8k8-ph__payment-methods-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important; /* Adjust padding to match section */
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

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

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

      .page-8k8-ph__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
      }
    }
  