
    :root {
      --page-8k8-com-login-register-primary-color: #f7b32b; /* Golden Yellow */
      --page-8k8-com-login-register-secondary-color: #333; /* Dark Grey */
      --page-8k8-com-login-register-accent-color: #c94c4c; /* Reddish Accent */
      --page-8k8-com-login-register-text-color: #e0e0e0; /* Light Grey Text */
      --page-8k8-com-login-register-bg-color: #1a1a1a; /* Dark Background */
      --page-8k8-com-login-register-light-text: #ffffff;
      --page-8k8-com-login-register-dark-text: #111111;
      --page-8k8-com-login-register-border-color: #555;
    }

    .page-8k8-com-login-register {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-com-login-register-text-color);
      background-color: var(--page-8k8-com-login-register-bg-color);
      line-height: 1.6;
      padding-bottom: 50px;
    }

    /* Adjust padding-top for fixed header offset if body padding is not applied by shared.css */
    /* .page-8k8-com-login-register {
      padding-top: var(--header-offset, 122px);
    } */

    .page-8k8-com-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-register__section--dark {
      background-color: #222;
    }

    .page-8k8-com-login-register__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,login,register,philippines]') no-repeat center center/cover;
      color: var(--page-8k8-com-login-register-light-text);
      padding: 100px 20px 80px; /* Small padding-top, assuming body has offset */
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
    }

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

    .page-8k8-com-login-register__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      line-height: 1.4;
    }

    .page-8k8-com-login-register__button-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-8k8-com-login-register__button {
      background-color: var(--page-8k8-com-login-register-primary-color);
      color: var(--page-8k8-com-login-register-dark-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-login-register__button:hover {
      background-color: #e6a220; /* Slightly darker yellow */
      transform: translateY(-3px);
    }

    .page-8k8-com-login-register__button--secondary {
      background-color: var(--page-8k8-com-login-register-secondary-color);
      color: var(--page-8k8-com-login-register-light-text);
      border: 2px solid var(--page-8k8-com-login-register-primary-color);
    }

    .page-8k8-com-login-register__button--secondary:hover {
      background-color: #444;
      border-color: #e6a220;
    }

    .page-8k8-com-login-register__title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-login-register-primary-color);
    }

    .page-8k8-com-login-register__subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: var(--page-8k8-com-login-register-text-color);
    }

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

    .page-8k8-com-login-register__feature-card {
      background-color: #282828;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-8k8-com-login-register-border-color);
    }

    .page-8k8-com-login-register__feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-com-login-register__feature-icon {
      width: 80px; /* Min size 200x200, so this will be a placeholder for a larger image */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .page-8k8-com-login-register__feature-title {
      font-size: 1.5em;
      color: var(--page-8k8-com-login-register-primary-color);
      margin-bottom: 15px;
    }

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

    .page-8k8-com-login-register__step-card {
      background-color: #282828;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      text-align: center;
      border: 1px solid var(--page-8k8-com-login-register-border-color);
    }

    .page-8k8-com-login-register__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-com-login-register-primary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-register__step-title {
      font-size: 1.3em;
      color: var(--page-8k8-com-login-register-light-text);
      margin-bottom: 10px;
    }

    .page-8k8-com-login-register__promo-card {
      background-color: #282828;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      text-align: left;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--page-8k8-com-login-register-border-color);
    }

    .page-8k8-com-login-register__promo-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-login-register__promo-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-login-register__promo-content {
      padding: 25px;
      flex-grow: 1;
    }

    .page-8k8-com-login-register__promo-title {
      font-size: 1.6em;
      color: var(--page-8k8-com-login-register-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-login-register__promo-description {
      margin-bottom: 20px;
      color: var(--page-8k8-com-login-register-text-color);
    }

    .page-8k8-com-login-register__promo-link {
      display: inline-block;
      background-color: var(--page-8k8-com-login-register-accent-color);
      color: var(--page-8k8-com-login-register-light-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-register__promo-link:hover {
      background-color: #a83a3a;
    }

    .page-8k8-com-login-register__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-login-register__faq-item {
      background-color: #282828;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-8k8-com-login-register-border-color);
    }

    .page-8k8-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      color: var(--page-8k8-com-login-register-primary-color);
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-com-login-register-primary-color);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-8k8-com-login-register__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-com-login-register__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

    .page-8k8-com-login-register__faq-item.active .page-8k8-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually, or you can use '-' */
    }

    .page-8k8-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #282828;
      color: var(--page-8k8-com-login-register-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

    .page-8k8-com-login-register__faq-item.active .page-8k8-com-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-8k8-com-login-register__cta-section {
      background-color: var(--page-8k8-com-login-register-primary-color);
      color: var(--page-8k8-com-login-register-dark-text);
      padding: 60px 20px;
    }

    .page-8k8-com-login-register__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com-login-register__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-login-register__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-login-register__title {
        font-size: 2em;
      }
      .page-8k8-com-login-register__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-register__hero-section {
        padding: 80px 15px 60px;
        min-height: 50vh;
      }
      .page-8k8-com-login-register__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-login-register__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-login-register__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-com-login-register__button {
        width: 100%;
        max-width: 300px;
        font-size: 1em;
      }
      .page-8k8-com-login-register__section {
        padding: 30px 15px;
      }
      .page-8k8-com-login-register__title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-register__subtitle {
        font-size: 1em;
      }
      .page-8k8-com-login-register__features-grid,
      .page-8k8-com-login-register__steps-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com-login-register__feature-card,
      .page-8k8-com-login-register__step-card,
      .page-8k8-com-login-register__promo-card {
        padding: 20px;
      }
      .page-8k8-com-login-register__feature-title {
        font-size: 1.3em;
      }
      .page-8k8-com-login-register__step-title {
        font-size: 1.1em;
      }
      .page-8k8-com-login-register__promo-title {
        font-size: 1.4em;
      }
      .page-8k8-com-login-register__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-com-login-register__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-login-register__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-login-register__faq-item.active .page-8k8-com-login-register__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-com-login-register__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-register__cta-description {
        font-size: 1.1em;
      }

      /* List item responsive requirements */
      .page-8k8-com-login-register__features-grid > *,
      .page-8k8-com-login-register__steps-grid > * {
        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-com-login-register__features-grid,
      .page-8k8-com-login-register__steps-grid {
        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-com-login-register__promo-image,
      .page-8k8-com-login-register__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-register__promo-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  