
    /* Global styles for the page-8k8-vip-login scope */
    .page-8k8-vip-login {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset if not provided by shared.css */
    }

    /* Section styling */
    .page-8k8-vip-login__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-vip-login__section--dark {
      background-color: #0f0f1d;
    }

    .page-8k8-vip-login__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-vip-login__section-subtitle {
      font-size: 1.2em;
      color: #a0a0a0;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-8k8-vip-login__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
      padding: 10px 20px 60px 20px; /* Decorative padding-top, main header offset is handled by body padding-top */
      background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
    }

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

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

    .page-8k8-vip-login__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-vip-login__hero-description {
      font-size: 1.3em;
      color: #f0f0f0;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip-login__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for action */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-vip-login__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-3px);
    }

    .page-8k8-vip-login__cta-button--secondary {
      background-color: #ffcc00;
      color: #1a1a2e;
      margin-left: 15px;
    }

    .page-8k8-vip-login__cta-button--secondary:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-8k8-vip-login__floating-buttons {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-vip-login__floating-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 12px 20px;
      border-radius: 25px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      min-width: 100px;
    }

    .page-8k8-vip-login__floating-button:hover {
      background-color: #e6b800;
      transform: scale(1.05);
    }

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

    .page-8k8-vip-login__benefit-item {
      background-color: #2a2a44;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-8k8-vip-login__benefit-item:hover {
      transform: translateY(-10px);
    }

    .page-8k8-vip-login__benefit-icon {
      width: 200px; /* Minimum size requirement */
      height: 200px;
      margin-bottom: 15px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip-login__benefit-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-vip-login__benefit-description {
      color: #c0c0c0;
    }

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

    .page-8k8-vip-login__game-card {
      background-color: #2a2a44;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

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

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

    .page-8k8-vip-login__game-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-vip-login__game-provider {
      font-size: 0.9em;
      color: #a0a0a0;
      margin-bottom: 15px;
    }

    .page-8k8-vip-login__game-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    /* Promotions Section (reusing card style) */
    .page-8k8-vip-login__promo-card {
      background-color: #2a2a44;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      margin-bottom: 25px;
      text-align: left;
    }

    .page-8k8-vip-login__promo-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-vip-login__promo-description {
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    /* How It Works / Payment Section */
    .page-8k8-vip-login__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-vip-login__step-item {
      background-color: #2a2a44;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      max-width: 350px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-vip-login__step-number {
      font-size: 2em;
      color: #ffcc00;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-8k8-vip-login__step-title {
      font-size: 1.3em;
      color: #f0f0f0;
      margin-bottom: 10px;
    }

    .page-8k8-vip-login__step-description {
      color: #c0c0c0;
    }

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

    .page-8k8-vip-login__payment-logo {
      width: 200px; /* Minimum size requirement */
      height: 100px; /* Minimum size requirement */
      object-fit: contain;
      background-color: #3a3a5e;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    /* FAQ Section */
    .page-8k8-vip-login__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-8k8-vip-login__faq-item {
      background-color: #2a2a44;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-vip-login__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: #ffcc00; /* Ensure H3 color contrast */
    }

    .page-8k8-vip-login__faq-question:hover {
      background-color: #4a4a6e;
    }

    .page-8k8-vip-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      color: #ffcc00; /* Ensure toggle color contrast */
    }

    .page-8k8-vip-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: #c0c0c0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-vip-login__hero-title {
        font-size: 3em;
      }
      .page-8k8-vip-login__section-title {
        font-size: 2em;
      }
      .page-8k8-vip-login__steps-list {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-vip-login__step-item {
        flex: 1 1 100%;
        max-width: 400px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-vip-login__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
      }
      .page-8k8-vip-login__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-vip-login__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-vip-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-vip-login__cta-button--secondary {
        margin-left: 10px;
      }
      .page-8k8-vip-login__section {
        padding: 30px 15px;
      }
      .page-8k8-vip-login__section-title {
        font-size: 1.8em;
      }
      .page-8k8-vip-login__benefits-grid,
      .page-8k8-vip-login__game-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-vip-login__floating-buttons {
        right: 10px;
        gap: 10px;
      }
      .page-8k8-vip-login__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: 80px;
      }
      .page-8k8-vip-login__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-8k8-vip-login__faq-answer {
        padding: 0 10px;
      }
      .page-8k8-vip-login__faq-item.active .page-8k8-vip-login__faq-answer {
        padding: 15px 10px !important;
      }

      /* List items responsive */
      .page-8k8-vip-login__benefits-grid .page-8k8-vip-login__benefit-item,
      .page-8k8-vip-login__steps-list .page-8k8-vip-login__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to ensure space */
        padding-right: 15px !important; /* Adjust padding to ensure space */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-vip-login__benefits-grid,
      .page-8k8-vip-login__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsive */
      .page-8k8-vip-login__game-image,
      .page-8k8-vip-login__benefit-icon,
      .page-8k8-vip-login__payment-logo,
      .page-8k8-vip-login__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-vip-login__game-card,
      .page-8k8-vip-login__benefit-item,
      .page-8k8-vip-login__payment-methods,
      .page-8k8-vip-login__hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-vip-login__hero-title {
        font-size: 2em;
      }
      .page-8k8-vip-login__hero-description {
        font-size: 1em;
      }
      .page-8k8-vip-login__cta-button {
        display: block;
        margin: 10px auto;
        width: calc(100% - 40px);
      }
      .page-8k8-vip-login__cta-button--secondary {
        margin-left: auto;
      }
      .page-8k8-vip-login__floating-buttons {
        top: auto;
        bottom: 20px;
        right: 10px;
        transform: none;
        flex-direction: row;
        width: calc(100% - 40px);
        justify-content: center;
      }
      .page-8k8-vip-login__floating-button {
        flex: 1;
        max-width: 150px;
      }
    }
  