
    /* Base styles for the page */
    .page-8k8-com-ph {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

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

    /* Hero Section */
    .page-8k8-com-ph__hero-section {
      position: relative;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); /* Dark gradient for casino feel */
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      padding-top: calc(10px + var(--header-offset, 122px)); /* Small top padding + header offset fallback */
      overflow: hidden;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__hero-section {
        padding: 80px 15px;
        padding-top: calc(10px + var(--header-offset, 122px));
      }
    }

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

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

    .page-8k8-com-ph__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #FFD700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__hero-title {
        font-size: 2.2em;
      }
    }

    .page-8k8-com-ph__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__hero-subtitle {
        font-size: 1.1em;
      }
    }

    .page-8k8-com-ph__promo-link {
      display: inline-block;
      background-color: #28a745; /* Green for call to action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .page-8k8-com-ph__promo-link:hover {
      background-color: #218838;
    }

    /* Section Styling */
    .page-8k8-com-ph__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border-radius: 8px;
    }
    .page-8k8-com-ph__section--dark {
      background-color: #2c3e50; /* Darker background for contrast */
      color: #ecf0f1;
    }

    .page-8k8-com-ph__section-title {
      font-size: 2.5em;
      color: #0f0c29;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }
    .page-8k8-com-ph__section-title--light {
      color: #FFD700; /* Gold on dark background */
    }

    .page-8k8-com-ph__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
    }

    /* About Section */
    .page-8k8-com-ph__about-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__about-content {
        flex-direction: column;
        text-align: center;
      }
    }

    .page-8k8-com-ph__about-text {
      flex: 1;
    }

    .page-8k8-com-ph__about-image {
      flex: 1;
      max-width: 500px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__about-image {
        margin-top: 30px;
      }
    }

    /* Game Showcase */
    .page-8k8-com-ph__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__game-grid {
        grid-template-columns: 1fr;
      }
    }

    .page-8k8-com-ph__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

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

    .page-8k8-com-ph__game-image {
      width: 100%;
      height: 200px; /* Minimum height for content images */
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__game-image {
        height: 180px;
      }
    }

    .page-8k8-com-ph__game-title {
      font-size: 1.5em;
      margin: 15px 0 10px;
      color: #0f0c29;
      padding: 0 15px;
    }

    .page-8k8-com-ph__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* Features Section */
    .page-8k8-com-ph__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__features-grid {
        grid-template-columns: 1fr;
      }
    }

    .page-8k8-com-ph__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__feature-icon {
      width: 200px; /* Min size 200x200px */
      height: 200px; /* Min size 200x200px */
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain; /* Ensure image fits without cropping */
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__feature-title {
      font-size: 1.8em;
      color: #0f0c29;
      margin-bottom: 15px;
    }

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

    /* Payment Providers */
    .page-8k8-com-ph__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-com-ph__payment-logo {
      width: 250px; /* Example width, > 200px */
      height: 120px; /* Example height, one dimension must be >= 200px */
      object-fit: contain;
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__payment-logo {
        width: 100%; /* Make it full width on mobile */
        max-width: 250px; /* But keep max width */
        height: auto; /* Let height adjust */
        min-height: 100px; /* Ensure a minimum height visually */
      }
    }

    .page-8k8-com-ph__payment-logo:hover {
      transform: translateY(-3px);
    }

    /* Game Providers */
    .page-8k8-com-ph__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-com-ph__provider-logo {
      width: 250px; /* Example width, > 200px */
      height: 120px; /* Example height, one dimension must be >= 200px */
      object-fit: contain;
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__provider-logo {
        width: 100%;
        max-width: 250px;
        height: auto;
        min-height: 100px;
      }
    }

    .page-8k8-com-ph__provider-logo:hover {
      transform: translateY(-3px);
    }

    /* Call to Action */
    .page-8k8-com-ph__cta-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(90deg, #007bff, #0056b3);
      color: #fff;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8-com-ph__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #FFD700;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__cta-title {
        font-size: 2em;
      }
    }

    .page-8k8-com-ph__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__cta-description {
        font-size: 1em;
      }
    }

    .page-8k8-com-ph__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #0f0c29;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0,0,0,0.4);
      border: none; /* Ensure it's a button, not a link visually */
      cursor: pointer;
    }

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

    /* FAQ Section */
    .page-8k8-com-ph__faq-section {
      background-color: #f8f8f8;
      padding: 60px 0;
      margin-bottom: 20px;
    }

    .page-8k8-com-ph__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      overflow: hidden;
      border: 1px solid #eee;
    }

    .page-8k8-com-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: bold;
      color: #0f0c29;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
    }

    .page-8k8-com-ph__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click handling */
      color: #0f0c29; /* Ensure good contrast */
    }

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

    .page-8k8-com-ph__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
      color: #007bff; /* Blue for toggle */
    }

    .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-toggle {
      transform: rotate(45deg); /* Plus to minus visual effect */
    }

    .page-8k8-com-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      font-size: 1em;
      background-color: #fff;
      box-sizing: border-box; /* Ensure padding is included in width calculation */
    }

    .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-answer {
      max-height: 2000px !important; /* Large enough to contain any content */
      padding: 20px 25px !important;
      opacity: 1;
    }
    @media (max-width: 768px) {
      .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-answer {
        padding: 15px 20px !important;
      }
    }

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-ph__container {
        padding: 15px;
      }

      /* List item specific adjustments for mobile */
      .page-8k8-com-ph__game-grid,
      .page-8k8-com-ph__features-grid,
      .page-8k8-com-ph__payment-providers,
      .page-8k8-com-ph__provider-logos {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-ph__game-card,
      .page-8k8-com-ph__feature-item,
      .page-8k8-com-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-com-ph__game-description,
      .page-8k8-com-ph__feature-description,
      .page-8k8-com-ph__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  