
    :root {
      --primary-color: #f7b32b; /* Gold/Orange accent */
      --secondary-color: #333; /* Dark gray for text */
      --background-dark: #1a1a1a; /* Dark background */
      --background-light: #2c2c2c; /* Slightly lighter dark background */
      --text-light: #f0f0f0; /* Light text for dark backgrounds */
      --text-dark: #333; /* Dark text for light backgrounds (not used much here) */
      --border-color: #444;
      --spacing-unit: 1rem;
    }

    .page-8k8-vip {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
    }

    .page-8k8-vip__section {
      padding: calc(2 * var(--spacing-unit)) var(--spacing-unit);
      margin-bottom: var(--spacing-unit);
      background-color: var(--background-light);
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-vip__section--dark {
      background-color: var(--background-dark);
    }

    .page-8k8-vip__hero-section {
      position: relative;
      text-align: center;
      color: var(--text-light);
      padding: 4rem var(--spacing-unit);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-vip__hero-image {
      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.5rem;
      color: var(--primary-color);
      margin-bottom: var(--spacing-unit);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-vip__hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: var(--text-light);
    }

    .page-8k8-vip__button {
      display: inline-block;
      padding: 1rem 2rem;
      background-color: var(--primary-color);
      color: var(--background-dark);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1rem;
    }

    .page-8k8-vip__button:hover {
      background-color: #e0a227; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-8k8-vip__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-unit);
    }

    .page-8k8-vip__heading {
      font-size: 2.5rem;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 2rem;
      padding-top: var(--spacing-unit);
    }

    .page-8k8-vip__subheading {
      font-size: 1.8rem;
      color: var(--text-light);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .page-8k8-vip__text-block {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      text-align: justify;
    }

    .page-8k8-vip__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-8k8-vip__feature-card {
      background-color: var(--background-dark);
      padding: 1.5rem;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-vip__feature-icon {
      width: 250px; /* Minimum 200px */
      height: 180px; /* Minimum 200px */
      object-fit: cover;
      margin-bottom: 1rem;
      border-radius: 4px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-vip__feature-title {
      font-size: 1.3rem;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    .page-8k8-vip__feature-description {
      font-size: 0.95rem;
      color: var(--text-light);
    }

    .page-8k8-vip__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-8k8-vip__provider-logo {
      width: 200px; /* Minimum 200px */
      height: 100px; /* Minimum 200px */
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-vip__provider-logo:hover {
      filter: grayscale(0%);
    }

    .page-8k8-vip__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .page-8k8-vip__payment-icon {
      width: 200px; /* Minimum 200px */
      height: 100px; /* Minimum 200px */
      object-fit: contain;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      padding: 0.5rem;
      background-color: #222;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-vip__faq-list {
      margin-top: 2rem;
    }

    .page-8k8-vip__faq-item {
      background-color: var(--background-dark);
      margin-bottom: 1rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      background-color: var(--background-light);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-vip__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-8k8-vip__faq-question h3 {
      margin: 0;
      font-size: 1.2rem;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-vip__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 1.5rem;
      background-color: var(--background-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--text-light);
    }

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

    .page-8k8-vip__faq-item.active .page-8k8-vip__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    @media (max-width: 768px) {
      .page-8k8-vip__hero-title {
        font-size: 2.5rem;
      }

      .page-8k8-vip__hero-subtitle {
        font-size: 1.2rem;
      }

      .page-8k8-vip__heading {
        font-size: 2rem;
      }

      .page-8k8-vip__subheading {
        font-size: 1.5rem;
      }

      .page-8k8-vip__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-vip__section {
        padding: 1.5rem var(--spacing-unit);
      }

      .page-8k8-vip__feature-icon,
      .page-8k8-vip__provider-logo,
      .page-8k8-vip__payment-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-vip__faq-question {
        padding: 0.8rem 1rem;
      }

      .page-8k8-vip__faq-question h3 {
        font-size: 1.1rem;
      }

      .page-8k8-vip__faq-answer {
        padding: 0 1rem;
      }

      .page-8k8-vip__faq-item.active .page-8k8-vip__faq-answer {
        padding: 1rem !important;
      }
    }

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

      .page-8k8-vip__hero-subtitle {
        font-size: 1rem;
      }

      .page-8k8-vip__heading {
        font-size: 1.8rem;
      }

      .page-8k8-vip__button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
      }
    }
  