
    /* 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-top: 10px; /* Decorative top spacing, assuming body handles main header offset */
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
      position: relative;
      background-color: #0d1a26; /* Dark background for contrast */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px; /* Minimum height for visual impact */
    }

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

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

    .page-8k8-vip__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #ffcc00; /* Gold accent */
      line-height: 1.2;
    }

    .page-8k8-vip__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8-vip__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold button */
      color: #0d1a26; /* Dark text on gold */
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-8k8-vip__cta-button:hover {
      background-color: #e6b800; /* Darker gold on hover */
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-8k8-vip__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-vip__section:nth-of-type(even) {
      background-color: #f0f0f0;
    }

    .page-8k8-vip__section-title {
      font-size: 2.5em;
      color: #0d1a26;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

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

    .page-8k8-vip__benefit-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%; /* Ensure cards are same height */
      box-sizing: border-box;
    }

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

    .page-8k8-vip__benefit-icon {
      width: 200px; /* Min 200px requirement */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-vip__benefit-title {
      font-size: 1.5em;
      color: #0d1a26;
      margin-bottom: 15px;
      font-weight: 600;
    }

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

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

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

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

    .page-8k8-vip__game-image {
      width: 100%;
      height: 250px; /* Min 200px requirement */
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-vip__game-info {
      padding: 20px;
      text-align: left;
    }

    .page-8k8-vip__game-title {
      font-size: 1.3em;
      color: #0d1a26;
      margin-bottom: 10px;
      font-weight: 600;
    }

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

    /* Payment Methods */
    .page-8k8-vip__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted minmax for larger images */
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-vip__payment-logo {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px; /* Ensures images have enough space */
      box-sizing: border-box;
    }

    .page-8k8-vip__payment-image {
      max-width: 100%;
      max-height: 100px; /* Min 200px requirement, this will be handled by the gallery system */
      object-fit: contain;
      display: block;
      width: auto;
      height: auto;
    }

    /* FAQ Section */
    .page-8k8-vip__faq-section {
      text-align: left;
    }

    .page-8k8-vip__faq-list {
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

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

    .page-8k8-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f7f7f7;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-vip__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0d1a26;
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-8k8-vip__faq-item.active .page-8k8-vip__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or similar */
      color: #0d1a26;
    }

    .page-8k8-vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      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 25px !important; /* Adjusted padding when active */
      opacity: 1;
    }

    .page-8k8-vip__promo-text {
      margin-top: 20px;
      font-size: 0.9em;
      color: #777;
    }

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

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

      .page-8k8-vip__section {
        padding: 40px 15px;
      }

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

      /* List item responsive requirements */
      .page-8k8-vip__benefits-grid,
      .page-8k8-vip__game-showcase,
      .page-8k8-vip__payment-methods-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
      }

      .page-8k8-vip__benefit-card,
      .page-8k8-vip__game-card,
      .page-8k8-vip__payment-logo {
        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__game-image,
      .page-8k8-vip__benefit-icon,
      .page-8k8-vip__payment-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-8k8-vip__faq-question {
        padding: 15px 20px;
      }

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

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

      /* Ensure text wraps */
      .page-8k8-vip p,
      .page-8k8-vip h1,
      .page-8k8-vip h2,
      .page-8k8-vip h3,
      .page-8k8-vip li {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  