
    /* CSS for page-8k8-com-ph */
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #1A1A1A; /* Dark Grey */
      --accent-color: #007BFF; /* Blue for buttons/highlights */
      --text-color: #E0E0E0; /* Light Grey for text */
      --background-dark: #0A0A0A;
      --background-light: #1F1F1F;
      --border-color: #333333;
      --button-hover-color: #FFC107;
      --gradient-start: #2a0000; /* Dark Red */
      --gradient-end: #0a0a0a; /* Very Dark */
      --faq-question-bg: #222;
      --faq-answer-bg: #1A1A1A;
    }

    .page-8k8-com-ph {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
      /* Fallback for body padding if shared.css doesn't handle it. */
      /* If body already has padding-top from shared.css, this will be 0. */
      padding-top: var(--header-offset, 0px);
    }

    @media (max-width: 768px) {
      .page-8k8-com-ph {
        padding-top: var(--header-offset, 0px) !important;
      }
    }

    .page-8k8-com-ph__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-8k8-com-ph__section:last-of-type {
      border-bottom: none;
    }

    .page-8k8-com-ph__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-com-ph__section-subtitle {
      font-size: 1.8em;
      color: var(--text-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: normal;
    }

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

    .page-8k8-com-ph__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-8k8-com-ph__hero-section {
      position: relative;
      background-color: var(--background-dark);
      padding: 10px 0 60px 0; /* Minimal top padding, body handles header offset */
      text-align: center;
      overflow: hidden;
    }

    .page-8k8-com-ph__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      opacity: 0.3;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-com-ph__hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      box-sizing: border-box;
    }

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

    .page-8k8-com-ph__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-ph__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-com-ph__button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      white-space: nowrap;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

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

    .page-8k8-com-ph__button--secondary {
      background-color: transparent;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
    }

    .page-8k8-com-ph__button--primary:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-8k8-com-ph__button--secondary:hover {
      background-color: rgba(255, 215, 0, 0.1);
      transform: translateY(-2px);
    }

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

    .page-8k8-com-ph__info-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-ph__info-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-ph__info-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-ph__info-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Games Section */
    .page-8k8-com-ph__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-com-ph__game-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-com-ph__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-ph__game-content {
      padding: 20px;
      text-align: center;
    }

    .page-8k8-com-ph__game-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-ph__game-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

    /* Providers and Payments Section */
    .page-8k8-com-ph__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-8k8-com-ph__logo-item {
      background-color: var(--background-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      width: 100%;
      max-width: 150px;
      height: 80px; /* Fixed height for logos */
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__logo-item:hover {
      transform: scale(1.05);
    }

    .page-8k8-com-ph__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      height: auto; /* Ensure aspect ratio is maintained */
    }

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

    .page-8k8-com-ph__faq-item {
      background-color: var(--faq-question-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

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

    .page-8k8-com-ph__faq-question:hover {
      background-color: var(--secondary-color);
    }

    .page-8k8-com-ph__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-8k8-com-ph__faq-toggle {
      font-size: 1.8em;
      color: var(--primary-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from interfering with click */
      line-height: 1; /* Adjust line height for better alignment */
    }

    .page-8k8-com-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      background-color: var(--faq-answer-bg);
      color: var(--text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-com-ph__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-8k8-com-ph__button {
        width: 100%;
        max-width: 300px;
        font-size: 1em;
      }

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

      .page-8k8-com-ph__section-subtitle {
        font-size: 1.5em;
      }

      .page-8k8-com-ph__info-grid,
      .page-8k8-com-ph__game-categories {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-ph__info-card,
      .page-8k8-com-ph__game-card {
        padding: 20px;
      }

      .page-8k8-com-ph__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-8k8-com-ph__logo-item {
        max-width: 120px;
        height: 70px;
      }

      /* List item mobile responsiveness */
      .page-8k8-com-ph__info-grid > div,
      .page-8k8-com-ph__game-categories > div,
      .page-8k8-com-ph__logo-grid > div,
      .page-8k8-com-ph__faq-list > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important; /* Adjust padding for smaller screens */
        padding-right: 10px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-ph__info-grid,
      .page-8k8-com-ph__game-categories,
      .page-8k8-com-ph__logo-grid,
      .page-8k8-com-ph__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

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

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

      .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-answer {
        padding: 15px 20px !important;
      }
    }
    @media (max-width: 480px) {
      .page-8k8-com-ph__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-ph__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-ph__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-ph__section-subtitle {
        font-size: 1.3em;
      }
    }
  