
    /* Base styles for the specific page */
    .page-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset if not set in shared.css */
    }

    /* Hero Section */
    .page-8k8-com-login__hero-section {
      position: relative;
      background-color: #1a1a2e; /* Dark background for contrast */
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      padding-top: 70px; /* Small decorative top padding, main offset handled by body */
    }

    .page-8k8-com-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

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

    .page-8k8-com-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #e0b000; /* Gold accent color */
    }

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

    .page-8k8-com-login__hero-button-wrapper {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-com-login__button {
      background-color: #e0b000;
      color: #1a1a2e;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* For potential external links */
      display: inline-block;
      text-align: center;
      font-weight: bold;
    }

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

    .page-8k8-com-login__secondary-button {
      background-color: transparent;
      color: #e0b000;
      border: 2px solid #e0b000;
    }

    .page-8k8-com-login__secondary-button:hover {
      background-color: #e0b000;
      color: #1a1a2e;
    }

    /* General Section Styling */
    .page-8k8-com-login__section {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-com-login__section-title {
      font-size: 2.5em;
      color: #1a1a2e;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-8k8-com-login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e0b000;
      border-radius: 2px;
    }

    .page-8k8-com-login__section-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Login Steps Section */
    .page-8k8-com-login__login-steps-section {
      background-color: #fff;
    }

    .page-8k8-com-login__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      text-align: left;
    }

    .page-8k8-com-login__step-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

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

    .page-8k8-com-login__step-icon {
      width: 100px; /* Ensure minimum size */
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-8k8-com-login__step-title {
      font-size: 1.5em;
      color: #1a1a2e;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-com-login__step-text {
      color: #666;
      font-size: 1em;
    }

    /* Security Section */
    .page-8k8-com-login__security-section {
      background-color: #e6e6e6;
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-com-login__security-content {
      text-align: center;
      max-width: 800px;
    }

    .page-8k8-com-login__security-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      object-fit: cover;
    }

    /* Game Preview Section */
    .page-8k8-com-login__game-preview-section {
      background-color: #f0f0f0;
    }

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

    .page-8k8-com-login__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-com-login__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-com-login__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com-login__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-com-login__game-title {
      font-size: 1.3em;
      color: #1a1a2e;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-login__game-provider {
      font-size: 0.9em;
      color: #888;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-8k8-com-login__faq-section {
      background-color: #fff;
    }

    .page-8k8-com-login__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-com-login__faq-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e0b000;
      color: #1a1a2e;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login__faq-question:hover {
      background-color: #ffda47;
    }

    .page-8k8-com-login__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-com-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      color: #555;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      border-top: 1px solid #eee;
    }

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

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Call to Action Section */
    .page-8k8-com-login__cta-section {
      background-color: #1a1a2e;
      color: #fff;
      padding: 80px 20px;
    }

    .page-8k8-com-login__cta-title {
      font-size: 2.8em;
      color: #e0b000;
      margin-bottom: 20px;
    }

    .page-8k8-com-login__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #ddd;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-login__section-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login__cta-title {
        font-size: 2.4em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login__hero-section {
        padding: 40px 15px;
        min-height: 350px;
        padding-top: 50px;
      }
      .page-8k8-com-login__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
      }
      .page-8k8-com-login__hero-description {
        font-size: 1.1em;
        margin-bottom: 25px;
      }
      .page-8k8-com-login__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login__hero-button-wrapper {
        flex-direction: column;
        gap: 15px;
        width: 100%;
      }
      .page-8k8-com-login__button,
      .page-8k8-com-login__secondary-button {
        width: 80%;
        max-width: 300px;
      }

      .page-8k8-com-login__section {
        padding: 40px 15px;
      }
      .page-8k8-com-login__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-com-login__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-8k8-com-login__steps-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com-login__step-item {
        padding: 25px;
      }
      .page-8k8-com-login__step-title {
        font-size: 1.3em;
      }
      .page-8k8-com-login__step-text {
        font-size: 0.95em;
      }

      .page-8k8-com-login__security-section {
        flex-direction: column;
        padding: 40px 15px;
      }
      .page-8k8-com-login__security-image {
        max-width: 100%;
      }

      .page-8k8-com-login__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-com-login__game-image {
        height: 180px;
      }
      .page-8k8-com-login__game-title {
        font-size: 1.2em;
      }

      .page-8k8-com-login__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-com-login__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-login__cta-section {
        padding: 60px 15px;
      }
      .page-8k8-com-login__cta-title {
        font-size: 2em;
      }
      .page-8k8-com-login__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-login__button,
      .page-8k8-com-login__secondary-button {
        width: 100%;
        max-width: none;
      }
      .page-8k8-com-login__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__cta-description {
        font-size: 1em;
      }
    }
  