
    :root {
      --page-8k8-slot-login__primary-color: #FFD700; /* Gold */
      --page-8k8-slot-login__secondary-color: #DAA520; /* Goldenrod */
      --page-8k8-slot-login__dark-background: #1a1a1a;
      --page-8k8-slot-login__light-text: #f0f0f0;
      --page-8k8-slot-login__medium-gray: #333;
      --page-8k8-slot-login__button-gradient-start: #FFD700;
      --page-8k8-slot-login__button-gradient-end: #FFA500;
      --page-8k8-slot-login__floating-button-start: #FF4500; /* Orange-Red */
      --page-8k8-slot-login__floating-button-end: #FF8C00; /* Dark Orange */
      --page-8k8-slot-login__promo-button-start: #DAA520; /* Goldenrod */
      --page-8k8-slot-login__promo-button-end: #B8860B; /* Dark Goldenrod */
      --page-8k8-slot-login__border-radius: 8px;
      --page-8k8-slot-login__padding-section: 40px 20px;
      --page-8k8-slot-login__max-width: 1200px;
      --header-offset: 122px; /* Default value, assumed from shared.css */
    }

    .page-8k8-slot-login {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-slot-login__light-text);
      background-color: var(--page-8k8-slot-login__dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding-top is not set by shared.css */
    }

    .page-8k8-slot-login__container {
      max-width: var(--page-8k8-slot-login__max-width);
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-8k8-slot-login__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: #000;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body already handles main offset */
    }

    .page-8k8-slot-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6;
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-8k8-slot-login__hero-content {
      position: relative;
      z-index: 2;
      color: var(--page-8k8-slot-login__light-text);
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: var(--page-8k8-slot-login__border-radius);
      max-width: 800px;
      margin: 0 15px;
    }

    .page-8k8-slot-login__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-slot-login__primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-slot-login__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 25px;
      color: var(--page-8k8-slot-login__light-text);
    }

    .page-8k8-slot-login__button {
      display: inline-block;
      padding: 12px 30px;
      background: linear-gradient(to right, var(--page-8k8-slot-login__button-gradient-start), var(--page-8k8-slot-login__button-gradient-end));
      color: #000; /* Black text for contrast */
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-slot-login__button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot-login__section {
      padding: var(--page-8k8-slot-login__padding-section);
      text-align: center;
      background-color: var(--page-8k8-slot-login__dark-background);
    }

    .page-8k8-slot-login__section--alt {
      background-color: var(--page-8k8-slot-login__medium-gray);
    }

    .page-8k8-slot-login__section-title {
      font-size: 2.2em;
      color: var(--page-8k8-slot-login__primary-color);
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-slot-login__section-subtitle {
      font-size: 1.2em;
      color: var(--page-8k8-slot-login__light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-slot-login__step-card {
      background-color: #222;
      padding: 30px;
      border-radius: var(--page-8k8-slot-login__border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease;
      border-top: 5px solid var(--page-8k8-slot-login__primary-color);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-slot-login__step-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-slot-login__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-slot-login__primary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-slot-login__step-title {
      font-size: 1.5em;
      color: var(--page-8k8-slot-login__secondary-color);
      margin-bottom: 10px;
    }

    .page-8k8-slot-login__step-description {
      font-size: 1em;
      color: var(--page-8k8-slot-login__light-text);
    }

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

    .page-8k8-slot-login__game-card {
      background-color: #222;
      border-radius: var(--page-8k8-slot-login__border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-slot-login__game-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-slot-login__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-8k8-slot-login__game-info {
      padding: 20px;
    }

    .page-8k8-slot-login__game-title {
      font-size: 1.3em;
      color: var(--page-8k8-slot-login__primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-slot-login__game-provider {
      font-size: 0.9em;
      color: var(--page-8k8-slot-login__light-text);
      opacity: 0.8;
    }

    .page-8k8-slot-login__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-slot-login__floating-button {
      padding: 10px 20px;
      background: linear-gradient(to right, var(--page-8k8-slot-login__floating-button-start), var(--page-8k8-slot-login__floating-button-end));
      color: white;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      min-width: 120px;
    }

    .page-8k8-slot-login__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot-login__promo-card {
      background-color: #222;
      padding: 30px;
      border-radius: var(--page-8k8-slot-login__border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      margin-bottom: 20px;
      border-left: 5px solid var(--page-8k8-slot-login__secondary-color);
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-slot-login__promo-title {
      font-size: 1.8em;
      color: var(--page-8k8-slot-login__primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-slot-login__promo-description {
      font-size: 1em;
      color: var(--page-8k8-slot-login__light-text);
      margin-bottom: 15px;
    }

    .page-8k8-slot-login__promo-cta {
      display: inline-block;
      padding: 10px 25px;
      background: linear-gradient(to right, var(--page-8k8-slot-login__promo-button-start), var(--page-8k8-slot-login__promo-button-end));
      color: #000;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 0.95em;
    }

    .page-8k8-slot-login__promo-cta:hover {
      transform: translateY(-2px);
    }

    .page-8k8-slot-login__faq-section {
      padding: var(--page-8k8-slot-login__padding-section);
      background-color: var(--page-8k8-slot-login__medium-gray);
      text-align: center;
    }

    .page-8k8-slot-login__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
      box-sizing: border-box; /* Ensure padding/border included in width */
      width: 100%; /* Ensure it takes full width of its container */
    }

    .page-8k8-slot-login__faq-item {
      background-color: #222;
      margin-bottom: 15px;
      border-radius: var(--page-8k8-slot-login__border-radius);
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-slot-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
    }

    .page-8k8-slot-login__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-slot-login__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-slot-login__light-text);
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-8k8-slot-login__faq-toggle {
      font-size: 1.5em;
      color: var(--page-8k8-slot-login__primary-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent div */
    }

    .page-8k8-slot-login__faq-item.active .page-8k8-slot-login__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-slot-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-8k8-slot-login__light-text);
      background-color: #222;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-slot-login__hero-section {
        height: 50vh;
      }

      .page-8k8-slot-login__hero-title {
        font-size: 2em;
      }

      .page-8k8-slot-login__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-slot-login__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-8k8-slot-login__section-title {
        font-size: 1.8em;
      }

      .page-8k8-slot-login__section-subtitle {
        font-size: 1em;
      }

      .page-8k8-slot-login__steps-grid,
      .page-8k8-slot-login__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item responsive requirements */
      .page-8k8-slot-login__step-card,
      .page-8k8-slot-login__game-card,
      .page-8k8-slot-login__promo-card,
      .page-8k8-slot-login__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !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-slot-login__step-card,
      .page-8k8-slot-login__game-card,
      .page-8k8-slot-login__promo-card {
        padding: 20px;
      }

      .page-8k8-slot-login__game-image {
        height: 180px;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-8k8-slot-login__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot-login__floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 10px;
      }

      .page-8k8-slot-login__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
        min-width: 100px;
      }

      .page-8k8-slot-login__faq-list {
        padding: 0 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-slot-login__faq-question {
        padding: 15px;
      }

      .page-8k8-slot-login__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-slot-login__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot-login__hero-title {
        font-size: 1.6em;
      }

      .page-8k8-slot-login__hero-subtitle {
        font-size: 0.9em;
      }

      .page-8k8-slot-login__section-title {
        font-size: 1.5em;
      }
    }
  