
    :root {
      --page-88clbvip-primary-bg: #1a1a2e;
      --page-88clbvip-secondary-bg: #2a2a4a;
      --page-88clbvip-text-color: #e0e0e0;
      --page-88clbvip-heading-color: #f0f0f0;
      --page-88clbvip-accent-color: #e94560; /* Red/Pink */
      --page-88clbvip-secondary-accent: #00b894; /* Green */
      --page-88clbvip-border-color: #3e3e6b;
      --page-88clbvip-button-hover-bg: #c73752;
      --page-88clbvip-card-bg: #20203a;
      --page-88clbvip-link-color: #87ceeb; /* Sky Blue */
      --page-88clbvip-link-hover-color: #5ab1e4;
    }

    .page-88clbvip {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-88clbvip-primary-bg);
      color: var(--page-88clbvip-text-color);
      line-height: 1.6;
      padding: 20px 0;
    }

    .page-88clbvip-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-88clbvip-hero {
      background: linear-gradient(45deg, var(--page-88clbvip-primary-bg), var(--page-88clbvip-secondary-bg));
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-88clbvip-hero h1 {
      color: var(--page-88clbvip-heading-color);
      font-size: 2.8em;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-88clbvip-hero p {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-88clbvip-text-color);
    }

    .page-88clbvip-button {
      display: inline-block;
      background-color: var(--page-88clbvip-accent-color);
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-88clbvip-button:hover {
      background-color: var(--page-88clbvip-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-88clbvip-secondary-button {
      background-color: var(--page-88clbvip-secondary-accent);
    }

    .page-88clbvip-secondary-button:hover {
      background-color: #008f72;
    }

    .page-88clbvip-section {
      background-color: var(--page-88clbvip-secondary-bg);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-88clbvip-section h2 {
      color: var(--page-88clbvip-heading-color);
      font-size: 2em;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-88clbvip-section h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-88clbvip-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-88clbvip-section h3 {
      color: var(--page-88clbvip-accent-color);
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-88clbvip-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-88clbvip-card {
      background-color: var(--page-88clbvip-card-bg);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-88clbvip-card img {
      max-width: 100%;
      height: 150px;
      object-fit: contain;
      border-radius: 5px;
      margin-bottom: 15px;
    }

    .page-88clbvip-card h4 {
      color: var(--page-88clbvip-heading-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-88clbvip-card p {
      color: var(--page-88clbvip-text-color);
      font-size: 0.95em;
      flex-grow: 1;
    }

    .page-88clbvip-card .page-88clbvip-button {
      margin-top: 20px;
      width: 100%;
      padding: 10px 15px;
      font-size: 1em;
    }

    .page-88clbvip-faq-item {
      background-color: var(--page-88clbvip-card-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-88clbvip-faq-question {
      padding: 18px 25px;
      background-color: var(--page-88clbvip-border-color);
      color: var(--page-88clbvip-heading-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-88clbvip-faq-question:hover {
      background-color: #4c4c7c;
    }

    .page-88clbvip-faq-question span {
      font-size: 1.5em;
      line-height: 1;
    }

    .page-88clbvip-faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      color: var(--page-88clbvip-text-color);
    }

    .page-88clbvip-faq-answer p {
      padding-bottom: 18px;
      margin: 0;
    }

    .page-88clbvip-faq-item.active .page-88clbvip-faq-answer {
      max-height: 200px; /* Adjust as needed */
      transition: max-height 0.4s ease-in;
    }

    .page-88clbvip-link {
      color: var(--page-88clbvip-link-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-88clbvip-link:hover {
      color: var(--page-88clbvip-link-hover-color);
      text-decoration: underline;
    }

    .page-88clbvip-floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-88clbvip-accent-color);
      color: #ffffff;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 1000;
      animation: page-88clbvip-bounce 2s infinite ease-in-out;
    }

    .page-88clbvip-floating-promo p {
      margin: 0;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-88clbvip-floating-promo .page-88clbvip-button {
      padding: 8px 15px;
      font-size: 0.9em;
      background-color: var(--page-88clbvip-secondary-accent);
    }

    .page-88clbvip-floating-promo .page-88clbvip-button:hover {
      background-color: #008f72;
    }

    @keyframes page-88clbvip-bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    @media (max-width: 768px) {
      .page-88clbvip-hero {
        padding: 40px 15px;
      }
      .page-88clbvip-hero h1 {
        font-size: 2em;
      }
      .page-88clbvip-hero p {
        font-size: 1em;
      }
      .page-88clbvip-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-88clbvip-section {
        padding: 30px 15px;
      }
      .page-88clbvip-section h2 {
        font-size: 1.8em;
      }
      .page-88clbvip-grid {
        grid-template-columns: 1fr;
      }
      .page-88clbvip-floating-promo {
        flex-direction: column;
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        text-align: center;
      }
      .page-88clbvip-floating-promo p {
        font-size: 0.9em;
      }
      .page-88clbvip-floating-promo .page-88clbvip-button {
        width: auto;
      }
    }
  