
    :root {
      --primary-color: #e0b000; /* Golden yellow, typical for gaming/casino */
      --secondary-color: #333;
      --accent-color: #007bff;
      --background-dark: #1a1a1a;
      --background-light: #f4f4f4;
      --text-light: #fefefe;
      --text-dark: #333;
      --border-color: #444;
      --card-background: #282828;
    }

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

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

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

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

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

    .page-8k8-ph__title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-ph__subtitle {
      font-size: 1.8em;
      color: var(--text-light);
      margin-bottom: 15px;
    }

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

    /* Hero Section */
    .page-8k8-ph__hero-section {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:online_casino,gaming_platform,philippines,8k8.ph_hero]') no-repeat center center/cover;
      padding: 100px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 70vh;
      color: var(--text-light);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

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

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

    .page-8k8-ph__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-8k8-ph__promo-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 15px 35px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Floating Buttons */
    .page-8k8-ph__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-8k8-ph__floating-btn {
      background-color: var(--primary-color);
      color: var(--background-dark);
      border: none;
      border-radius: 50px;
      padding: 10px 20px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 100px;
      text-align: center;
    }

    .page-8k8-ph__floating-btn:hover {
      background-color: #ffcc00;
      transform: scale(1.05);
    }

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

    .page-8k8-ph__product-card {
      background-color: var(--card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid var(--border-color);
    }

    .page-8k8-ph__product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    }

    .page-8k8-ph__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--border-color);
    }

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

    .page-8k8-ph__product-description {
      font-size: 1em;
      color: #bbb;
      padding: 0 15px;
    }

    /* Payment Methods */
    .page-8k8-ph__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-ph__payment-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 240px; /* Accommodate 200px logo + padding */
      box-sizing: border-box;
    }

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

    .page-8k8-ph__payment-logo {
      width: 200px; /* Minimum 200px */
      height: 200px; /* Minimum 200px */
      object-fit: contain; /* To ensure logos are not stretched */
      display: block; /* Ensure it takes its own space */
      margin: 0 auto; /* Center it if it's the only content */
    }
    .page-8k8-ph__payment-name {
      color: var(--text-light);
      font-weight: bold;
      margin-top: 10px;
    }

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

    .page-8k8-ph__provider-logo {
      width: 200px; /* Minimum 200px */
      height: 200px; /* Minimum 200px */
      object-fit: contain;
      background-color: var(--card-background);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-8k8-ph__provider-logo:hover {
      transform: scale(1.05);
    }

    /* Why Choose Us */
    .page-8k8-ph__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-ph__feature-item {
      background-color: var(--card-background);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-8k8-ph__feature-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

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

    /* FAQ Section */
    .page-8k8-ph__faq-section {
      background-color: var(--background-dark);
      padding: 60px 0;
      color: var(--text-light);
    }

    .page-8k8-ph__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      list-style: none;
      padding: 0;
      box-sizing: border-box;
    }

    .page-8k8-ph__faq-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      box-sizing: border-box;
    }

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

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

    .page-8k8-ph__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Ensure h3 matches parent font size */
      color: var(--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(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      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;
      text-align: left;
    }

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

    /* General Image Styling */
    .page-8k8-ph img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-ph__title {
        font-size: 2em;
      }

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

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

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

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

      .page-8k8-ph__floating-buttons {
        right: 10px;
        gap: 10px;
      }

      .page-8k8-ph__floating-btn {
        padding: 8px 15px;
        font-size: 0.9em;
        min-width: 80px;
      }

      .page-8k8-ph__product-grid,
      .page-8k8-ph__features-grid {
        grid-template-columns: 1fr;
      }

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

      .page-8k8-ph__payment-grid,
      .page-8k8-ph__providers-grid {
        gap: 15px;
      }

      .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: 15px !important;
      }
      .page-8k8-ph__payment-logo {
        width: 150px !important; /* Adjust for smaller screens */
        height: 150px !important;
      }
      .page-8k8-ph__provider-logo {
        width: 150px !important;
        height: 150px !important;
      }

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

      .page-8k8-ph__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-ph__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

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

      .page-8k8-ph__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-ph__faq-item.active .page-8k8-ph__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-ph__section {
        padding: 40px 0;
      }
      .page-8k8-ph__container {
        padding: 0 10px;
      }
      .page-8k8-ph img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  