
    /* Base styles for the 8k8 VIP page */
    .page-8k8-vip {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small padding to avoid double header offset if body already has it */
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
      position: relative;
      padding: 60px 20px;
      text-align: center;
      color: #fff;
      background: linear-gradient(135deg, #0a1c3d, #000000);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-8k8-vip__hero-background-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: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffd700; /* Gold color for prominence */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-vip__hero-cta-button {
      display: inline-block;
      background-color: #ffd700; /* Gold */
      color: #0a1c3d;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-vip__hero-cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Floating Buttons (Register/Login) */
    .page-8k8-vip__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      justify-content: center;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-8k8-vip__floating-button {
      background-color: #007bff; /* Blue for action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      flex-grow: 1;
      max-width: 150px;
      text-align: center;
    }

    .page-8k8-vip__floating-button--login {
      background-color: #28a745; /* Green for login */
    }

    .page-8k8-vip__floating-button:hover {
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    /* General Section Styling */
    .page-8k8-vip__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      box-sizing: border-box;
    }

    .page-8k8-vip__section-title {
      font-size: 2.2em;
      color: #0a1c3d;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

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

    .page-8k8-vip__feature-item {
      text-align: center;
      padding: 30px;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-vip__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-vip__feature-icon {
      width: 200px; /* Min size */
      height: 200px; /* Min size */
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 5px;
    }

    .page-8k8-vip__feature-title {
      font-size: 1.5em;
      color: #0a1c3d;
      margin-bottom: 10px;
    }

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

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

    .page-8k8-vip__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      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 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-vip__game-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

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

    .page-8k8-vip__game-title {
      font-size: 1.4em;
      color: #0a1c3d;
      margin-bottom: 10px;
    }

    .page-8k8-vip__game-provider {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 15px;
    }

    .page-8k8-vip__game-button {
      display: inline-block;
      background-color: #ffd700;
      color: #0a1c3d;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .page-8k8-vip__game-button:hover {
      background-color: #e6c200;
    }

    /* Promotions Section */
    .page-8k8-vip__promo-card {
      background-color: #e0f7fa;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-vip__promo-title {
      font-size: 1.8em;
      color: #0a1c3d;
      margin-bottom: 10px;
    }

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

    .page-8k8-vip__promo-button {
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

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

    /* How It Works Section */
    .page-8k8-vip__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-vip__step-item {
      flex: 1 1 300px;
      text-align: center;
      padding: 30px;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      position: relative;
      box-sizing: border-box;
    }

    .page-8k8-vip__step-number {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      background-color: #ffd700;
      color: #0a1c3d;
      border-radius: 50%;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-vip__step-title {
      font-size: 1.4em;
      color: #0a1c3d;
      margin-bottom: 10px;
    }

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

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

    .page-8k8-vip__faq-item {
      background-color: #fefefe;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px 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: 18px 20px;
      background-color: #0a1c3d;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

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

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

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

    .page-8k8-vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #fff;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action Section */
    .page-8k8-vip__cta-section {
      text-align: center;
      background: linear-gradient(90deg, #0a1c3d, #000000);
      color: #fff;
      padding: 60px 20px;
      box-sizing: border-box;
    }

    .page-8k8-vip__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #ffd700;
    }

    .page-8k8-vip__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip__cta-button {
      background-color: #ffd700;
      color: #0a1c3d;
      padding: 15px 35px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-8k8-vip__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-8k8-vip__hero-title {
        font-size: 2.4em;
      }
      .page-8k8-vip__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-vip__section-title {
        font-size: 2em;
      }
      .page-8k8-vip__features-grid,
      .page-8k8-vip__game-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-vip__hero-section {
        padding: 40px 15px;
        min-height: 300px;
      }
      .page-8k8-vip__hero-title {
        font-size: 2em;
      }
      .page-8k8-vip__hero-description {
        font-size: 1em;
      }
      .page-8k8-vip__section {
        padding: 40px 15px;
      }
      .page-8k8-vip__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-vip__features-grid,
      .page-8k8-vip__game-showcase-grid,
      .page-8k8-vip__steps-list {
        grid-template-columns: 1fr;
      }
      .page-8k8-vip__feature-item,
      .page-8k8-vip__game-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: 25px 15px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-vip__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-vip__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-8k8-vip__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-vip__faq-answer {
        padding: 15px !important;
      }
      .page-8k8-vip__cta-title {
        font-size: 2em;
      }
      .page-8k8-vip__cta-description {
        font-size: 1em;
      }
      .page-8k8-vip__floating-buttons {
        gap: 10px;
        bottom: 15px;
        padding: 0 15px;
      }
      .page-8k8-vip__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        max-width: 120px;
      }
      .page-8k8-vip__feature-icon {
        width: 150px; /* Adjust min size for mobile */
        height: 150px; /* Adjust min size for mobile */
      }
      .page-8k8-vip__game-image {
        height: 200px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-vip__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-vip__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-vip__section-title {
        font-size: 1.6em;
      }
      .page-8k8-vip__feature-title,
      .page-8k8-vip__game-title,
      .page-8k8-vip__step-title {
        font-size: 1.3em;
      }
      .page-8k8-vip__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-vip__floating-buttons {
        flex-direction: column;
        align-items: center;
        width: auto;
        left: auto;
        right: 15px;
        transform: none;
        bottom: 15px;
      }
      .page-8k8-vip__floating-button {
        max-width: 180px;
        width: 100%;
      }
    }
  