
    :root {
      --page-bg-color: #1a1a2e;
      --page-text-color: #e0e0e0;
      --page-accent-color: #e94560;
      --page-button-color: #00bcd4;
      --page-button-hover-color: #ffc107;
      --page-card-bg-color: #2a2a4a;
      --page-border-color: #3e3e60;
    }

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

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

    .page-8k8-com-login-password__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('[GALLERY:hero:1920x1080:casino,login,security]');
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      margin-bottom: 40px;
    }

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

    .page-8k8-com-login-password__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
      color: var(--page-text-color);
    }

    .page-8k8-com-login-password__cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-accent-color);
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-login-password__cta-button:hover {
      background-color: var(--page-button-hover-color);
    }

    .page-8k8-com-login-password__section {
      background-color: var(--page-card-bg-color);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-password__section-title {
      font-size: 2.2em;
      color: var(--page-button-color);
      margin-bottom: 25px;
      text-align: center;
    }

    .page-8k8-com-login-password__content-block {
      margin-bottom: 30px;
    }

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

    .page-8k8-com-login-password__content-block p {
      margin-bottom: 15px;
    }

    .page-8k8-com-login-password__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-8k8-com-login-password__step-item {
      background-color: var(--page-bg-color);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--page-border-color);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__step-item h4 {
      font-size: 1.3em;
      color: var(--page-button-color);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .page-8k8-com-login-password__step-item h4::before {
      content: counter(step-counter);
      counter-increment: step-counter;
      background-color: var(--page-accent-color);
      color: #ffffff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;
      font-size: 0.9em;
      font-weight: bold;
    }

    .page-8k8-com-login-password__image-container {
      text-align: center;
      margin: 30px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      background-color: var(--page-bg-color);
      padding: 15px;
    }

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

    .page-8k8-com-login-password__image-caption {
      margin-top: 15px;
      font-style: italic;
      color: var(--page-text-color);
      font-size: 0.9em;
    }

    .page-8k8-com-login-password__faq-section {
      background-color: var(--page-card-bg-color);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-password__faq-section-title {
      font-size: 2.2em;
      color: var(--page-button-color);
      margin-bottom: 25px;
      text-align: center;
    }

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

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

    .page-8k8-com-login-password__faq-question:hover {
      background-color: #2e2e4f; /* Slightly lighter bg on hover */
    }

    .page-8k8-com-login-password__faq-question h3 {
      font-size: 1.3em;
      color: var(--page-text-color);
      margin: 0;
      pointer-events: none; /* Prevents text from blocking click event */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
      line-height: 1; /* Ensure consistent vertical alignment */
      width: 25px; /* Fixed width to prevent layout shifts */
      text-align: center;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' effect, or just change text */
      content: '−'; /* Change to minus sign */
    }

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-text-color);
    }

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

    .page-8k8-com-login-password__note {
      font-size: 0.9em;
      color: var(--page-text-color);
      text-align: center;
      margin-top: 30px;
      padding: 15px;
      background-color: var(--page-card-bg-color);
      border-radius: 8px;
      border: 1px dashed var(--page-border-color);
    }

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

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

      .page-8k8-com-login-password__section-title,
      .page-8k8-com-login-password__faq-section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-login-password__content-block h3 {
        font-size: 1.4em;
      }

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

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

      /* List item responsive requirements */
      .page-8k8-com-login-password__steps-list,
      .page-8k8-com-login-password__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login-password__steps-list {
        padding: 0 !important;
      }
      .page-8k8-com-login-password__step-item {
        padding: 15px !important;
      }
      .page-8k8-com-login-password__step-item p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive requirements */
      .page-8k8-com-login-password__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 10px !important;
      }
      .page-8k8-com-login-password__image-container img {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-com-login-password__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }
      .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
        padding: 15px !important;
      }
    }
  