
    /* Page specific CSS */
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #000000; /* Black */
      --accent-color: #FF4500; /* OrangeRed */
      --text-light: #FFFFFF;
      --text-dark: #333333;
      --bg-dark: #1a1a1a;
      --bg-light: #2c2c2c;
      --border-color: #444444;
      --button-hover-bg: #E0B800;
    }

    .page-8k8-com-ph-2 {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--bg-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body has header offset */
    }

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

    .page-8k8-com-ph-2__hero-section {
      background: linear-gradient(135deg, var(--bg-dark) 0%, #333333 100%);
      padding: 60px 20px 80px;
      position: relative;
      overflow: hidden;
      color: var(--text-light);
    }

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

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

    .page-8k8-com-ph-2__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-light);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-ph-2__promo-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-ph-2__promo-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
    }

    .page-8k8-com-ph-2__hero-image {
      margin-top: 40px;
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      display: block; /* Ensures it's centered with margin: auto */
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-ph-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-com-ph-2__floating-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px;
      border: none;
    }

    .page-8k8-com-ph-2__floating-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-3px);
    }

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

    .page-8k8-com-ph-2__card {
      background-color: var(--bg-light);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-com-ph-2__card-image {
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-com-ph-2__card-description {
      font-size: 0.95em;
      color: var(--text-light);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8k8-com-ph-2__card-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Pushes button to the bottom */
    }

    .page-8k8-com-ph-2__card-button:hover {
      background-color: var(--button-hover-bg);
    }

    .page-8k8-com-ph-2__section-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

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

    .page-8k8-com-ph-2__text-content {
      max-width: 800px;
      margin: 20px auto 40px;
      font-size: 1.1em;
      color: var(--text-light);
    }

    .page-8k8-com-ph-2__provider-logo {
      max-width: 150px;
      height: auto;
      margin: 10px;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      border-radius: 5px;
    }

    .page-8k8-com-ph-2__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .page-8k8-com-ph-2__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-ph-2__payment-method-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: var(--bg-light);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      border: 1px solid var(--border-color);
    }

    .page-8k8-com-ph-2__payment-method-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-com-ph-2__payment-icon {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      filter: brightness(0.8);
    }

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

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

    .page-8k8-com-ph-2__faq-list {
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-com-ph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
      color: var(--primary-color);
      font-weight: bold;
    }

    .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;
      pointer-events: none; /* Crucial for click event on parent */
      color: var(--primary-color);
    }

    .page-8k8-com-ph-2__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
      color: var(--accent-color);
    }

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or - */
    }

    .page-8k8-com-ph-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding for collapsed state */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--text-light);
    }

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

    .page-8k8-com-ph-2__cta-section {
      background-color: var(--accent-color);
      padding: 60px 20px;
      color: var(--text-light);
      border-radius: 10px;
      margin: 40px auto;
      max-width: 1000px;
    }

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

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

    .page-8k8-com-ph-2__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-ph-2__cta-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-ph-2__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-ph-2__section-title {
        font-size: 2em;
      }
      .page-8k8-com-ph-2__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-ph-2__hero-section {
        padding: 40px 15px 60px;
      }
      .page-8k8-com-ph-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-ph-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-ph-2__section {
        padding: 30px 15px;
      }
      .page-8k8-com-ph-2__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-8k8-com-ph-2__promotions-grid,
      .page-8k8-com-ph-2__games-grid,
      .page-8k8-com-ph-2__payment-methods-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }
      .page-8k8-com-ph-2__floating-buttons {
        bottom: 15px;
        right: 15px;
      }
      .page-8k8-com-ph-2__floating-button {
        padding: 10px 20px;
        min-width: 100px;
      }
      .page-8k8-com-ph-2__card-image {
        height: 180px;
      }
      .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: 0 20px;
        word-wrap: break-word !important; /* Ensure content wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-com-ph-2__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-ph-2__cta-description {
        font-size: 1em;
      }
      .page-8k8-com-ph-2__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* List item specific responsive styles */
      .page-8k8-com-ph-2__promotions-grid .page-8k8-com-ph-2__card,
      .page-8k8-com-ph-2__games-grid .page-8k8-com-ph-2__card,
      .page-8k8-com-ph-2__payment-methods-grid .page-8k8-com-ph-2__payment-method-item,
      .page-8k8-com-ph-2__faq-list .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;
        padding-left: 15px !important; /* Adjust padding to avoid excessive inner padding */
        padding-right: 15px !important; /* Adjust padding to avoid excessive inner padding */
      }
      .page-8k8-com-ph-2__promotions-grid,
      .page-8k8-com-ph-2__games-grid,
      .page-8k8-com-ph-2__payment-methods-grid,
      .page-8k8-com-ph-2__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-ph-2__card {
        padding: 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-ph-2__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-ph-2__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-ph-2__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-ph-2__floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
      }
      .page-8k8-com-ph-2__floating-button {
        padding: 8px 18px;
        font-size: 0.9em;
        min-width: 90px;
      }
      .page-8k8-com-ph-2__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-ph-2__card-title {
        font-size: 1.3em;
      }
      .page-8k8-com-ph-2__card-description {
        font-size: 0.9em;
      }
      .page-8k8-com-ph-2__card-button {
        padding: 8px 15px;
        font-size: 0.8em;
      }
      .page-8k8-com-ph-2__faq-question {
        padding: 12px 15px;
      }
      .page-8k8-com-ph-2__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-com-ph-2__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-com-ph-2__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-answer {
        padding: 10px 15px !important;
      }
      .page-8k8-com-ph-2__cta-title {
        font-size: 1.6em;
      }
      .page-8k8-com-ph-2__cta-description {
        font-size: 0.9em;
      }
      .page-8k8-com-ph-2__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  