
    /* Page specific CSS styles for 8k8 com login password */
    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    /* Fixed navigation bar spacing - decorative padding for first section */
    .page-8k8-com-login-password__hero-section {
      padding-top: 10px; /* Decorative padding, actual offset handled by body */
    }

    .page-8k8-com-login-password__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-8k8-com-login-password__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Dynamic gradient for betting theme */
      color: #fff;
      border-radius: 0;
      box-shadow: none;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-login-password__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]');
      background-size: cover;
      background-position: center;
      opacity: 0.1;
      z-index: 0;
    }

    .page-8k8-com-login-password__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-login-password__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .page-8k8-com-login-password__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease-in-out;
    }

    .page-8k8-com-login-password__hero-image:hover {
      transform: scale(1.02);
    }

    .page-8k8-com-login-password__title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-8k8-com-login-password__subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8-com-login-password__button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
      font-size: 1em;
    }

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

    .page-8k8-com-login-password__content-wrapper {
      max-width: 1000px;
      margin: 20px auto;
      padding: 0 20px;
    }

    .page-8k8-com-login-password__heading {
      font-size: 2em;
      color: #1a2a6c;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-8k8-com-login-password__heading::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #fdbb2d;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-com-login-password__paragraph {
      margin-bottom: 15px;
      color: #555;
      text-align: justify;
    }

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

    .page-8k8-com-login-password__list-item {
      background-color: #f0f8ff;
      padding: 20px;
      border-left: 5px solid #1a2a6c;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-8k8-com-login-password__list-item strong {
      color: #1a2a6c;
    }

    .page-8k8-com-login-password__list-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-com-login-password__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 30px auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .page-8k8-com-login-password__image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-8k8-com-login-password__image:hover {
      transform: scale(1.03);
    }

    /* FAQ Section Styles */
    .page-8k8-com-login-password__faq-section {
      background-color: #f0f0f0;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-top: 30px;
    }

    .page-8k8-com-login-password__faq-item {
      background-color: #fff;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .page-8k8-com-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #1a2a6c;
      color: #fff;
      font-weight: bold;
      border-bottom: 1px solid #1a2a6c;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login-password__faq-question:hover {
      background-color: #2b3e8a;
    }

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      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 20px;
      background-color: #fdfdfd;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      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 !important;
      opacity: 1;
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-com-login-password__hero-section {
        padding: 40px 15px;
      }

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

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

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

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

      .page-8k8-com-login-password__heading {
        font-size: 1.6em;
      }

      .page-8k8-com-login-password__content-wrapper {
        padding: 0 15px;
      }

      /* List items mobile responsiveness */
      .page-8k8-com-login-password__list {
        grid-template-columns: 1fr !important; /* Ensure single column */
        gap: 15px !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-password__image-container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-com-login-password__hero-image-container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-com-login-password__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

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

      .page-8k8-com-login-password__faq-answer {
        padding: 15px !important;
      }
    }
  