
    /* Page-specific CSS for 8k8 VIP Login & Register */
    .page-8k8-vip-login-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Fallback for body padding-top if shared.css doesn't provide it.
       Only uncomment if shared.css does not set body { padding-top: var(--header-offset); } */
    /* .page-8k8-vip-login-register {
        padding-top: var(--header-offset, 122px);
    } */

    .page-8k8-vip-login-register__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Example brand colors */
      color: #fff;
      padding: 10px 20px 80px 20px; /* 10px top padding as per requirement */
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .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: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffd700; /* Gold for emphasis */
    }

    .page-8k8-vip-login-register__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #fff;
    }

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

    .page-8k8-vip-login-register__cta-button {
      background-color: #ffd700; /* Gold */
      color: #1a2a6c; /* Dark blue */
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-vip-login-register__cta-button:hover {
      background-color: #ffc107; /* Slightly darker gold */
      transform: translateY(-3px);
    }

    .page-8k8-vip-login-register__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-vip-login-register__section--dark {
      background-color: #2c3e50; /* Darker background for contrast */
      color: #ecf0f1;
    }

    .page-8k8-vip-login-register__section-title {
      font-size: 2.2em;
      color: #1a2a6c; /* Dark blue */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-vip-login-register__section--dark .page-8k8-vip-login-register__section-title {
      color: #ffd700; /* Gold */
    }

    .page-8k8-vip-login-register__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffd700; /* Gold */
      border-radius: 2px;
    }

    .page-8k8-vip-login-register__section--dark .page-8k8-vip-login-register__section-title::after {
      background-color: #fff;
    }

    .page-8k8-vip-login-register__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-vip-login-register__card {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-vip-login-register__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-vip-login-register__card-icon {
      width: 200px; /* Minimum 200x200 */
      height: 200px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .page-8k8-vip-login-register__card-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-vip-login-register__card-description {
      color: #555;
    }

    .page-8k8-vip-login-register__how-to-steps {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-8k8-vip-login-register__step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-vip-login-register__step-number {
      background-color: #1a2a6c;
      color: #ffd700;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-8k8-vip-login-register__step-content h3 {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-vip-login-register__step-content p {
      color: #555;
    }

    .page-8k8-vip-login-register__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-vip-login-register__promo-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .page-8k8-vip-login-register__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-vip-login-register__promo-content {
      padding: 25px;
      flex-grow: 1;
    }

    .page-8k8-vip-login-register__promo-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-top: 0;
      margin-bottom: 15px;
    }

    .page-8k8-vip-login-register__promo-description {
      color: #555;
      margin-bottom: 20px;
    }

    .page-8k8-vip-login-register__promo-button {
      display: inline-block;
      background-color: #fdbb2d; /* Orange/Yellow */
      color: #1a2a6c;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-vip-login-register__promo-button:hover {
      background-color: #e6a724;
    }

    .page-8k8-vip-login-register__payment-methods {
      text-align: center;
    }

    .page-8k8-vip-login-register__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-vip-login-register__payment-item {
      background-color: #fefefe;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: #1a2a6c;
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 150px;
      justify-content: center;
    }

    .page-8k8-vip-login-register__payment-icon {
      width: 200px; /* Minimum 200x200 */
      height: 200px;
      object-fit: contain;
    }

    .page-8k8-vip-login-register__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-8k8-vip-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      color: #1a2a6c;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-vip-login-register__faq-question h3 {
      margin: 0;
      color: #1a2a6c;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-vip-login-register__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease; /* Keep transition for smooth visual feedback */
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: #fdbb2d;
    }

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

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

    /* Floating Login/Register Buttons */
    .page-8k8-vip-login-register__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-vip-login-register__floating-button {
      background-color: #ffd700; /* Gold */
      color: #1a2a6c; /* Dark blue */
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-8k8-vip-login-register__floating-button--login {
      background-color: #1a2a6c; /* Dark blue */
      color: #ffd700; /* Gold */
    }

    .page-8k8-vip-login-register__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-vip-login-register__floating-button--login:hover {
      background-color: #2c3e50; /* Slightly darker blue */
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-vip-login-register__hero-section {
        padding: 10px 15px 60px 15px;
        min-height: 350px;
      }

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

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

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

      .page-8k8-vip-login-register__cta-button {
        width: 80%;
        margin: 0 auto;
      }

      .page-8k8-vip-login-register__section {
        padding: 40px 15px;
      }

      .page-8k8-vip-login-register__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-vip-login-register__grid,
      .page-8k8-vip-login-register__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-vip-login-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-8k8-vip-login-register__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-vip-login-register__payment-grid {
        gap: 15px;
        padding: 0 !important; /* Ensure no extra padding on mobile */
      }

      .page-8k8-vip-login-register__payment-item {
        min-width: unset;
        width: 100%;
      }

      .page-8k8-vip-login-register__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-8k8-vip-login-register__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-vip-login-register__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-vip-login-register__faq-item.active .page-8k8-vip-login-register__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-vip-login-register__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-8k8-vip-login-register__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        width: 120px;
      }

      /* List item responsive requirements */
      .page-8k8-vip-login-register__grid > *,
      .page-8k8-vip-login-register__how-to-steps > *,
      .page-8k8-vip-login-register__promo-grid > *,
      .page-8k8-vip-login-register__payment-grid > *,
      .page-8k8-vip-login-register__faq-container > * {
          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;
      }

      .page-8k8-vip-login-register__step-content p,
      .page-8k8-vip-login-register__promo-description,
      .page-8k8-vip-login-register__card-description,
      .page-8k8-vip-login-register__faq-answer p {
          word-break: break-word !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__cta-button {
        width: 90%;
      }
      .page-8k8-vip-login-register__section-title {
        font-size: 1.6em;
      }
    }

    /* Image responsive styles */
    .page-8k8-vip-login-register img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-8k8-vip-login-register__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-8k8-vip-login-register img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-vip-login-register__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

  