
    :root {
      --primary-color: #FFD700; /* Gold/Yellow for highlights */
      --secondary-color: #333333; /* Dark grey for text */
      --background-dark: #1a1a1a; /* Dark background */
      --background-light: #2c2c2c; /* Slightly lighter background */
      --text-color-light: #ffffff; /* White text */
      --text-color-dark: #cccccc; /* Light grey text */
      --border-color: #444444; /* Grey border */
      --button-hover-color: #e6c200; /* Darker gold on hover */
      --header-offset: 122px; /* Default offset, overridden by shared.css */
    }

    .page-8k8-17-login {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* General Section Styling */
    .page-8k8-17-login__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__section {
        padding: 30px 15px;
      }
    }

    .page-8k8-17-login__heading {
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__heading {
        font-size: 2em;
      }
    }

    .page-8k8-17-login__subheading {
      color: var(--text-color-light);
      margin-bottom: 15px;
      font-size: 1.8em;
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__subheading {
        font-size: 1.5em;
      }
    }

    .page-8k8-17-login__paragraph {
      color: var(--text-color-dark);
      margin-bottom: 20px;
      font-size: 1.1em;
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__paragraph {
        font-size: 1em;
      }
    }

    /* Hero Section */
    .page-8k8-17-login__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--text-color-light);
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, main offset from body */
      background-color: var(--background-dark); /* Fallback */
    }

    .page-8k8-17-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }
    .page-8k8-17-login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-8k8-17-login__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__hero-title {
        font-size: 2.5em;
      }
    }
    @media (max-width: 480px) {
      .page-8k8-17-login__hero-title {
        font-size: 2em;
      }
    }

    .page-8k8-17-login__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-color-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__hero-description {
        font-size: 1.1em;
      }
    }
    @media (max-width: 480px) {
      .page-8k8-17-login__hero-description {
        font-size: 1em;
      }
    }

    .page-8k8-17-login__button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
    }
    .page-8k8-17-login__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }

    /* Features Section */
    .page-8k8-17-login__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .page-8k8-17-login__feature-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }
    .page-8k8-17-login__feature-card:hover {
      transform: translateY(-5px);
    }
    .page-8k8-17-login__feature-icon {
      max-width: 100px; /* Min size 200x200, so this is a container max-width */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }
    .page-8k8-17-login__feature-icon img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .page-8k8-17-login__feature-title {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }
    .page-8k8-17-login__feature-description {
      color: var(--text-color-dark);
      font-size: 1em;
    }

    /* Games Section */
    .page-8k8-17-login__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-8k8-17-login__provider-item {
      background-color: var(--background-light);
      padding: 15px 25px;
      border-radius: 8px;
      color: var(--text-color-light);
      font-weight: bold;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }
    .page-8k8-17-login__provider-item:hover {
      background-color: var(--border-color);
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__provider-item {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 15px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
      }
    }

    /* Payments Section */
    .page-8k8-17-login__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-8k8-17-login__payment-card {
      background-color: var(--background-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 150px; /* Fixed width for payment cards */
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }
    .page-8k8-17-login__payment-card:hover {
      transform: translateY(-3px);
    }
    .page-8k8-17-login__payment-icon {
      max-width: 120px; /* Min size 200x200, so this is a container max-width */
      height: auto;
      margin-bottom: 10px;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }
    .page-8k8-17-login__payment-icon img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .page-8k8-17-login__payment-name {
      color: var(--text-color-light);
      font-weight: bold;
      font-size: 1em;
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__payment-card {
        width: 45%; /* Two cards per row on mobile */
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        padding: 15px;
      }
      .page-8k8-17-login__payment-methods {
        gap: 10px;
      }
    }
    @media (max-width: 480px) {
      .page-8k8-17-login__payment-card {
        width: 100%; /* One card per row on very small screens */
      }
    }


    /* CTA Section */
    .page-8k8-17-login__cta-section {
      background-color: var(--primary-color);
      padding: 50px 20px;
      color: var(--secondary-color);
      text-align: center;
    }
    .page-8k8-17-login__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__cta-title {
        font-size: 2em;
      }
    }
    .page-8k8-17-login__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--secondary-color);
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__cta-description {
        font-size: 1em;
      }
    }
    .page-8k8-17-login__cta-button {
      background-color: var(--background-dark);
      color: var(--primary-color);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
    }
    .page-8k8-17-login__cta-button:hover {
      background-color: var(--border-color);
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-8k8-17-login__faq-section {
      background-color: var(--background-dark);
      padding: 60px 20px;
    }
    .page-8k8-17-login__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
      list-style: none; /* Remove default list styling */
      padding: 0; /* Remove default padding */
    }
    .page-8k8-17-login__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Ensure padding/border included in width */
    }
    @media (max-width: 768px) {
      .page-8k8-17-login__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if needed, but usually 0 for item */
      }
      .page-8k8-17-login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    .page-8k8-17-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--background-light);
      color: var(--text-color-light);
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-8k8-17-login__faq-question:hover {
      background-color: #3a3a3a; /* Slightly lighter hover */
    }
    .page-8k8-17-login__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1; /* Allow h3 to take available space */
      text-align: left; /* Align text left */
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
    .page-8k8-17-login__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      color: var(--primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }
    .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-toggle {
      transform: rotate(45deg); /* Rotates the + to an X or - */
    }

    .page-8k8-17-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--text-color-dark);
      background-color: #222222;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 1em;
      text-align: left;
      opacity: 0;
    }
    .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-8k8-17-login__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-8k8-17-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-17-login__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-17-login__faq-answer {
        padding: 0 15px;
        font-size: 0.95em;
      }
      .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-answer {
        padding: 15px 15px !important;
      }
    }
  