
    :root {
      --page-8k8-primary-color: #e60000; /* Red for action */
      --page-8k8-secondary-color: #ffcc00; /* Gold/Yellow for highlights */
      --page-8k8-dark-background: #1a1a1a;
      --page-8k8-light-background: #f0f0f0;
      --page-8k8-text-color: #ffffff;
      --page-8k8-dark-text-color: #333333;
      --page-8k8-border-radius: 8px;
      --page-8k8-spacing-unit: 16px;
    }

    .page-8k8 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-text-color);
      background-color: var(--page-8k8-dark-background);
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header offset if not handled by body in shared.css */
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow-x: hidden;
    }

    .page-8k8__section {
      width: 100%;
      max-width: 1200px;
      padding: calc(2 * var(--page-8k8-spacing-unit)) var(--page-8k8-spacing-unit);
      box-sizing: border-box;
      text-align: center;
    }

    .page-8k8__section--light {
      background-color: var(--page-8k8-light-background);
      color: var(--page-8k8-dark-text-color);
    }

    .page-8k8__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,gaming,8k8,philippines]') center center / cover no-repeat;
      color: var(--page-8k8-text-color);
      padding: calc(4 * var(--page-8k8-spacing-unit)) var(--page-8k8-spacing-unit);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      padding-top: calc(var(--page-8k8-spacing-unit) + 10px); /* Small decorative top padding */
    }

    .page-8k8__hero-title {
      font-size: 2.8em;
      margin-bottom: var(--page-8k8-spacing-unit);
      color: var(--page-8k8-secondary-color);
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-8k8__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: calc(2 * var(--page-8k8-spacing-unit));
      max-width: 800px;
    }

    .page-8k8__button {
      background-color: var(--page-8k8-primary-color);
      color: var(--page-8k8-text-color);
      padding: var(--page-8k8-spacing-unit) calc(2 * var(--page-8k8-spacing-unit));
      border: none;
      border-radius: var(--page-8k8-border-radius);
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
      margin: var(--page-8k8-spacing-unit) 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8__button:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

    .page-8k8__button--secondary {
      background-color: var(--page-8k8-secondary-color);
      color: var(--page-8k8-dark-text-color);
    }

    .page-8k8__button--secondary:hover {
      background-color: #e6b800;
    }

    .page-8k8__heading {
      font-size: 2.2em;
      margin-bottom: calc(1.5 * var(--page-8k8-spacing-unit));
      color: var(--page-8k8-secondary-color);
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-8k8__subheading {
      font-size: 1.8em;
      margin-bottom: var(--page-8k8-spacing-unit);
      color: var(--page-8k8-primary-color);
      font-weight: bold;
    }

    .page-8k8__text-content {
      margin-bottom: calc(2 * var(--page-8k8-spacing-unit));
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8__card {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: var(--page-8k8-border-radius);
      padding: calc(1.5 * var(--page-8k8-spacing-unit));
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-8k8__card:hover {
      transform: translateY(-5px);
      background-color: rgba(255, 255, 255, 0.15);
    }

    .page-8k8__card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: var(--page-8k8-border-radius);
      margin-bottom: var(--page-8k8-spacing-unit);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      max-width: 100%;
    }

    .page-8k8__card-title {
      font-size: 1.4em;
      margin-bottom: var(--page-8k8-spacing-unit);
      color: var(--page-8k8-secondary-color);
      font-weight: bold;
    }

    .page-8k8__card-description {
      font-size: 0.95em;
      color: rgba(255, 255, 255, 0.8);
    }

    .page-8k8__image-full-width {
      width: 100%;
      height: auto;
      border-radius: var(--page-8k8-border-radius);
      margin-top: calc(2 * var(--page-8k8-spacing-unit));
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      max-width: 100%;
    }

    /* Payment Providers Section */
    .page-8k8__payment-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: var(--page-8k8-spacing-unit);
      margin-top: calc(2 * var(--page-8k8-spacing-unit));
      justify-items: center;
      align-items: center;
    }

    .page-8k8__payment-logo {
      width: 100%;
      max-width: 150px; /* Max width for logos */
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-8k8__payment-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Game Providers Section */
    .page-8k8__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-8k8-spacing-unit);
      margin-top: calc(2 * var(--page-8k8-spacing-unit));
      justify-items: center;
      align-items: center;
    }

    .page-8k8__game-provider-logo {
      width: 100%;
      max-width: 180px; /* Max width for game provider logos */
      height: auto;
      object-fit: contain;
      filter: brightness(0.8);
      transition: filter 0.3s ease;
    }

    .page-8k8__game-provider-logo:hover {
      filter: brightness(1);
    }

    /* FAQ Section */
    .page-8k8__faq-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
    }

    .page-8k8__faq-item {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: var(--page-8k8-border-radius);
      margin-bottom: var(--page-8k8-spacing-unit);
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--page-8k8-spacing-unit) calc(1.5 * var(--page-8k8-spacing-unit));
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-primary-color);
      color: var(--page-8k8-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-8k8__faq-question:hover {
      background-color: #cc0000;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8__faq-toggle {
      font-size: 1.5em;
      margin-left: var(--page-8k8-spacing-unit);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 calc(1.5 * var(--page-8k8-spacing-unit));
      color: var(--page-8k8-text-color);
      background-color: rgba(255, 255, 255, 0.05);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
      opacity: 0;
    }

    .page-8k8__faq-item.active .page-8k8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: var(--page-8k8-spacing-unit) calc(1.5 * var(--page-8k8-spacing-unit)) !important;
      opacity: 1;
    }

    .page-8k8__faq-answer p {
      margin-top: var(--page-8k8-spacing-unit);
      margin-bottom: var(--page-8k8-spacing-unit);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8__hero-title {
        font-size: 2em;
      }

      .page-8k8__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8__button {
        width: calc(100% - 16px);
        margin: 8px 0;
        padding: 12px 16px;
      }

      .page-8k8__heading {
        font-size: 1.8em;
      }

      .page-8k8__subheading {
        font-size: 1.4em;
      }

      .page-8k8__section {
        padding: calc(1.5 * var(--page-8k8-spacing-unit)) var(--page-8k8-spacing-unit);
      }

      .page-8k8__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8__card {
        padding: var(--page-8k8-spacing-unit);
      }

      .page-8k8__card-image {
        height: 150px;
      }

      .page-8k8__payment-providers-grid,
      .page-8k8__game-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--page-8k8-spacing-unit);
      }

      /* List item responsive requirements */
      .page-8k8__faq-list {
        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__faq-item {
        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__faq-question {
        padding: var(--page-8k8-spacing-unit) 12px;
        font-size: 1em;
      }

      .page-8k8__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8__faq-answer {
        padding: var(--page-8k8-spacing-unit) 12px;
      }

      /* Image responsive requirements */
      .page-8k8__card-image,
      .page-8k8__image-full-width,
      .page-8k8__payment-logo,
      .page-8k8__game-provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  