
    :root {
      --primary-color: #FFD700; /* Gold/Yellow, often associated with luxury/casinos */
      --secondary-color: #2E8B57; /* Sea Green, for fresh/trustworthy feel */
      --accent-color: #DC143C; /* Crimson, for promotions/alerts */
      --dark-background: #1a1a1a;
      --light-text: #ffffff;
      --dark-text: #333333;
      --border-color: #444444;
      --button-hover-bg: #e6c200;
      --button-hover-text: #1a1a1a;
      --padding-section: 60px 20px;
      --padding-item: 20px;
      --border-radius: 8px;
    }

    /* Base styles for the page */
    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
    }

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

    .page-8k8-login-account__section {
      padding: var(--padding-section);
      text-align: center;
    }

    .page-8k8-login-account__section--light-bg {
      background-color: #222222;
      color: var(--light-text);
    }

    .page-8k8-login-account__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-login-account__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-login-account__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,login,casino,8k8]');
      background-size: cover;
      background-position: center;
      padding: 10px 20px 100px; /* Adjusted padding-top as per instructions */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 70vh;
      text-align: center;
      position: relative;
    }

    .page-8k8-login-account__hero-content {
      max-width: 900px;
      margin-top: -50px; /* Adjust if header placeholder creates too much space */
    }

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

    .page-8k8-login-account__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login-account__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

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

    .page-8k8-login-account__button:hover {
      background-color: var(--button-hover-bg);
      color: var(--button-hover-text);
    }

    .page-8k8-login-account__button--secondary {
      background-color: var(--secondary-color);
      color: var(--light-text);
    }

    .page-8k8-login-account__button--secondary:hover {
      background-color: #256d43;
      color: var(--light-text);
    }

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

    .page-8k8-login-account__feature-card {
      background-color: #2a2a2a;
      padding: var(--padding-item);
      border-radius: var(--border-radius);
      text-align: left;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-login-account__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-login-account__feature-icon {
      width: 200px; /* Minimum 200x200px as per requirements */
      height: 200px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

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

    .page-8k8-login-account__feature-description {
      color: #cccccc;
    }

    /* How-to Guide Section */
    .page-8k8-login-account__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-login-account__step-item {
      background-color: #2a2a2a;
      padding: var(--padding-item);
      border-radius: var(--border-radius);
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-8k8-login-account__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--primary-color);
      flex-shrink: 0;
    }

    .page-8k8-login-account__step-content {
      flex-grow: 1;
    }

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

    .page-8k8-login-account__step-description {
      color: #cccccc;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

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

    .page-8k8-login-account__promo-card {
      background-color: #2a2a2a;
      border-radius: var(--border-radius);
      overflow: hidden;
      text-align: left;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-login-account__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-login-account__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-8k8-login-account__promo-content {
      padding: var(--padding-item);
    }

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

    .page-8k8-login-account__promo-description {
      color: #cccccc;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-8k8-login-account__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-login-account__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: var(--border-radius);
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

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

    .page-8k8-login-account__faq-question:hover {
      background-color: #333333;
    }

    .page-8k8-login-account__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: inherit;
    }

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

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

    .page-8k8-login-account__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: #cccccc;
      text-align: left;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

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

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-login-account__hero-title {
        font-size: 2.5em;
      }

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

      .page-8k8-login-account__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-login-account__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

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

      .page-8k8-login-account__section-subtitle {
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-8k8-login-account__steps-list,
      .page-8k8-login-account__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-login-account__step-item,
      .page-8k8-login-account__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 15px; /* Adjust padding for smaller screens */
      }

      .page-8k8-login-account__step-description,
      .page-8k8-login-account__promo-description,
      .page-8k8-login-account__feature-description,
      .page-8k8-login-account__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-login-account__promo-image {
        height: 200px; /* Adjust image height for mobile */
      }

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

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

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