
    :root {
      --primary-color: #e6b800; /* Gold/Yellow for 8K8 branding */
      --secondary-color: #333; /* Dark grey for text */
      --background-dark: #1a1a1a; /* Dark background for casino feel */
      --background-light: #2c2c2c;
      --text-color-light: #f0f0f0;
      --text-color-dark: #333;
      --border-color: #444;
      --button-hover: #ffcc00;
    }

    .page-8k8-login {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, header offset handled by body */
    }

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

    /* Hero Section */
    .page-8k8-login__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-8k8-login__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.5); /* Dim image to ensure text contrast */
      max-width: 100%;
      box-sizing: border-box;
    }

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

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

    .page-8k8-login__hero-description {
      font-size: 1.3em;
      color: var(--text-color-light);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-login__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 15px 40px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-login__cta-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-login__section {
      background-color: var(--background-light);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-login__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login__section-description {
      font-size: 1.1em;
      color: var(--text-color-light);
      text-align: center;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-login__feature-item {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-login__feature-icon {
      max-width: 250px; /* Minimum 200px */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-8k8-login__feature-description {
      font-size: 1em;
      color: var(--text-color-light);
    }

    /* How to Login Section */
    .page-8k8-login__login-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-login__step-item {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-8k8-login__step-number {
      background-color: var(--primary-color);
      color: var(--background-dark);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-login__step-text {
      font-size: 1.1em;
      color: var(--text-color-light);
    }

    /* Game Showcase Section */
    .page-8k8-login__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-login__game-card {
      background-color: var(--background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-login__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

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

    .page-8k8-login__game-content {
      padding: 20px;
      text-align: center;
    }

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

    .page-8k8-login__game-description {
      font-size: 0.95em;
      color: var(--text-color-light);
    }

    /* Promotions Section */
    .page-8k8-login__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-login__promo-card {
      background-color: var(--background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-login__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-login__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-login__promo-content {
      padding: 20px;
    }

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

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

    /* FAQ Section */
    .page-8k8-login__faq-section {
      background-color: var(--background-light);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-login__faq-item {
      background-color: var(--background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-login__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-8k8-login__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: var(--primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-login__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-8k8-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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(--text-color-light);
      font-size: 1em;
    }

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

    .page-8k8-login__faq-answer p {
        margin-bottom: 1em;
    }

    .page-8k8-login__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-login__hero-section {
        padding: 60px 15px;
      }

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

      .page-8k8-login__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-login__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      .page-8k8-login__section {
        padding: 40px 15px;
      }

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

      .page-8k8-login__features-grid,
      .page-8k8-login__login-steps,
      .page-8k8-login__game-grid,
      .page-8k8-login__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-login__feature-item,
      .page-8k8-login__step-item,
      .page-8k8-login__game-card,
      .page-8k8-login__promo-card {
        padding: 20px;
      }

      .page-8k8-login__feature-title,
      .page-8k8-login__step-title,
      .page-8k8-login__game-title,
      .page-8k8-login__promo-title {
        font-size: 1.3em;
      }

      .page-8k8-login__feature-icon,
      .page-8k8-login__game-image,
      .page-8k8-login__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-login__faq-section {
        padding: 40px 15px;
      }

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

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

      .page-8k8-login__faq-toggle {
        font-size: 1.5em;
      }

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

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

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

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