
    /* Base styles for the page */
    .page-8k8-vip {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Space above footer */
    }

    /* Section styling */
    .page-8k8-vip__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-vip__section--dark {
      background-color: #2a003a; /* Dark purple */
      color: #f0f0f0;
    }

    .page-8k8-vip__section--light {
      background-color: #ffffff;
      color: #333;
    }

    .page-8k8-vip__section-title {
      font-size: 2.5em;
      color: #333;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .page-8k8-vip__section--dark .page-8k8-vip__section-title {
      color: #ffcc00; /* Gold for dark background */
    }

    .page-8k8-vip__section-subtitle {
      font-size: 1.5em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
    }

    .page-8k8-vip__section--dark .page-8k8-vip__section-subtitle {
      color: #ccc;
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
      position: relative;
      background-color: #3a0050; /* Deep purple */
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px 20px; /* Small padding-top, relying on body for header offset */
      overflow: hidden;
      box-sizing: border-box;
    }

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

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

    .page-8k8-vip__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold */
      font-weight: 800;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-vip__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #e0e0e0;
    }

    .page-8k8-vip__call-to-action-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #3a0050; /* Deep purple */
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-vip__call-to-action-button:hover {
      background-color: #ffe066;
      transform: translateY(-3px);
    }

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

    .page-8k8-vip__benefit-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-vip__benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-vip__benefit-icon {
      width: 200px; /* Minimum 200px for image */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-8k8-vip__benefit-title {
      font-size: 1.5em;
      color: #3a0050;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-8k8-vip__benefit-description {
      font-size: 1em;
      color: #666;
    }

    /* How to Join Section */
    .page-8k8-vip__steps-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-vip__step-item {
      display: flex;
      align-items: center;
      gap: 25px;
      background-color: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-8k8-vip__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #ffcc00;
      background-color: #3a0050;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .page-8k8-vip__step-content h3 {
      font-size: 1.4em;
      color: #3a0050;
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-vip__step-content p {
      font-size: 1em;
      color: #555;
      margin-bottom: 0;
    }

    /* Exclusive Games Section */
    .page-8k8-vip__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-8k8-vip__provider-card {
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-vip__provider-logo {
      width: 200px; /* Minimum 200px for image */
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-vip__provider-name {
      font-size: 1.1em;
      font-weight: 600;
      color: #3a0050;
    }

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

    .page-8k8-vip__promo-card {
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-vip__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-vip__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-vip__promo-content {
      padding: 25px;
    }

    .page-8k8-vip__promo-title {
      font-size: 1.4em;
      color: #3a0050;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-8k8-vip__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
    }

    .page-8k8-vip__promo-button {
      background-color: #ffcc00;
      color: #3a0050;
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 0.9em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .page-8k8-vip__promo-button:hover {
      background-color: #ffe066;
    }

    /* FAQ Section */
    .page-8k8-vip__faq-container {
      margin-top: 40px;
    }

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

    .page-8k8-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a0050;
      color: #fff;
      font-weight: 600;
      font-size: 1.15em;
      transition: background-color 0.3s ease;
    }

    .page-8k8-vip__faq-question:hover {
      background-color: #4a0060;
    }

    .page-8k8-vip__faq-question h3 {
      margin: 0;
      font-size: 1.15em; /* Ensure h3 matches question text size */
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-8k8-vip__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #ffcc00;
    }

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

    .page-8k8-vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fcfcfc;
      color: #444;
      border-top: 1px solid #eee;
    }

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

    /* General text styles */
    .page-8k8-vip__paragraph {
      margin-bottom: 1em;
      font-size: 1.05em;
      color: #444;
    }

    .page-8k8-vip__section--dark .page-8k8-vip__paragraph {
      color: #ccc;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-vip__section {
        padding: 30px 15px;
      }

      .page-8k8-vip__hero-section {
        padding: 10px 15px 60px 15px;
      }

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

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

      .page-8k8-vip__call-to-action-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-8k8-vip__section-subtitle {
        font-size: 1.2em;
      }

      /* List item responsive styles */
      .page-8k8-vip__benefits-grid,
      .page-8k8-vip__promotions-grid,
      .page-8k8-vip__game-providers-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
      }
      
      .page-8k8-vip__benefit-card,
      .page-8k8-vip__promo-card,
      .page-8k8-vip__provider-card,
      .page-8k8-vip__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

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

      .page-8k8-vip__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-vip__step-content h3 {
        font-size: 1.2em;
      }

      .page-8k8-vip__step-content p {
        font-size: 0.95em;
      }

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

      .page-8k8-vip__faq-question h3 {
        font-size: 1em;
      }

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

      .page-8k8-vip__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-vip__faq-item.active .page-8k8-vip__faq-answer {
        padding: 15px 20px !important;
      }

      /* Images responsive styles */
      .page-8k8-vip__hero-background,
      .page-8k8-vip__benefit-icon,
      .page-8k8-vip__provider-logo,
      .page-8k8-vip__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

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

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

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

      .page-8k8-vip__section-subtitle {
        font-size: 1.1em;
      }
    }

    /* Ensure text wrapping for all text elements */
    .page-8k8-vip p,
    .page-8k8-vip h1,
    .page-8k8-vip h2,
    .page-8k8-vip h3,
    .page-8k8-vip li,
    .page-8k8-vip__benefit-description,
    .page-8k8-vip__step-content p,
    .page-8k8-vip__provider-name,
    .page-8k8-vip__promo-description {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
  