
    :root {
      --page-8k8-com-login-password-primary-bg: #1a0033; /* Dark purple */
      --page-8k8-com-login-password-secondary-bg: #2a0055; /* Slightly lighter purple */
      --page-8k8-com-login-password-accent-color: #ffd700; /* Gold */
      --page-8k8-com-login-password-text-color: #ffffff; /* White */
      --page-8k8-com-login-password-light-text: #e0e0e0; /* Light gray */
      --page-8k8-com-login-password-border-color: #4a0088; /* Purple border */
      --page-8k8-com-login-password-button-hover: #ffec8b; /* Lighter gold */
    }

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

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

    .page-8k8-com-login-password__section--dark {
      background-color: var(--page-8k8-com-login-password-secondary-bg);
    }

    .page-8k8-com-login-password__hero-section {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:casino,login,background]') no-repeat center center / cover;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      position: relative;
    }

    .page-8k8-com-login-password__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-8k8-com-login-password__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-login-password-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-password__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-login-password-light-text);
    }

    .page-8k8-com-login-password__button {
      display: inline-block;
      background-color: var(--page-8k8-com-login-password-accent-color);
      color: var(--page-8k8-com-login-password-primary-bg);
      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;
    }

    .page-8k8-com-login-password__button:hover {
      background-color: var(--page-8k8-com-login-password-button-hover);
      transform: translateY(-2px);
    }

    .page-8k8-com-login-password__title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-login-password-accent-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-login-password__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-com-login-password-accent-color);
      border-radius: 2px;
    }

    .page-8k8-com-login-password__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-login-password-light-text);
    }

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

    .page-8k8-com-login-password__card {
      background-color: var(--page-8k8-com-login-password-primary-bg);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-8k8-com-login-password-border-color);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-login-password__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

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

    .page-8k8-com-login-password__card-text {
      color: var(--page-8k8-com-login-password-light-text);
      font-size: 1em;
    }

    .page-8k8-com-login-password__image-wrapper {
      margin-bottom: 25px;
      border-radius: 8px;
      overflow: hidden;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-8k8-com-login-password__steps-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      max-width: 800px;
    }

    .page-8k8-com-login-password__step-item {
      background-color: var(--page-8k8-com-login-password-primary-bg);
      border: 1px solid var(--page-8k8-com-login-password-border-color);
      padding: 25px 30px;
      margin-bottom: 20px;
      border-radius: 10px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-password__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-com-login-password-accent-color);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--page-8k8-com-login-password-secondary-bg);
      border-radius: 50%;
      border: 2px solid var(--page-8k8-com-login-password-accent-color);
    }

    .page-8k8-com-login-password__step-content h3 {
      font-size: 1.5em;
      color: var(--page-8k8-com-login-password-accent-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-password__step-content p {
      color: var(--page-8k8-com-login-password-light-text);
      margin-bottom: 0;
    }

    .page-8k8-com-login-password__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login-password__faq-item {
      background-color: var(--page-8k8-com-login-password-primary-bg);
      border: 1px solid var(--page-8k8-com-login-password-border-color);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-com-login-password-secondary-bg);
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-password__faq-question:hover {
      background-color: #3a0066; /* Slightly darker hover */
    }

    .page-8k8-com-login-password__faq-question h3 {
      font-size: 1.3em;
      color: var(--page-8k8-com-login-password-accent-color);
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-com-login-password-accent-color);
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-com-login-password-light-text);
      text-align: left;
      opacity: 0;
    }

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

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus */
    }

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

      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-com-login-password__title {
        font-size: 2em;
      }

      .page-8k8-com-login-password__text {
        font-size: 1em;
      }

      .page-8k8-com-login-password__section {
        padding: 30px 15px;
      }

      .page-8k8-com-login-password__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-login-password__card {
        padding: 25px;
      }

      .page-8k8-com-login-password__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
      }

      .page-8k8-com-login-password__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-com-login-password__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-login-password__faq-toggle {
        font-size: 1.8em;
      }

      .page-8k8-com-login-password__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
        padding: 15px 20px !important;
      }
      
      /* Image responsive styles */
      .page-8k8-com-login-password__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-8k8-com-login-password__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item responsive styles */
      .page-8k8-com-login-password__steps-list,
      .page-8k8-com-login-password__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login-password__step-item,
      .page-8k8-com-login-password__faq-item {
        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;
      }
    }

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

      .page-8k8-com-login-password__title {
        font-size: 1.8em;
      }

      .page-8k8-com-login-password__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  