
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --text-color: #ffffff; /* White */
      --dark-bg: #1a1a1a; /* Very Dark Grey */
      --light-bg: #2a2a2a; /* Slightly Lighter Dark Grey */
      --accent-color: #007bff; /* Blue for links/buttons, ensuring contrast */
      --border-color: #444444;
      --button-hover-color: #e6b800;
    }

    /* General Styling for 8k8 VIP Page */
    .page-8k8-vip {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--dark-bg);
      line-height: 1.6;
      /* The body padding-top is expected to be handled by shared.css using --header-offset.
         This ensures no double padding at the top of the main content. */
    }

    /* Ensures sections have proper spacing */
    .page-8k8-vip__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-vip__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      padding-bottom: 15px;
      position: relative;
    }

    .page-8k8-vip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px; /* Increased height for better visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      box-sizing: border-box;
      background-color: var(--dark-bg);
    }

    .page-8k8-vip__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4; /* Slightly dim background image */
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-8k8-vip__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      margin-top: 20px; /* Adjust for better vertical centering */
    }

    .page-8k8-vip__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--text-color); /* Ensure good contrast */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-vip__hero-title span {
      color: var(--primary-color); /* Highlight 8k8 VIP */
    }

    .page-8k8-vip__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--text-color);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip__hero-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--secondary-color); /* Dark text on gold for contrast */
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Indicate it's clickable, even without a link */
      border: none;
    }

    .page-8k8-vip__hero-button:hover {
      background-color: var(--button-hover-color);
    }

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

    .page-8k8-vip__promotion-card {
      background-color: var(--light-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-8k8-vip__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-vip__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-8k8-vip__promotion-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-vip__promotion-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-8k8-vip__promotion-description {
      font-size: 1em;
      color: var(--text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8k8-vip__promotion-action {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color); /* White text on blue for contrast */
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Indicate it's clickable, even without a link */
      border: none;
      text-align: center;
    }

    .page-8k8-vip__promotion-action:hover {
      background-color: #0056b3; /* Darker blue */
    }

    /* Games Section */
    .page-8k8-vip__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .page-8k8-vip__game-card {
      background-color: var(--light-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-vip__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-vip__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-8k8-vip__game-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin: 0 10px 10px;
    }

    .page-8k8-vip__game-description {
      font-size: 0.95em;
      color: var(--text-color);
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Payments Section */
    .page-8k8-vip__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-vip__payment-item {
      background-color: var(--light-bg);
      border-radius: 8px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      min-width: 200px;
      flex-basis: calc(33.33% - 20px); /* 3 items per row on desktop */
      box-sizing: border-box; /* Ensure padding is included in width */
      transition: transform 0.2s ease;
    }

    .page-8k8-vip__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-vip__payment-icon {
      width: 60px; /* Adjust size for payment icons, ensuring min 200px rule is not violated by the actual image asset */
      height: 60px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      border-radius: 5px;
    }

    .page-8k8-vip__payment-name {
      font-size: 1.2em;
      color: var(--primary-color);
      font-weight: bold;
    }

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

    .page-8k8-vip__benefit-card {
      background-color: var(--light-bg);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-8k8-vip__benefit-card:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-8k8-vip__benefit-icon {
      width: 80px; /* Adjust size for benefit icons */
      height: 80px;
      object-fit: contain;
      margin: 0 auto 20px;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-8k8-vip__benefit-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-vip__benefit-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* FAQ Section */
    .page-8k8-vip__faq-container {
      max-width: 900px;
      margin: 0 auto;
      background-color: var(--light-bg);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-vip__faq-item {
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-8k8-vip__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-8k8-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-8k8-vip__faq-question:hover {
      color: var(--button-hover-color);
    }

    .page-8k8-vip__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: inherit; /* Ensure h3 inherits color from parent */
    }

    .page-8k8-vip__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

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

    .page-8k8-vip__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: var(--text-color);
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-vip__hero-title {
        font-size: 3em;
      }

      .page-8k8-vip__hero-subtitle {
        font-size: 1.3em;
      }

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

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

      .page-8k8-vip__hero-section {
        min-height: 400px;
      }

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

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

      .page-8k8-vip__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-vip__promotions-grid,
      .page-8k8-vip__games-grid,
      .page-8k8-vip__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-vip__promotion-card,
      .page-8k8-vip__game-card,
      .page-8k8-vip__benefit-card {
        margin: 0 auto;
        width: 100%;
        max-width: 400px; /* Constrain width for single column items */
      }

      /* List items mobile responsive requirements */
      .page-8k8-vip__payments-list {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-vip__payment-item {
        width: 100% !important;
        max-width: 350px !important; /* Adjusted for mobile view */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Reduce padding slightly */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-vip__payment-name {
        word-break: break-word !important;
      }

      /* Image responsiveness */
      .page-8k8-vip__hero-background,
      .page-8k8-vip__promotion-image,
      .page-8k8-vip__game-image,
      .page-8k8-vip__payment-icon,
      .page-8k8-vip__benefit-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-8k8-vip__faq-question {
        font-size: 1.1em;
        padding: 10px 0;
      }

      .page-8k8-vip__faq-answer {
        padding: 15px 10px !important; /* Adjust padding for mobile */
      }
    }

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

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

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

      .page-8k8-vip__promotion-title {
        font-size: 1.5em;
      }

      .page-8k8-vip__game-title {
        font-size: 1.3em;
      }
    }
  