
    :root {
      --page-8k8-com-ph-2-primary-color: #e44d26; /* A vibrant color for highlights */
      --page-8k8-com-ph-2-secondary-color: #333;
      --page-8k8-com-ph-2-accent-color: #f7b731; /* Gold/yellow for promotions */
      --page-8k8-com-ph-2-background-light: #f9f9f9;
      --page-8k8-com-ph-2-background-dark: #222;
      --page-8k8-com-ph-2-text-color: #333;
      --page-8k8-com-ph-2-text-light: #fff;
      --page-8k8-com-ph-2-border-color: #ddd;
    }

    .page-8k8-com-ph-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-ph-2-text-color);
      background-color: var(--page-8k8-com-ph-2-background-light);
      padding-bottom: 20px; /* Ensure space before footer */
    }

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

    .page-8k8-com-ph-2__section {
      padding: 40px 0;
      text-align: center;
    }

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

    .page-8k8-com-ph-2__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-ph-2-primary-color);
      font-weight: bold;
    }

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

    /* Hero Section */
    .page-8k8-com-ph-2__hero-section {
      position: relative;
      padding: 10px 0 80px 0; /* 10px top for aesthetic, relying on body for header offset */
      background-size: cover;
      background-position: center;
      color: var(--page-8k8-com-ph-2-text-light);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-8k8-com-ph-2__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: -1;
    }

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

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

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

    .page-8k8-com-ph-2__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-com-ph-2__button {
      background-color: var(--page-8k8-com-ph-2-primary-color);
      color: var(--page-8k8-com-ph-2-text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-8k8-com-ph-2__button--secondary {
      background-color: var(--page-8k8-com-ph-2-accent-color);
      color: var(--page-8k8-com-ph-2-secondary-color);
    }

    .page-8k8-com-ph-2__button--secondary:hover {
      background-color: #e6a200;
    }

    /* About Section */
    .page-8k8-com-ph-2__about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
      margin-top: 20px;
    }

    .page-8k8-com-ph-2__about-text {
      font-size: 1.1em;
      color: var(--page-8k8-com-ph-2-secondary-color);
    }

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

    .page-8k8-com-ph-2__feature-card {
      background-color: var(--page-8k8-com-ph-2-text-light);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

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

    .page-8k8-com-ph-2__feature-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

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

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

    /* Promotions Section */
    .page-8k8-com-ph-2__promo-card {
      background-color: var(--page-8k8-com-ph-2-background-light);
      border-radius: 8px;
      padding: 25px;
      text-align: left;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--page-8k8-com-ph-2-border-color);
      box-sizing: border-box;
    }

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

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

    .page-8k8-com-ph-2__promo-link {
      color: var(--page-8k8-com-ph-2-primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8k8-com-ph-2__promo-link:hover {
      color: #c0392b;
    }

    /* Payment Methods */
    .page-8k8-com-ph-2__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-ph-2__payment-item {
      background-color: var(--page-8k8-com-ph-2-text-light);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: var(--page-8k8-com-ph-2-secondary-color);
      box-sizing: border-box;
    }

    /* Why Choose Us */
    .page-8k8-com-ph-2__benefits-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-8k8-com-ph-2__benefit-item {
      background-color: var(--page-8k8-com-ph-2-text-light);
      border-left: 5px solid var(--page-8k8-com-ph-2-primary-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      font-size: 1.1em;
      color: var(--page-8k8-com-ph-2-secondary-color);
      box-sizing: border-box;
    }

    /* Call to Action Section */
    .page-8k8-com-ph-2__cta-section {
      background-color: var(--page-8k8-com-ph-2-primary-color);
      color: var(--page-8k8-com-ph-2-text-light);
      padding: 50px 0;
      text-align: center;
    }

    .page-8k8-com-ph-2__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-ph-2-text-light);
    }

    .page-8k8-com-ph-2__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-8k8-com-ph-2__faq-section {
      text-align: left;
      margin-top: 30px;
    }

    .page-8k8-com-ph-2__faq-item {
      background-color: var(--page-8k8-com-ph-2-text-light);
      border: 1px solid var(--page-8k8-com-ph-2-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

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

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

    .page-8k8-com-ph-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: var(--page-8k8-com-ph-2-primary-color);
    }

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

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-com-ph-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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(--page-8k8-com-ph-2-secondary-color);
      box-sizing: border-box;
    }

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

    /* Social Media */
    .page-8k8-com-ph-2__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-8k8-com-ph-2__social-link {
      background-color: var(--page-8k8-com-ph-2-background-dark);
      color: var(--page-8k8-com-ph-2-text-light);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__social-link:hover {
      background-color: var(--page-8k8-com-ph-2-primary-color);
    }

    /* Responsive adjustments */
    @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__button {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 10px auto !important;
        box-sizing: border-box !important;
      }

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

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

      .page-8k8-com-ph-2__features-grid,
      .page-8k8-com-ph-2__payment-methods-grid,
      .page-8k8-com-ph-2__benefits-list {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-ph-2__feature-card,
      .page-8k8-com-ph-2__promo-card,
      .page-8k8-com-ph-2__payment-item,
      .page-8k8-com-ph-2__benefit-item,
      .page-8k8-com-ph-2__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-2__faq-answer,
      .page-8k8-com-ph-2__faq-question {
        padding: 15px !important;
      }

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

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

      .page-8k8-com-ph-2__cta-text {
        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__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-ph-2__faq-question h3 {
        font-size: 1em;
      }
    }
  