
    /* Base styles for the page */
    :root {
      --primary-color: #e44d26; /* A vibrant red-orange, common in gaming */
      --secondary-color: #f7931e; /* A complementary orange */
      --text-color: #333;
      --light-text-color: #f0f0f0;
      --background-color: #f8f8f8;
      --dark-background-color: #2c3e50; /* Dark blue-grey */
      --accent-color: #4CAF50; /* Green for success/CTA */
      --border-radius: 8px;
      --spacing-unit: 16px;
    }

    .page-8k8-com-ph-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 10px; /* Minimal top padding, assuming body padding-top is handled by shared CSS */
    }

    .page-8k8-com-ph-2__section {
      width: 100%;
      max-width: 1200px;
      margin: var(--spacing-unit) auto;
      padding: var(--spacing-unit) 20px;
      box-sizing: border-box;
    }

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

    .page-8k8-com-ph-2__heading {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: calc(var(--spacing-unit) * 1.5);
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-com-ph-2__heading--light {
      color: var(--secondary-color);
    }

    .page-8k8-com-ph-2__subheading {
      text-align: center;
      color: var(--text-color);
      margin-bottom: var(--spacing-unit);
      font-size: 1.8em;
    }

    .page-8k8-com-ph-2__paragraph {
      margin-bottom: var(--spacing-unit);
      text-align: justify;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-ph-2__button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--light-text-color);
      padding: 12px 25px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-com-ph-2__button:hover {
      background-color: #388E3C; /* Darker green */
    }

    /* Hero Section */
    .page-8k8-com-ph-2__hero-section {
      background-color: #1a1a1a; /* Dark background for hero */
      color: var(--light-text-color);
      text-align: center;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-ph-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4; /* Slightly transparent to let text stand out */
      z-index: 0;
    }

    .page-8k8-com-ph-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-8k8-com-ph-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 10px;
      color: var(--secondary-color);
      line-height: 1.2;
    }

    .page-8k8-com-ph-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--light-text-color);
    }

    .page-8k8-com-ph-2__hero-cta-group {
      display: flex;
      justify-content: center;
      gap: var(--spacing-unit);
      flex-wrap: wrap;
    }

    /* Features/Highlights Section */
    .page-8k8-com-ph-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--spacing-unit);
      margin-top: calc(var(--spacing-unit) * 2);
    }

    .page-8k8-com-ph-2__feature-card {
      background-color: #fff;
      padding: var(--spacing-unit);
      border-radius: var(--border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-8k8-com-ph-2__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-ph-2__feature-icon {
      width: 200px; /* Min size for image placeholders */
      height: 200px;
      object-fit: contain;
      margin: 0 auto var(--spacing-unit);
    }

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

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

    /* Game Providers Section */
    .page-8k8-com-ph-2__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: var(--spacing-unit);
      margin-top: calc(var(--spacing-unit) * 2);
    }

    .page-8k8-com-ph-2__provider-item {
      background-color: #fff;
      padding: var(--spacing-unit);
      border-radius: var(--border-radius);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
    }

    .page-8k8-com-ph-2__provider-logo {
      max-width: 150px;
      min-width: 200px; /* Enforce minimum image size */
      min-height: 200px;
      height: auto;
      margin-bottom: 10px;
      max-height: 80px;
      object-fit: contain;
    }

    .page-8k8-com-ph-2__provider-name {
      font-weight: bold;
      color: var(--text-color);
    }

    /* Payment Methods Section */
    .page-8k8-com-ph-2__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: var(--spacing-unit);
      margin-top: calc(var(--spacing-unit) * 2);
    }

    .page-8k8-com-ph-2__payment-item {
      background-color: #fff;
      padding: 10px;
      border-radius: var(--border-radius);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100px;
    }

    .page-8k8-com-ph-2__payment-logo {
      max-width: 100px;
      min-width: 200px; /* Enforce minimum image size */
      min-height: 200px;
      height: auto;
      max-height: 60px;
      object-fit: contain;
    }

    /* Promotions Section */
    .page-8k8-com-ph-2__promo-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--spacing-unit);
      margin-top: calc(var(--spacing-unit) * 2);
    }

    .page-8k8-com-ph-2__promo-card {
      background-color: #fff;
      border-radius: var(--border-radius);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-com-ph-2__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-8k8-com-ph-2__promo-content {
      padding: var(--spacing-unit);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-com-ph-2__promo-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-com-ph-2__promo-description {
      font-size: 0.95em;
      color: var(--text-color);
      margin-bottom: var(--spacing-unit);
    }

    /* FAQ Section */
    .page-8k8-com-ph-2__faq-section {
      background-color: #fff;
      border-radius: var(--border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      padding: var(--spacing-unit);
      margin-top: calc(var(--spacing-unit) * 2);
    }

    .page-8k8-com-ph-2__faq-item {
      border-bottom: 1px solid #eee;
      padding: 10px 0;
    }

    .page-8k8-com-ph-2__faq-item:last-child {
      border-bottom: none;
    }

    .page-8k8-com-ph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 15px;
      background-color: #f9f9f9;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-ph-2__faq-question:hover {
      background-color: #f0f0f0;
    }

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

    .page-8k8-com-ph-2__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-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-com-ph-2__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;
      background-color: #fff;
      color: #555;
      font-size: 0.95em;
    }

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* General Lists */
    .page-8k8-com-ph-2__list {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: var(--spacing-unit);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-ph-2__list-item {
      margin-bottom: 8px;
      color: var(--text-color);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-ph-2__section {
        padding: var(--spacing-unit) 15px;
      }

      .page-8k8-com-ph-2__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-ph-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com-ph-2__heading {
        font-size: 2em;
      }

      .page-8k8-com-ph-2__subheading {
        font-size: 1.5em;
      }

      .page-8k8-com-ph-2__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-8k8-com-ph-2__hero-cta-group {
        flex-direction: column;
        gap: 10px;
      }

      /* Image responsiveness */
      .page-8k8-com-ph-2__hero-background,
      .page-8k8-com-ph-2__feature-icon,
      .page-8k8-com-ph-2__provider-logo,
      .page-8k8-com-ph-2__payment-logo,
      .page-8k8-com-ph-2__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      /* List item responsiveness */
      .page-8k8-com-ph-2__list,
      .page-8k8-com-ph-2__features-grid,
      .page-8k8-com-ph-2__providers-grid,
      .page-8k8-com-ph-2__payment-grid,
      .page-8k8-com-ph-2__promo-card-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-ph-2__list-item,
      .page-8k8-com-ph-2__feature-card,
      .page-8k8-com-ph-2__provider-item,
      .page-8k8-com-ph-2__payment-item,
      .page-8k8-com-ph-2__promo-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;
        word-break: break-word !important;
      }

      .page-8k8-com-ph-2__faq-question h3 {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-ph-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-ph-2__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-ph-2__heading {
        font-size: 1.8em;
      }
      .page-8k8-com-ph-2__subheading {
        font-size: 1.3em;
      }
    }
  