
    /* Page-specific CSS for 8k8 com ph */
    :root {
      --page-8k8-com-ph-primary-color: #FFD700; /* Gold */
      --page-8k8-com-ph-secondary-color: #000000; /* Black */
      --page-8k8-com-ph-accent-color: #FF4500; /* OrangeRed */
      --page-8k8-com-ph-text-color: #FFFFFF; /* White */
      --page-8k8-com-ph-dark-text-color: #333333; /* Dark Grey */
      --page-8k8-com-ph-background-dark: #1a1a1a;
      --page-8k8-com-ph-background-light: #f5f5f5;
      --page-8k8-com-ph-border-radius: 8px;
    }

    .page-8k8-com-ph {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-com-ph-text-color);
      background-color: var(--page-8k8-com-ph-background-dark);
      line-height: 1.6;
    }

    .page-8k8-com-ph__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

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

    .page-8k8-com-ph__hero-section {
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:casino,neon,betting,8k8_com_ph]') no-repeat center center / cover;
      color: var(--page-8k8-com-ph-text-color);
      text-align: center;
      padding-bottom: 60px;
    }

    .page-8k8-com-ph__hero-content {
      max-width: 900px;
      margin: 80px auto 40px auto;
      padding: 0 20px;
    }

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

    .page-8k8-com-ph__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #E0E0E0;
    }

    .page-8k8-com-ph__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-com-ph-accent-color);
      color: var(--page-8k8-com-ph-text-color);
      padding: 15px 30px;
      border-radius: var(--page-8k8-com-ph-border-radius);
      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-com-ph__cta-button:hover {
      background-color: #CC3700;
      transform: translateY(-3px);
    }

    .page-8k8-com-ph__heading {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-ph-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-ph__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-com-ph-accent-color);
      border-radius: 2px;
    }

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

    .page-8k8-com-ph__text-content--dark {
      color: var(--page-8k8-com-ph-dark-text-color);
    }

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

    .page-8k8-com-ph__feature-card {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: var(--page-8k8-com-ph-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #3a3a3a;
    }

    .page-8k8-com-ph__feature-card--light {
      background-color: #ffffff;
      color: var(--page-8k8-com-ph-dark-text-color);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid #e0e0e0;
    }

    .page-8k8-com-ph__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-ph__feature-icon {
      width: 250px; /* Minimum 200px */
      height: 250px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-com-ph__feature-text {
      font-size: 1em;
      color: #CCCCCC;
    }

    .page-8k8-com-ph__feature-text--dark {
      color: var(--page-8k8-com-ph-dark-text-color);
    }

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

    .page-8k8-com-ph__provider-logo {
      width: 200px; /* Enforcing minimum width for all images */
      height: 100px; /* Fixed height for consistency */
      max-width: 100%;
      object-fit: contain;
      padding: 10px;
      background-color: #333333;
      border-radius: var(--page-8k8-com-ph-border-radius);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-com-ph__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted to 200px for image size */
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-ph__payment-card {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: var(--page-8k8-com-ph-border-radius);
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid #3a3a3a;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__payment-logo {
      width: 200px; /* Enforcing minimum width for all images */
      height: 120px; /* Fixed height for consistency */
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__payment-name {
      font-size: 1.1em;
      color: var(--page-8k8-com-ph-primary-color);
    }

    .page-8k8-com-ph__promo-banner {
      background: linear-gradient(90deg, #FF4500, #FFD700);
      padding: 50px 20px;
      border-radius: var(--page-8k8-com-ph-border-radius);
      margin-top: 40px;
      color: var(--page-8k8-com-ph-dark-text-color);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-ph__promo-title {
      font-size: 2.8em;
      color: var(--page-8k8-com-ph-dark-text-color);
      margin-bottom: 15px;
      text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    }

    .page-8k8-com-ph__promo-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-ph-dark-text-color);
    }

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

    .page-8k8-com-ph__faq-item {
      background-color: #2a2a2a;
      border: 1px solid #3a3a3a;
      border-radius: var(--page-8k8-com-ph-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      color: var(--page-8k8-com-ph-primary-color);
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-toggle {
      transform: rotate(45deg); /* Changes + to x, or you can use a - */
    }

    .page-8k8-com-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: #CCCCCC;
      font-size: 1em;
      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 */
      padding: 20px !important; /* Final padding */
      opacity: 1;
    }

    /* Responsive Design */
    @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__heading {
        font-size: 2em;
      }

      .page-8k8-com-ph__section {
        padding: 30px 15px;
      }

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

      .page-8k8-com-ph__feature-card {
        padding: 25px;
        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-com-ph__game-providers {
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column; /* Stack providers vertically */
        align-items: center;
      }
      .page-8k8-com-ph__provider-logo {
        width: 100% !important;
        max-width: 250px !important; /* Keep a reasonable max-width for individual logos */
        height: auto !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-com-ph__payment-methods-grid {
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        grid-template-columns: 1fr; /* Stack payment methods vertically */
      }
      .page-8k8-com-ph__payment-card {
        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-com-ph__payment-logo {
        width: 100% !important;
        max-width: 200px !important; /* Keep a reasonable max-width for payment logos */
        height: auto !important;
        box-sizing: border-box !important;
      }

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

      .page-8k8-com-ph__promo-text {
        font-size: 1.1em;
      }

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

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

      .page-8k8-com-ph__faq-answer {
        padding: 0 15px; /* Initial padding */
      }

      .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-answer {
        padding: 15px !important; /* Final padding */
      }
      
      /* Ensure all images are responsive on mobile */
      .page-8k8-com-ph img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-ph__feature-icon {
        width: 100% !important;
        max-width: 250px !important; /* Maintain a reasonable max-width for icons */
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  