
    /* Global styles for the page-8k8-vip scope */
    .page-8k8-vip {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
    }

    .page-8k8-vip__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-vip__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-vip__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-vip__section-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #2c3e50;
      font-weight: bold;
    }

    .page-8k8-vip__section--dark .page-8k8-vip__section-title {
      color: #ecf0f1;
    }

    .page-8k8-vip__section-subtitle {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #666;
    }

    .page-8k8-vip__section--dark .page-8k8-vip__section-subtitle {
      color: #bdc3c7;
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:vip,luxury,casino]') no-repeat center center/cover;
      color: #fff;
      padding: 10px 0 100px; /* Adjusted padding-top as per fixed nav bar requirement */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      text-align: center;
    }

    .page-8k8-vip__hero-content {
      max-width: 800px;
      padding: 20px;
      z-index: 1;
    }

    .page-8k8-vip__hero-title {
      font-size: 4em;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
      color: #f39c12; /* A vibrant color for emphasis */
    }

    .page-8k8-vip__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      line-height: 1.5;
      color: #ecf0f1;
    }

    .page-8k8-vip__hero-button {
      display: inline-block;
      background-color: #f39c12;
      color: #fff;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's a button, not a link visually */
      cursor: pointer;
    }

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

    /* Benefits Section */
    .page-8k8-vip__benefits-section {
      background-color: #fff;
    }

    .page-8k8-vip__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-8k8-vip__benefit-card {
      background-color: #ecf0f1;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive padding */
    }

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

    .page-8k8-vip__benefit-icon {
      width: 200px; /* Minimum 200px */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      border-radius: 8px;
    }

    .page-8k8-vip__benefit-title {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: #f39c12;
      font-weight: bold;
    }

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

    /* How to Join Section */
    .page-8k8-vip__join-section {
      background-color: #f8f8f8;
    }

    .page-8k8-vip__join-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 50px;
      align-items: center;
    }

    .page-8k8-vip__step-item {
      display: flex;
      align-items: center;
      max-width: 800px;
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      width: 100%; /* Ensure it takes full width within its max-width */
      box-sizing: border-box; /* Crucial for responsive padding */
    }

    .page-8k8-vip__step-number {
      background-color: #f39c12;
      color: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-8k8-vip__step-text h3 {
      font-size: 1.6em;
      color: #2c3e50;
      margin-bottom: 5px;
    }

    .page-8k8-vip__step-text p {
      font-size: 1.1em;
      color: #555;
    }

    /* Games Section */
    .page-8k8-vip__games-section {
      background-color: #ecf0f1;
    }

    .page-8k8-vip__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

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

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

    .page-8k8-vip__game-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-vip__game-title {
      font-size: 1.5em;
      color: #2c3e50;
      padding: 20px;
      font-weight: bold;
    }

    /* Payments Section */
    .page-8k8-vip__payments-section {
      background-color: #fff;
    }

    .page-8k8-vip__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
      list-style: none; /* Remove default list styling */
      padding: 0; /* Remove default padding */
      box-sizing: border-box; /* Crucial for responsive padding */
    }

    .page-8k8-vip__payment-item {
      background-color: #f39c12;
      color: #fff;
      padding: 12px 25px;
      border-radius: 25px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box; /* Ensure padding is included in width */
      flex-shrink: 0; /* Prevent items from shrinking */
    }

    .page-8k8-vip__payment-item:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
    }

    /* Call to Action Section */
    .page-8k8-vip__cta-section {
      background-color: #2c3e50;
      color: #fff;
      padding: 80px 0;
    }

    .page-8k8-vip__cta-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-vip__cta-content h2 {
      font-size: 3em;
      margin-bottom: 20px;
      color: #f39c12;
    }

    .page-8k8-vip__cta-content p {
      font-size: 1.4em;
      margin-bottom: 40px;
      color: #ecf0f1;
    }

    .page-8k8-vip__cta-button {
      display: inline-block;
      background-color: #f39c12;
      color: #fff;
      padding: 18px 40px;
      font-size: 1.3em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's a button, not a link visually */
      cursor: pointer;
    }

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

    /* FAQ Section */
    .page-8k8-vip__faq-section {
      background-color: #f8f8f8;
      text-align: left; /* Override section center alignment */
    }

    .page-8k8-vip__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box; /* Ensure padding is included */
    }

    .page-8k8-vip__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive padding */
    }

    .page-8k8-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f39c12;
      color: #fff;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

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

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

    .page-8k8-vip__faq-item.active .page-8k8-vip__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

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

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-vip__hero-title {
        font-size: 3.5em;
      }
      .page-8k8-vip__hero-description {
        font-size: 1.3em;
      }
      .page-8k8-vip__section-title {
        font-size: 2.5em;
      }
      .page-8k8-vip__cta-content h2 {
        font-size: 2.5em;
      }
      .page-8k8-vip__cta-content p {
        font-size: 1.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-vip__container {
        padding: 15px;
      }
      .page-8k8-vip__hero-section {
        min-height: 500px;
        padding-top: 10px; /* Still a small decorative padding */
      }
      .page-8k8-vip__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-vip__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-vip__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-vip__section {
        padding: 40px 0;
      }
      .page-8k8-vip__section-title {
        font-size: 2em;
      }
      .page-8k8-vip__section-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
      }

      /* List item mobile responsiveness */
      .page-8k8-vip__benefits-grid,
      .page-8k8-vip__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-vip__benefit-card,
      .page-8k8-vip__game-card,
      .page-8k8-vip__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for smaller screens */
      }
      .page-8k8-vip__benefit-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-vip__benefit-title {
        font-size: 1.5em;
      }
      .page-8k8-vip__benefit-description {
        font-size: 1em;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-vip__join-steps {
        gap: 20px;
      }
      .page-8k8-vip__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-vip__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-8k8-vip__step-text h3 {
        font-size: 1.4em;
      }
      .page-8k8-vip__step-text p {
        font-size: 1em;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-vip__game-image {
        height: 200px;
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-vip__game-title {
        font-size: 1.3em;
        padding: 15px;
      }

      .page-8k8-vip__payments-list {
        gap: 10px;
        padding: 0 10px !important; /* Ensure padding for list container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-vip__payment-item {
        padding: 10px 20px;
        font-size: 1em;
        width: auto !important; /* Allow items to size naturally but wrap */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-vip__cta-section {
        padding: 50px 0;
      }
      .page-8k8-vip__cta-content h2 {
        font-size: 2em;
      }
      .page-8k8-vip__cta-content p {
        font-size: 1.1em;
      }
      .page-8k8-vip__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }

      .page-8k8-vip__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-vip__faq-question h3 {
        font-size: 1.2em;
      }
      .page-8k8-vip__faq-toggle {
        font-size: 1.8em;
      }
      .page-8k8-vip__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for mobile */
      }
      .page-8k8-vip__faq-list {
        padding: 0 15px; /* Adjust padding for the FAQ list container */
        box-sizing: border-box;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-vip__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-vip__hero-description {
        font-size: 1em;
      }
      .page-8k8-vip__section-title {
        font-size: 1.8em;
      }
      .page-8k8-vip__cta-content h2 {
        font-size: 1.8em;
      }
      .page-8k8-vip__cta-content p {
        font-size: 1em;
      }
      .page-8k8-vip__faq-question h3 {
        font-size: 1.1em;
      }
    }
  