
    :root {
      --page-8k8-3-primary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-3-secondary-color: #333333; /* Dark Grey */
      --page-8k8-3-accent-color: #e60000; /* Red */
      --page-8k8-3-text-color: #ffffff; /* White */
      --page-8k8-3-dark-text-color: #1a1a1a; /* Very Dark Grey */
      --page-8k8-3-bg-dark: #0a0a0a; /* Dark background */
      --page-8k8-3-bg-light: #1a1a1a; /* Slightly lighter dark background */
    }

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

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

    .page-8k8-3__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,login,philippines]') no-repeat center center/cover;
      color: var(--page-8k8-3-text-color);
      text-align: center;
      padding: 100px 20px;
      padding-top: 10px; /* Small decorative top padding, body handles main offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

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

    .page-8k8-3__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

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

    .page-8k8-3__section {
      padding: 60px 0;
      text-align: center;
    }

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

    .page-8k8-3__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-3-primary-color);
      margin-bottom: 40px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-8k8-3__feature-card {
      background-color: var(--page-8k8-3-bg-dark);
      padding: 30px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-8k8-3__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-3__feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }

    .page-8k8-3__feature-title {
      font-size: 1.8em;
      color: var(--page-8k8-3-primary-color);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__feature-description {
      font-size: 1em;
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-3__step-item {
      display: flex;
      align-items: flex-start;
      text-align: left;
      background-color: var(--page-8k8-3-bg-dark);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-3__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-3-primary-color);
      margin-right: 20px;
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid var(--page-8k8-3-primary-color);
      border-radius: 50%;
    }

    .page-8k8-3__step-content {
      flex-grow: 1;
    }

    .page-8k8-3__step-title {
      font-size: 1.5em;
      color: var(--page-8k8-3-primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__step-description {
      font-size: 1em;
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__promo-banner {
      background-color: var(--page-8k8-3-accent-color);
      padding: 50px 20px;
      margin-top: 60px;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-3__promo-title {
      font-size: 2.2em;
      color: var(--page-8k8-3-text-color);
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__promo-text {
      font-size: 1.2em;
      color: var(--page-8k8-3-text-color);
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__promo-button {
      background-color: var(--page-8k8-3-text-color);
      color: var(--page-8k8-3-accent-color);
      padding: 15px 35px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

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

    .page-8k8-3__faq-section {
      padding: 60px 0;
      background-color: var(--page-8k8-3-bg-light);
      text-align: center;
    }

    .page-8k8-3__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-8k8-3__faq-item {
      background-color: var(--page-8k8-3-bg-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-8k8-3-secondary-color);
      color: var(--page-8k8-3-text-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-3__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-3-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-8k8-3-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

    .page-8k8-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      background-color: var(--page-8k8-3-bg-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

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

    .page-8k8-3__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__cta-description {
      font-size: 1.4em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__cta-button {
      background-color: var(--page-8k8-3-accent-color);
      color: var(--page-8k8-3-text-color);
      padding: 18px 40px;
      border-radius: 5px;
      font-size: 1.4em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-3__hero-title {
        font-size: 3em;
      }

      .page-8k8-3__hero-subtitle {
        font-size: 1.3em;
      }

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

      .page-8k8-3__cta-title {
        font-size: 2.5em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-3__container {
        padding: 15px;
      }

      .page-8k8-3__hero-section {
        padding: 80px 15px;
        padding-top: 10px; /* Small decorative top padding */
        min-height: 350px;
      }

      .page-8k8-3__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-3__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-3__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-3__section {
        padding: 40px 0;
      }

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

      .page-8k8-3__section-description {
        font-size: 0.95em;
      }

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

      .page-8k8-3__feature-card,
      .page-8k8-3__step-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-3__step-number {
        font-size: 1.8em;
        width: 45px;
        height: 45px;
        margin-right: 15px;
      }

      .page-8k8-3__step-title {
        font-size: 1.3em;
      }

      .page-8k8-3__step-description {
        font-size: 0.9em;
      }

      .page-8k8-3__promo-banner {
        padding: 40px 15px;
      }

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

      .page-8k8-3__promo-text {
        font-size: 1em;
      }

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

      .page-8k8-3__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-3__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-3__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-3__faq-answer {
        padding: 0 20px;
      }

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

      .page-8k8-3__cta-section {
        padding: 50px 15px;
      }

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

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

      .page-8k8-3__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }

      /* Image responsiveness */
      .page-8k8-3 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-3__feature-card img {
        width: 100% !important; /* Ensure image within card is responsive */
        height: auto !important;
      }
    }

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

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

      .page-8k8-3__section-title {
        font-size: 1.6em;
      }

      .page-8k8-3__feature-title {
        font-size: 1.5em;
      }

      .page-8k8-3__step-title {
        font-size: 1.2em;
      }

      .page-8k8-3__promo-title {
        font-size: 1.6em;
      }

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