
    /* General body and root styling for consistency, but within page-8k8-vip scope */
    :root {
      --primary-color: #f9a825; /* A gold/orange for casino theme */
      --secondary-color: #212121; /* Dark background */
      --text-color: #f0f0f0; /* Light text on dark background */
      --accent-color: #4CAF50; /* Green for success/highlights */
      --background-light: #f9f9f9;
      --background-dark: #1a1a1a;
      --border-color: #444;
      --header-offset: 122px; /* Default value, will be overridden by shared.css if present */
    }

    /* Base styles for the page content wrapper */
    .page-8k8-vip {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-dark);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
      box-sizing: border-box;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    /* Section styling */
    .page-8k8-vip__section {
      padding: 60px 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-vip__section--light {
      background-color: var(--background-light);
      color: var(--secondary-color);
    }

    .page-8k8-vip__section-title {
      font-size: 2.8em;
      margin-bottom: 30px;
      color: var(--primary-color);
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-8k8-vip__section--light .page-8k8-vip__section-title {
        color: var(--secondary-color);
    }

    .page-8k8-vip__section-subtitle {
      font-size: 1.4em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-color);
    }

    .page-8k8-vip__section--light .page-8k8-vip__section-subtitle {
        color: var(--secondary-color);
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
      position: relative;
      padding: 10px 0 80px 0; /* Small top padding, relying on body for header offset */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
      box-sizing: border-box;
    }

    .page-8k8-vip__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%; /* Ensure image is responsive */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-vip__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-vip__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      text-transform: uppercase;
    }

    .page-8k8-vip__hero-description {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-vip__button {
      display: inline-block;
      padding: 15px 35px;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

    .page-8k8-vip__button:hover {
      background-color: #e69500; /* Slightly darker primary */
      transform: translateY(-3px);
    }

    /* Features Grid */
    .page-8k8-vip__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
      box-sizing: border-box;
    }

    .page-8k8-vip__feature-item {
      background-color: #2a2a2a;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-vip__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-8k8-vip__feature-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

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

    /* CTA Section */
    .page-8k8-vip__cta-section {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 80px 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-vip__cta-title {
      font-size: 3em;
      margin-bottom: 25px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-8k8-vip__cta-text {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-vip__game-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-vip__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

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

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

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

    /* Security Section */
    .page-8k8-vip__security-section {
      background-color: #2a2a2a;
      color: var(--text-color);
      padding: 80px 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-vip__security-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-vip__security-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-vip__security-text {
      text-align: left;
      font-size: 1.1em;
    }

    .page-8k8-vip__security-text p {
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-8k8-vip__faq-section {
      padding: 80px 20px;
      background-color: var(--background-dark);
      color: var(--text-color);
      box-sizing: border-box;
    }

    .page-8k8-vip__faq-list {
      max-width: 900px;
      margin: 50px auto 0 auto;
      list-style: none;
      padding: 0;
      box-sizing: border-box;
    }

    .page-8k8-vip__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: #2a2a2a;
      box-sizing: border-box;
    }

    .page-8k8-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      cursor: pointer;
      user-select: none;
      font-size: 1.3em;
      font-weight: bold;
      color: var(--primary-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-vip__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent font size */
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      color: inherit; /* Ensure h3 inherits color from .page-8k8-vip__faq-question */
    }

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

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

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

    .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: var(--text-color);
      text-align: left;
      box-sizing: border-box;
    }

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

    .page-8k8-vip__faq-answer p {
      margin: 0 0 10px 0;
    }

    .page-8k8-vip__faq-answer p:last-child {
      margin-bottom: 0;
    }

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

    @media (max-width: 768px) {
      .page-8k8-vip__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
      }
      .page-8k8-vip__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-vip__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-vip__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-vip__section {
        padding: 40px 15px;
      }
      .page-8k8-vip__section-title {
        font-size: 2em;
      }
      .page-8k8-vip__section-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-vip__features-grid,
      .page-8k8-vip__game-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-vip__feature-item,
      .page-8k8-vip__game-card {
        padding: 20px;
      }
      .page-8k8-vip__feature-icon {
        max-width: 200px;
      }
      .page-8k8-vip__cta-section {
        padding: 60px 15px;
      }
      .page-8k8-vip__cta-title {
        font-size: 2em;
      }
      .page-8k8-vip__cta-text {
        font-size: 1.1em;
      }
      .page-8k8-vip__security-content {
        flex-direction: column;
        gap: 30px;
      }
      .page-8k8-vip__security-image {
        max-width: 100%;
      }
      .page-8k8-vip__faq-section {
        padding: 60px 15px;
      }
      .page-8k8-vip__faq-list {
        margin-top: 30px;
      }
      .page-8k8-vip__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-vip__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-vip__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-vip__faq-item.active .page-8k8-vip__faq-answer {
        padding: 15px 20px !important;
      }

      /* List item mobile responsiveness */
      .page-8k8-vip__features-grid .page-8k8-vip__feature-item,
      .page-8k8-vip__game-showcase .page-8k8-vip__game-card,
      .page-8k8-vip__faq-list .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-left: 15px !important; /* Adjust padding to prevent content being too wide */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-vip__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for the list container itself */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-vip__game-image,
      .page-8k8-vip__feature-icon,
      .page-8k8-vip__security-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-vip__hero-title {
        font-size: 2em;
      }
      .page-8k8-vip__hero-description {
        font-size: 1em;
      }
      .page-8k8-vip__section-title {
        font-size: 1.8em;
      }
      .page-8k8-vip__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-vip__faq-question {
        font-size: 1em;
      }
      .page-8k8-vip__faq-toggle {
        font-size: 1.3em;
      }
    }
  