
    :root {
      --8k8-primary: #FFD700; /* Gold */
      --8k8-secondary: #000000; /* Black */
      --8k8-accent: #FF4500; /* OrangeRed */
      --8k8-text-light: #F0F0F0;
      --8k8-text-dark: #333333;
      --8k8-background-dark: #1a1a1a;
      --8k8-background-light: #2a2a2a;
    }

    /* Base styles for the page-8k8-com-ph-2 scope */
    .page-8k8-com-ph-2 {
      font-family: 'Arial', sans-serif;
      color: var(--8k8-text-light);
      background-color: var(--8k8-background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-8k8-com-ph-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-8k8-com-ph-2__hero-section {
      position: relative;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:casino,gaming,lounge,8k8]') no-repeat center center/cover;
      color: var(--8k8-text-light);
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      padding-top: 10px; /* Small decorative top padding */
    }

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

    .page-8k8-com-ph-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: #FFF;
    }

    .page-8k8-com-ph-2__cta-button {
      background-color: var(--8k8-accent);
      color: var(--8k8-text-light);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none; /* Ensure no underline for external link */
      display: inline-block;
    }

    .page-8k8-com-ph-2__cta-button:hover {
      background-color: #E63900; /* Darker orange */
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-com-ph-2__section {
      padding: 60px 0;
      background-color: var(--8k8-background-light);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

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

    .page-8k8-com-ph-2__section-title {
      font-size: 2.5em;
      color: var(--8k8-primary);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    .page-8k8-com-ph-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Game Categories / Providers */
    .page-8k8-com-ph-2__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-ph-2__game-card {
      background-color: var(--8k8-background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-8k8-com-ph-2__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    }

    .page-8k8-com-ph-2__game-card-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com-ph-2__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

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

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

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

    .page-8k8-com-ph-2__payment-item {
      background-color: var(--8k8-background-light);
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      text-align: center;
      min-width: 150px;
      flex: 1 1 auto; /* Allow items to grow and shrink */
      max-width: 200px; /* Limit max width for larger screens */
    }

    .page-8k8-com-ph-2__payment-item-text {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--8k8-primary);
    }

    /* Promotions */
    .page-8k8-com-ph-2__promo-card {
      background-color: var(--8k8-background-dark);
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      padding: 30px;
      text-align: center;
      margin-top: 30px;
    }

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

    .page-8k8-com-ph-2__promo-description {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-8k8-com-ph-2__promo-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin: 20px auto;
      border-radius: 8px;
      display: block;
    }

    /* FAQ Section */
    .page-8k8-com-ph-2__faq-section {
      padding: 60px 0;
      background-color: var(--8k8-background-light);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-8k8-com-ph-2__faq-title {
      font-size: 2.5em;
      color: var(--8k8-primary);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

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

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

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

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

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

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or similar */
    }

    .page-8k8-com-ph-2__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: var(--8k8-text-light);
    }

    .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 25px !important;
      opacity: 1;
    }

    /* General text styling */
    .page-8k8-com-ph-2 p {
      margin-bottom: 1em;
    }

    .page-8k8-com-ph-2 ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-ph-2 ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-8k8-com-ph-2 ul li::before {
      content: '•';
      color: var(--8k8-primary);
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .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__section-title,
      .page-8k8-com-ph-2__faq-title {
        font-size: 2em;
      }

      .page-8k8-com-ph-2__game-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-ph-2__payment-grid {
        flex-direction: column;
        align-items: center;
      }

      .page-8k8-com-ph-2__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 20px !important;
      }

      .page-8k8-com-ph-2__faq-question {
        padding: 15px 20px;
      }

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

      .page-8k8-com-ph-2__faq-answer {
        padding: 15px 20px !important;
      }

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

      .page-8k8-com-ph-2__promo-description {
        font-size: 1em;
      }

      .page-8k8-com-ph-2 ul li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 25px !important; /* Maintain bullet point offset */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-ph-2 ul {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsive */
      .page-8k8-com-ph-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-ph-2__game-card-image {
        max-width: 100% !important;
        height: auto !important; /* Adjust height for mobile */
        box-sizing: border-box !important;
      }
      .page-8k8-com-ph-2__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @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__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-ph-2__section-title,
      .page-8k8-com-ph-2__faq-title {
        font-size: 1.8em;
      }

      .page-8k8-com-ph-2__text-content {
        font-size: 1em;
      }

      .page-8k8-com-ph-2__game-card-title {
        font-size: 1.3em;
      }

      .page-8k8-com-ph-2__game-card-description {
        font-size: 0.9em;
      }
    }
  