
    :root {
      --8k8-primary-color: #e0b000; /* Gold-like */
      --8k8-secondary-color: #333; /* Dark grey */
      --8k8-accent-color: #c0392b; /* Reddish accent */
      --8k8-text-color: #f5f5f5; /* Light text */
      --8k8-background-dark: #1a1a1a;
      --8k8-background-light: #2c2c2c;
    }

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

    .page-8k8__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

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

    .page-8k8__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:8k8_online_casino,gaming_bg,philippines]');
      background-size: cover;
      background-position: center;
      padding: 80px 20px 120px;
      position: relative;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--8k8-primary-color);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
    }

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

    .page-8k8__cta-button {
      background-color: var(--8k8-accent-color);
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
      margin-top: 20px;
    }

    .page-8k8__cta-button:hover {
      background-color: #e74c3c;
    }

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

    .page-8k8__floating-button {
      background-color: var(--8k8-primary-color);
      color: var(--8k8-background-dark);
      padding: 12px 25px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      text-decoration: none;
      display: block;
    }

    .page-8k8__floating-button--login {
      background-color: var(--8k8-accent-color);
      color: #fff;
    }

    .page-8k8__floating-button:hover {
      background-color: var(--8k8-secondary-color);
      color: var(--8k8-primary-color);
      transform: translateY(-2px);
    }

    .page-8k8__floating-button--login:hover {
      background-color: #e74c3c;
      color: #fff;
    }

    .page-8k8__heading {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--8k8-primary-color);
      text-transform: uppercase;
      font-weight: 600;
    }

    .page-8k8__subheading {
      font-size: 1.8em;
      margin-bottom: 20px;
      color: var(--8k8-text-color);
    }

    .page-8k8__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

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

    .page-8k8__image-card {
      background-color: var(--8k8-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-8k8__image-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8__image-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Important for responsiveness */
      box-sizing: border-box;
    }

    .page-8k8__image-card-content {
      padding: 20px;
      text-align: left;
      flex-grow: 1;
    }

    .page-8k8__image-card-title {
      font-size: 1.4em;
      color: var(--8k8-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8__image-card-description {
      font-size: 0.95em;
      color: var(--8k8-text-color);
    }

    .page-8k8__features-list {
      list-style: none;
      padding: 0;
      margin: 30px auto 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1000px;
    }

    .page-8k8__feature-item {
      background-color: var(--8k8-background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8__feature-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8__feature-title {
      font-size: 1.3em;
      color: var(--8k8-primary-color);
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-8k8__feature-description {
      font-size: 0.95em;
      color: var(--8k8-text-color);
    }

    .page-8k8__promo-banner {
      background-color: var(--8k8-accent-color);
      padding: 30px 20px;
      margin-top: 40px;
      border-radius: 10px;
      color: #fff;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8__promo-title {
      font-size: 2em;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-8k8__promo-text {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-8k8__faq-section {
      text-align: left;
      max-width: 900px;
      margin: 40px auto;
      box-sizing: border-box;
    }

    .page-8k8__faq-heading {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      color: var(--8k8-primary-color);
    }

    .page-8k8__faq-item {
      background-color: var(--8k8-background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2c2c2c; /* Slightly darker for question */
      color: var(--8k8-text-color);
      font-size: 1.15em;
      font-weight: 600;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.15em; /* Match parent font size */
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-8k8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: var(--8k8-primary-color);
    }

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like for open state */
      content: "−"; /* Visually change to minus, JS handles actual text */
    }

    .page-8k8__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;
      color: var(--8k8-text-color);
      font-size: 1em;
      text-align: left;
      box-sizing: border-box;
    }

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

    .page-8k8__game-providers {
      margin-top: 40px;
      text-align: center;
    }

    .page-8k8__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for more columns on desktop */
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8__provider-logo {
      width: 100%;
      max-width: 180px; /* Increased size */
      height: auto;
      object-fit: contain;
      filter: grayscale(80%); /* Example, keeping original colors but slightly muted */
      transition: filter 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8__provider-logo:hover {
      filter: grayscale(0%); /* Full color on hover */
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-8k8__hero-title {
        font-size: 3em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8__heading {
        font-size: 2em;
      }
      .page-8k8__subheading {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8__section {
        padding: 30px 15px;
      }

      .page-8k8__hero-section {
        padding: 60px 15px 100px;
        min-height: 50vh;
      }

      .page-8k8__hero-title {
        font-size: 2.5em;
      }

      .page-8k8__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 20px;
      }

      .page-8k8__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8__heading {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-8k8__subheading {
        font-size: 1.3em;
        margin-bottom: 15px;
      }

      .page-8k8__paragraph {
        font-size: 1em;
        text-align: center;
      }

      .page-8k8__image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8__image-card {
        max-width: 100%; /* Ensure cards don't overflow */
        margin: 0 auto;
      }

      .page-8k8__image-card-img {
        height: 180px;
      }

      .page-8k8__features-list {
        grid-template-columns: 1fr; /* Stack features on mobile */
        gap: 15px;
      }

      /* List item mobile responsiveness */
      .page-8k8__features-list,
      .page-8k8__image-grid,
      .page-8k8__provider-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8__feature-item,
      .page-8k8__image-card,
      .page-8k8__provider-logo { /* For individual items, if they were list items, apply these */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8__promo-banner {
        padding: 25px 15px;
      }

      .page-8k8__promo-title {
        font-size: 1.6em;
      }

      .page-8k8__promo-text {
        font-size: 1em;
      }

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

      .page-8k8__faq-question {
        font-size: 1em;
        padding: 15px;
      }

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

      .page-8k8__faq-answer {
        padding: 15px 15px !important; /* Adjusted for mobile */
      }

      .page-8k8__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-8k8__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-8k8__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }
      .page-8k8__provider-logo {
        max-width: 120px;
      }
    }
  