
    /* Page-specific CSS for 8k8 com login password */
    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Adjust padding-top for fixed header offset */
    .page-8k8-com-login-password__hero-section {
      padding-top: 10px; /* Small decorative top padding, assuming body has main offset */
      padding-bottom: 60px;
      background-color: #0f0f1d;
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px; /* Ensure hero section has a decent height */
    }

    .page-8k8-com-login-password__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3; /* Slightly transparent background image */
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
      box-sizing: border-box; /* Image responsiveness */
    }

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

    .page-8k8-com-login-password__hero-title {
      font-size: 3.2em;
      color: #ffc107; /* Gold accent */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-login-password__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-8k8-com-login-password__cta-button {
      background-color: #007bff; /* Blue for call to action */
      color: #ffffff;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* In case it's a div acting as button */
      display: inline-block;
    }

    .page-8k8-com-login-password__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

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

    .page-8k8-com-login-password__section-title {
      font-size: 2.5em;
      color: #ffc107;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com-login-password__grid-item {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-com-login-password__item-icon {
      width: 250px; /* Minimum 200x200 */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__item-title {
      font-size: 1.8em;
      color: #ffc107;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-password__item-description {
      color: #e0e0e0;
      font-size: 1.1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-login-password__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
      width: 100%; /* Container width for responsiveness */
      max-width: 100%; /* Container width for responsiveness */
      box-sizing: border-box; /* Container box-sizing */
    }

    .page-8k8-com-login-password__step-item {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Required for list items */
      width: 100%; /* Default to 100% for full width */
      word-wrap: break-word; /* Text wrapping for list items */
      overflow-wrap: break-word; /* Text wrapping for list items */
    }

    .page-8k8-com-login-password__step-number {
      font-size: 2em;
      color: #007bff;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-8k8-com-login-password__step-content {
      flex-grow: 1;
    }

    .page-8k8-com-login-password__step-title {
      font-size: 1.5em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-password__step-description {
      color: #e0e0e0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-com-login-password__faq-section {
      background-color: #1a1a2e;
      padding: 60px 20px;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-password__faq-title {
      font-size: 2.5em;
      color: #ffc107;
      margin-bottom: 40px;
    }

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

    .page-8k8-com-login-password__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .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: #3b3b6b;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffc107;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #007bff;
      flex-shrink: 0;
      margin-left: 10px; /* Space between text and icon */
    }

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

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #e0e0e0;
      font-size: 1.05em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .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;
    }

    /* General responsive styles */
    @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__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-8k8-com-login-password__content-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
      }

      .page-8k8-com-login-password__grid-item {
        padding: 20px;
      }

      .page-8k8-com-login-password__item-title {
        font-size: 1.5em;
      }

      .page-8k8-com-login-password__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        width: 100% !important; /* Mobile width control */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-8k8-com-login-password__step-title {
        font-size: 1.3em;
      }

      .page-8k8-com-login-password__steps-list {
        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-password__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

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

      .page-8k8-com-login-password__faq-answer {
        padding: 15px 20px;
      }
      
      /* Image responsiveness */
      .page-8k8-com-login-password__item-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      /* Ensure text wraps */
      .page-8k8-com-login-password__item-description,
      .page-8k8-com-login-password__step-description,
      .page-8k8-com-login-password__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  