
    :root {
      --page-8k8-17-primary-color: #ff4500; /* OrangeRed */
      --page-8k8-17-secondary-color: #ffd700; /* Gold */
      --page-8k8-17-dark-background: #1a1a1a;
      --page-8k8-17-light-background: #f0f2f5;
      --page-8k8-17-text-color: #ffffff;
      --page-8k8-17-dark-text-color: #333333;
      --page-8k8-17-border-color: #333333;
      --page-8k8-17-button-hover-color: #e03a00;
    }

    .page-8k8-17 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-17-dark-text-color);
      background-color: var(--page-8k8-17-light-background);
      padding-top: 10px; /* Small decorative padding, assuming body handles main header offset */
    }

    .page-8k8-17__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

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

    .page-8k8-17__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino games,slots,philippines]') no-repeat center center / cover;
      color: var(--page-8k8-17-text-color);
      text-align: center;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-8k8-17__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-8k8-17-secondary-color);
    }

    .page-8k8-17__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-8k8-17__button {
      display: inline-block;
      background-color: var(--page-8k8-17-primary-color);
      color: var(--page-8k8-17-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-17__button:hover {
      background-color: var(--page-8k8-17-button-hover-color);
    }

    .page-8k8-17__heading {
      font-size: 2.5em;
      color: var(--page-8k8-17-dark-text-color);
      text-align: center;
      margin-bottom: 40px;
    }

    .page-8k8-17__section--dark .page-8k8-17__heading {
      color: var(--page-8k8-17-secondary-color);
    }

    .page-8k8-17__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8-17__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

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

    .page-8k8-17__section--dark .page-8k8-17__feature-card {
      background-color: #2a2a2a;
      color: var(--page-8k8-17-text-color);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-17__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-17__feature-icon {
      width: 80px; /* Min size 200x200px. This is an example, will be replaced by actual image */
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }
    .page-8k8-17__feature-image {
      width: 250px;
      height: 250px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
    }


    .page-8k8-17__feature-title {
      font-size: 1.5em;
      color: var(--page-8k8-17-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-17__section--dark .page-8k8-17__feature-title {
      color: var(--page-8k8-17-secondary-color);
    }

    .page-8k8-17__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-17__game-card {
      background-color: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      text-align: center;
    }
    .page-8k8-17__section--dark .page-8k8-17__game-card {
      background-color: #2a2a2a;
      color: var(--page-8k8-17-text-color);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-17__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-17__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-8k8-17__game-info {
      padding: 20px;
    }

    .page-8k8-17__game-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--page-8k8-17-dark-text-color);
    }
    .page-8k8-17__section--dark .page-8k8-17__game-title {
      color: var(--page-8k8-17-text-color);
    }

    .page-8k8-17__promo-banner {
      background-color: var(--page-8k8-17-primary-color);
      color: var(--page-8k8-17-text-color);
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
    }

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

    .page-8k8-17__promo-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-8k8-17__faq-section {
      background-color: #ffffff;
      color: var(--page-8k8-17-dark-text-color);
    }

    .page-8k8-17__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-17__faq-item {
      border: 1px solid var(--page-8k8-17-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #f9f9f9;
    }

    .page-8k8-17__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-8k8-17-primary-color);
      color: var(--page-8k8-17-text-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-17__faq-question:hover {
      background-color: var(--page-8k8-17-button-hover-color);
    }

    .page-8k8-17__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click events */
    }

    .page-8k8-17__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click events */
    }

    .page-8k8-17__faq-item.active .page-8k8-17__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-8k8-17__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: #ffffff;
      color: var(--page-8k8-17-dark-text-color);
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    .page-8k8-17__faq-answer p {
      margin-bottom: 10px;
    }

    .page-8k8-17__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-8k8-17-dark-background);
      color: var(--page-8k8-17-text-color);
    }

    .page-8k8-17__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-8k8-17-secondary-color);
    }

    .page-8k8-17__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-17__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-17__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-8k8-17__features-grid,
      .page-8k8-17__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-17__feature-card,
      .page-8k8-17__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }
      .page-8k8-17__game-card {
        padding: 0; /* Adjust for image */
      }
      .page-8k8-17__game-info {
        padding: 15px;
      }

      .page-8k8-17__promo-title {
        font-size: 1.8em;
      }

      .page-8k8-17__promo-description {
        font-size: 1em;
      }

      .page-8k8-17__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-8k8-17__faq-answer {
        padding: 0 15px;
      }

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

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

      .page-8k8-17__cta-description {
        font-size: 1.1em;
      }

      /* Ensure images are responsive */
      .page-8k8-17 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-8k8-17__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-17__feature-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-17__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17__hero-title {
        font-size: 2em;
      }
      .page-8k8-17__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-17__heading {
        font-size: 1.8em;
      }
      .page-8k8-17__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  