
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #1A1A2E; /* Dark Blue */
      --accent-color: #E94560; /* Reddish Pink */
      --text-color: #FFFFFF;
      --dark-text-color: #000000;
      --light-bg-color: #2E2E4A;
      --card-bg-color: #3A3A5E;
      --border-color: #5A5A7E;
      --hover-color: #FFECB3;
      --header-offset: 122px; /* Fallback if shared.css doesn't define */
    }

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

    .page-8k8-17-login__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-8k8-17-login__hero-section {
      position: relative;
      text-align: center;
      padding: 60px 20px 40px;
      overflow: hidden;
      background-color: #000; /* Ensures hero image fills */
      padding-top: 10px; /* Small top padding as body already handles header offset */
    }

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

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

    .page-8k8-17-login__heading-primary {
      font-size: 3em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-17-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--text-color);
    }

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

    .page-8k8-17-login__button:hover {
      background-color: #c93a50; /* Darker accent */
      transform: translateY(-2px);
    }

    .page-8k8-17-login__heading-secondary {
      font-size: 2.2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-17-login__feature-grid,
    .page-8k8-17-login__game-grid,
    .page-8k8-17-login__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-17-login__feature-item,
    .page-8k8-17-login__game-item,
    .page-8k8-17-login__payment-item {
      background-color: var(--card-bg-color);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-17-login__feature-item:hover,
    .page-8k8-17-login__game-item:hover,
    .page-8k8-17-login__payment-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-17-login__feature-icon,
    .page-8k8-17-login__game-image,
    .page-8k8-17-login__payment-logo {
      width: 100%;
      max-width: 250px; /* Adjusted to be >= 200px and allow some flexibility */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    
    .page-8k8-17-login__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-17-login__step-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
    }

    .page-8k8-17-login__step-item {
      background-color: var(--card-bg-color);
      border-left: 5px solid var(--primary-color);
      margin-bottom: 20px;
      padding: 20px 25px 20px 60px;
      position: relative;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-17-login__step-item::before {
      content: counter(step-counter);
      counter-increment: step-counter;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--primary-color);
      color: var(--dark-text-color);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-8k8-17-login__step-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-17-login__login-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      display: block;
      margin: 30px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-17-login__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-8k8-17-login__provider-tag {
      background-color: var(--light-bg-color);
      color: var(--text-color);
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.95em;
      border: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }

    .page-8k8-17-login__provider-tag:hover {
      background-color: var(--border-color);
    }

    .page-8k8-17-login__promo-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      display: block;
      margin: 30px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-17-login__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-17-login__faq-item {
      background-color: var(--card-bg-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-17-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--light-bg-color);
      color: var(--primary-color);
      font-size: 1.15em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-17-login__faq-question:hover {
      background-color: #3f3f6e; /* Slightly lighter than light-bg-color */
    }

    .page-8k8-17-login__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
      color: var(--primary-color);
    }

    .page-8k8-17-login__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
    }

    .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-toggle {
      transform: rotate(45deg); /* Rotates the + to become x or - visual */
    }

    .page-8k8-17-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--card-bg-color);
      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;
    }

    .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-8k8-17-login__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    .page-8k8-17-login__call-to-action {
      text-align: center;
      padding-top: 50px;
      padding-bottom: 60px;
    }

    .page-8k8-17-login__call-to-action-text {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--primary-color);
    }

    .page-8k8-17-login__image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-17-login__heading-primary {
        font-size: 2.5em;
      }
      .page-8k8-17-login__heading-secondary {
        font-size: 1.8em;
      }
      .page-8k8-17-login__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-17-login__section {
        padding: 30px 15px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-17-login__heading-primary {
        font-size: 2em;
      }
      .page-8k8-17-login__heading-secondary {
        font-size: 1.6em;
      }
      .page-8k8-17-login__hero-description {
        font-size: 1em;
      }
      .page-8k8-17-login__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-17-login__feature-grid,
      .page-8k8-17-login__game-grid,
      .page-8k8-17-login__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-17-login__feature-item,
      .page-8k8-17-login__game-item,
      .page-8k8-17-login__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-8k8-17-login__feature-icon,
      .page-8k8-17-login__game-image,
      .page-8k8-17-login__payment-logo {
        max-width: 200px; /* Ensure images are not too wide */
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

      .page-8k8-17-login__step-item::before {
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 1em;
      }

      .page-8k8-17-login__step-title {
        font-size: 1.2em;
      }

      .page-8k8-17-login__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

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

      .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-answer {
        padding: 15px 10px !important;
      }

      .page-8k8-17-login__call-to-action-text {
        font-size: 1.2em;
      }
      .page-8k8-17-login__providers-list {
        gap: 10px;
      }
      .page-8k8-17-login__provider-tag {
        padding: 6px 12px;
        font-size: 0.85em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17-login__heading-primary {
        font-size: 1.8em;
      }
      .page-8k8-17-login__heading-secondary {
        font-size: 1.4em;
      }
      .page-8k8-17-login__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-17-login__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-8k8-17-login__section {
        padding: 25px 10px;
      }
      .page-8k8-17-login__feature-title {
        font-size: 1.3em;
      }
      .page-8k8-17-login__step-title {
        font-size: 1.1em;
      }
      .page-8k8-17-login__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-17-login__faq-toggle {
        font-size: 1.3em;
      }
    }
  