
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #007bff; /* Blue */
      --text-color: #ffffff; /* White */
      --dark-text-color: #1a1a1a; /* Very Dark Grey */
      --background-dark: #0f0f0f; /* Near Black */
      --background-light: #f5f5f5; /* Light Grey */
      --border-color: #444444;
      --button-hover-color: #e6b800;
    }

    .page-8k8-vip-login-register {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-dark);
      padding-bottom: 40px;
    }

    .page-8k8-vip-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-vip-login-register__hero-section {
      background-color: var(--background-dark);
      color: var(--text-color);
      text-align: center;
      padding: 60px 20px 80px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body has main padding-top */
    }

    .page-8k8-vip-login-register__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

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

    .page-8k8-vip-login-register__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

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

    .page-8k8-vip-login-register__introduction-section,
    .page-8k8-vip-login-register__steps-section,
    .page-8k8-vip-login-register__promotions-section,
    .page-8k8-vip-login-register__features-section,
    .page-8k8-vip-login-register__faq-section,
    .page-8k8-vip-login-register__cta-section {
      background-color: var(--background-dark);
      padding: 40px 20px;
      border-bottom: 1px solid var(--border-color);
    }

    .page-8k8-vip-login-register__introduction-section:last-of-type,
    .page-8k8-vip-login-register__steps-section:last-of-type,
    .page-8k8-vip-login-register__promotions-section:last-of-type,
    .page-8k8-vip-login-register__features-section:last-of-type,
    .page-8k8-vip-login-register__faq-section:last-of-type,
    .page-8k8-vip-login-register__cta-section:last-of-type {
        border-bottom: none;
    }

    .page-8k8-vip-login-register__heading {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__subheading {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-top: 30px;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
      max-width: 1000px;
      margin: 30px auto;
    }

    .page-8k8-vip-login-register__step-item {
      background-color: var(--secondary-color);
      border-radius: 10px;
      padding: 30px;
      flex: 1 1 calc(33% - 25px);
      min-width: 280px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-8k8-vip-login-register__step-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-vip-login-register__step-number {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-vip-login-register__step-title {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__step-description {
      font-size: 1em;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip-login-register__promotion-card {
      background-color: var(--secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-8k8-vip-login-register__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-vip-login-register__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure image responsiveness */
      height: auto; /* Maintain aspect ratio */
      box-sizing: border-box;
    }

    .page-8k8-vip-login-register__promotion-content {
      padding: 20px;
      color: #e0e0e0;
    }

    .page-8k8-vip-login-register__promotion-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__promotion-description {
      font-size: 0.95em;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip-login-register__feature-item {
      background-color: var(--secondary-color);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-vip-login-register__feature-image {
      width: 250px;
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; /* Ensure image responsiveness */
      height: auto; /* Maintain aspect ratio */
      box-sizing: border-box;
    }

    .page-8k8-vip-login-register__feature-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__feature-description {
      font-size: 0.95em;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__faq-section {
      background-color: var(--background-dark);
      padding-top: 40px;
      padding-bottom: 60px;
    }

    .page-8k8-vip-login-register__faq-list {
      max-width: 900px;
      margin: 30px auto 0;
      padding: 0;
      list-style: none;
    }

    .page-8k8-vip-login-register__faq-item {
      background-color: var(--secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-vip-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #2a2a2a;
      color: var(--text-color);
      cursor: pointer;
      font-size: 1.15em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-vip-login-register__faq-question:hover {
      background-color: #383838;
    }

    .page-8k8-vip-login-register__faq-question h3 {
      margin: 0;
      color: var(--text-color);
      font-size: 1.15em;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1;
    }

    .page-8k8-vip-login-register__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 from blocking click event */
    }

    .page-8k8-vip-login-register__faq-item.active .page-8k8-vip-login-register__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus visual) */
    }

    .page-8k8-vip-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--secondary-color);
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

    .page-8k8-vip-login-register__cta-section {
      text-align: center;
      padding-top: 60px;
      padding-bottom: 80px;
    }

    .page-8k8-vip-login-register__cta-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-vip-login-register__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: #e0e0e0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-vip-login-register__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-vip-login-register__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-vip-login-register__heading {
        font-size: 2em;
      }
      .page-8k8-vip-login-register__subheading {
        font-size: 1.6em;
      }
      .page-8k8-vip-login-register__step-item {
        flex: 1 1 calc(50% - 25px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-vip-login-register__hero-section {
        padding: 40px 15px 60px;
      }
      .page-8k8-vip-login-register__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-vip-login-register__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-vip-login-register__section {
        padding: 30px 15px;
      }
      .page-8k8-vip-login-register__heading {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-8k8-vip-login-register__paragraph {
        font-size: 1em;
      }
      .page-8k8-vip-login-register__step-item {
        flex: 1 1 100%;
        width: 100% !important; /* Mobile responsiveness */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px 20px;
      }
      .page-8k8-vip-login-register__steps-list,
      .page-8k8-vip-login-register__features-list,
      .page-8k8-vip-login-register__promotions-grid {
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-vip-login-register__feature-item {
        padding: 20px;
      }
      .page-8k8-vip-login-register__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-8k8-vip-login-register__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-vip-login-register__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-vip-login-register__cta-title {
        font-size: 2em;
      }
      .page-8k8-vip-login-register__cta-description {
        font-size: 1em;
      }
      .page-8k8-vip-login-register__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-vip-login-register__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-vip-login-register__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-vip-login-register__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-vip-login-register__heading {
        font-size: 1.6em;
      }
      .page-8k8-vip-login-register__step-title {
        font-size: 1.3em;
      }
      .page-8k8-vip-login-register__promotion-title,
      .page-8k8-vip-login-register__feature-title {
        font-size: 1.2em;
      }
      .page-8k8-vip-login-register__faq-question {
        padding: 12px 15px;
      }
      .page-8k8-vip-login-register__faq-answer {
        padding: 10px 15px !important;
      }
      .page-8k8-vip-login-register__cta-title {
        font-size: 1.8em;
      }
    }
  