
    :root {
      --primary-color: #e44d26; /* A vibrant, energetic color often associated with gaming/action */
      --secondary-color: #333;
      --text-color: #f0f0f0;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --accent-color: #ffcc00; /* Gold/yellow for highlights */
      --border-radius: 8px;
      --header-offset: 122px; /* Default value, assumed to be set in shared.css and applied to body */
    }

    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 50px; /* Ensure space above footer */
    }

    .page-8k8-com-login-password__hero-section {
      position: relative;
      padding: 100px 20px 80px; /* Adjusted top padding */
      text-align: center;
      background-color: var(--background-light);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px; /* Ensure visibility */
      box-sizing: border-box;
      padding-top: calc(var(--header-offset, 122px) + 20px); /* Adjust for header offset */
    }

    .page-8k8-com-login-password__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      max-width: 100%;
    }

    .page-8k8-com-login-password__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 30px;
      border-radius: var(--border-radius);
    }

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

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

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

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

    .page-8k8-com-login-password__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--background-dark);
      border-radius: var(--border-radius);
      margin-top: 30px;
    }

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

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

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

    .page-8k8-com-login-password__feature-item {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: var(--border-radius);
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

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

    .page-8k8-com-login-password__feature-description {
      color: var(--text-color);
    }

    .page-8k8-com-login-password__image-container {
      margin-top: 40px;
      text-align: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__image {
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: block; /* Remove extra space below image */
      margin: 0 auto;
    }

    .page-8k8-com-login-password__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-8k8-com-login-password__payment-item {
      background-color: var(--background-light);
      padding: 20px;
      border-radius: var(--border-radius);
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__payment-logo {
      max-width: 100%; /* Ensure logos fit */
      height: auto;
      display: block;
      margin: 0 auto 10px;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
      object-fit: contain;
    }

    .page-8k8-com-login-password__payment-name {
      font-weight: bold;
      color: var(--primary-color);
    }

    .page-8k8-com-login-password__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 30px auto;
      background-color: var(--background-dark);
      border-radius: var(--border-radius);
    }

    .page-8k8-com-login-password__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* For list items */
    }

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

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

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: var(--accent-color);
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.8em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      color: var(--primary-color);
    }

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

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjusted padding for answer */
      color: var(--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;
      font-size: 1em;
    }

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

    .page-8k8-com-login-password__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--primary-color);
      border-radius: var(--border-radius);
      max-width: 1200px;
      margin: 30px auto;
    }

    .page-8k8-com-login-password__cta-title {
      font-size: 2.8em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

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

    /* Floating Login/Register Buttons */
    .page-8k8-com-login-password__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-com-login-password__floating-button {
      padding: 12px 25px;
      background-color: var(--accent-color);
      color: var(--background-dark);
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-decoration: none; /* Ensure it looks like a button */
      text-align: center;
    }

    .page-8k8-com-login-password__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-login-password__hero-section {
        padding-top: calc(var(--header-offset, 122px) + 10px); /* Adjust for header offset */
        min-height: 350px;
      }
      .page-8k8-com-login-password__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-login-password__section-title {
        font-size: 2em;
      }
      .page-8k8-com-login-password__section {
        padding: 40px 15px;
        margin-top: 20px;
      }
      .page-8k8-com-login-password__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-com-login-password__feature-item,
      .page-8k8-com-login-password__payment-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;
      }
      .page-8k8-com-login-password__faq-section {
        padding: 40px 15px;
        margin-top: 20px;
      }
      .page-8k8-com-login-password__faq-answer {
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-com-login-password__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-8k8-com-login-password__payment-logo {
        min-width: 150px;
        min-height: 150px; /* Adjusted for mobile to maintain aspect if needed, but still >=200px from placeholder */
      }
      .page-8k8-com-login-password__cta-title {
        font-size: 2em;
      }
      .page-8k8-com-login-password__cta-description {
        font-size: 1.1em;
      }
      .page-8k8-com-login-password__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-8k8-com-login-password__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      /* Ensure image responsiveness */
      .page-8k8-com-login-password__image,
      .page-8k8-com-login-password__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-password__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-login-password__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login-password__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-8k8-com-login-password__payment-logo {
        min-width: 120px;
        min-height: 120px;
      }
      .page-8k8-com-login-password__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__cta-description {
        font-size: 1em;
      }
    }
  