
    :root {
      --page-8k8-4-2-primary-color: #e0b400; /* Gold/Yellow */
      --page-8k8-4-2-secondary-color: #333; /* Dark Grey */
      --page-8k8-4-2-accent-color: #007bff; /* Blue for buttons/highlights */
      --page-8k8-4-2-text-color: #f8f9fa; /* Light text */
      --page-8k8-4-2-dark-text-color: #212529; /* Dark text for light backgrounds */
      --page-8k8-4-2-bg-dark: #1a1a1a; /* Dark background */
      --page-8k8-4-2-bg-light: #f4f4f4; /* Light background */
      --page-8k8-4-2-border-color: #444;
      --page-8k8-4-2-border-radius: 8px;
      --page-8k8-4-2-padding-section: 60px 20px;
      --page-8k8-4-2-max-width: 1200px;
    }

    .page-8k8-4-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-4-2-text-color);
      background-color: var(--page-8k8-4-2-bg-dark);
      padding-top: var(--header-offset, 122px); /* Fallback for older shared.css */
    }

    /* Fixed Navbar Spacing - ensuring hero section starts correctly */
    .page-8k8-4-2__hero-section {
      padding-top: 10px; /* Small decorative top padding */
    }

    .page-8k8-4-2__container {
      max-width: var(--page-8k8-4-2-max-width);
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-8k8-4-2__section {
      padding: var(--page-8k8-4-2-padding-section);
      text-align: center;
    }

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

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

    .page-8k8-4-2__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino_lobby,philippines,gaming]') no-repeat center center/cover;
      color: var(--page-8k8-4-2-text-color);
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 70vh;
      text-align: center;
    }

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

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

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

    .page-8k8-4-2__button:hover {
      background-color: #ffc107;
      transform: translateY(-3px);
    }

    .page-8k8-4-2__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-4-2-primary-color);
    }

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

    .page-8k8-4-2__feature-item {
      background-color: var(--page-8k8-4-2-secondary-color);
      padding: 30px;
      border-radius: var(--page-8k8-4-2-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 250px;
    }

    .page-8k8-4-2__feature-item:hover {
      transform: translateY(-5px);
      background-color: #444;
    }

    .page-8k8-4-2__feature-icon {
      width: 250px; /* Minimum size */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
      display: block;
    }

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

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

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

    .page-8k8-4-2__game-card {
      background-color: var(--page-8k8-4-2-secondary-color);
      border-radius: var(--page-8k8-4-2-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-8k8-4-2__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-4-2__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-4-2__game-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-8k8-4-2__game-content {
      padding: 25px;
    }

    .page-8k8-4-2__game-title {
      font-size: 1.8em;
      color: var(--page-8k8-4-2-primary-color);
      margin-bottom: 10px;
    }

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

    .page-8k8-4-2__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-4-2__payment-item {
      background-color: var(--page-8k8-4-2-secondary-color);
      padding: 20px;
      border-radius: var(--page-8k8-4-2-border-radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-4-2__payment-logo {
      width: 200px; /* Minimum size */
      height: auto;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
      border-radius: 4px;
      display: block;
    }

    .page-8k8-4-2__payment-name {
      margin-top: 15px;
      font-weight: bold;
      color: var(--page-8k8-4-2-primary-color);
    }

    .page-8k8-4-2__faq-section {
      background-color: var(--page-8k8-4-2-bg-light);
      color: var(--page-8k8-4-2-dark-text-color);
      padding: var(--page-8k8-4-2-padding-section);
    }

    .page-8k8-4-2__faq-section .page-8k8-4-2__section-title {
      color: var(--page-8k8-4-2-dark-text-color);
    }

    .page-8k8-4-2__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-4-2__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-8k8-4-2-border-color);
      border-radius: var(--page-8k8-4-2-border-radius);
      background-color: #fff;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

    .page-8k8-4-2__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-4-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-4-2-primary-color);
      pointer-events: none; /* Crucial for click event to register on parent */
    }

    .page-8k8-4-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event to register on parent */
    }

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

    .page-8k8-4-2__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(--page-8k8-4-2-dark-text-color);
      background-color: #f8f9fa;
      border-bottom-left-radius: var(--page-8k8-4-2-border-radius);
      border-bottom-right-radius: var(--page-8k8-4-2-border-radius);
      text-align: left;
    }

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

    .page-8k8-4-2__cta-section {
      background-color: var(--page-8k8-4-2-primary-color);
      color: var(--page-8k8-4-2-dark-text-color);
      padding: var(--page-8k8-4-2-padding-section);
    }

    .page-8k8-4-2__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
    }

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

    .page-8k8-4-2__cta-button {
      background-color: var(--page-8k8-4-2-secondary-color);
      color: var(--page-8k8-4-2-primary-color);
      padding: 18px 35px;
      border-radius: var(--page-8k8-4-2-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-8k8-4-2__cta-button:hover {
      background-color: #000;
      transform: translateY(-3px);
    }

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

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

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

      .page-8k8-4-2__features-grid,
      .page-8k8-4-2__game-categories,
      .page-8k8-4-2__payment-methods-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-4-2__feature-item,
      .page-8k8-4-2__game-card,
      .page-8k8-4-2__payment-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      /* Specific adjustments for list-like items to prevent overflow */
      .page-8k8-4-2__feature-item,
      .page-8k8-4-2__game-card,
      .page-8k8-4-2__payment-item,
      .page-8k8-4-2__faq-item {
        padding-left: 15px;
        padding-right: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-4-2__feature-description,
      .page-8k8-4-2__game-description,
      .page-8k8-4-2__payment-name,
      .page-8k8-4-2__faq-question h3,
      .page-8k8-4-2__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-4-2__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-4-2__faq-answer {
        padding: 15px 15px;
      }

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

      .page-8k8-4-2__cta-description {
        font-size: 1em;
      }

      .page-8k8-4-2__cta-button {
        padding: 15px 25px;
      }

      .page-8k8-4-2__section {
        padding: 40px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-4-2__hero-title {
        font-size: 2em;
      }

      .page-8k8-4-2__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-4-2__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }

      .page-8k8-4-2__section-title {
        font-size: 1.8em;
      }

      .page-8k8-4-2__faq-question h3 {
        font-size: 1em;
      }
    }
  