
    /* Base styles for the page */
    .page-8k8-vip {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
      padding-bottom: 40px; /* Space above footer */
    }

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

    .page-8k8-vip__section-title {
      font-size: 2.5em;
      color: #ffc107; /* Golden yellow for highlights */
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-vip__section-subtitle {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,luxury,gaming]') no-repeat center center/cover;
      padding: 10px 20px 80px; /* Small decorative padding-top, main padding bottom */
      color: #ffffff;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh; /* Ensure hero takes significant screen height */
      position: relative;
    }

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

    .page-8k8-vip__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 900px;
      color: #f8f9fa;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-vip__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #1a1a2e;
      padding: 15px 40px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

    /* About Section */
    .page-8k8-vip__about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      text-align: left;
    }

    .page-8k8-vip__about-text {
      flex: 1;
      min-width: 300px;
      color: #f8f9fa;
    }

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

    .page-8k8-vip__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-8k8-vip__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

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

    .page-8k8-vip__game-card {
      background-color: #2a2a44;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

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

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

    .page-8k8-vip__game-card-title {
      font-size: 1.5em;
      color: #ffc107;
      margin: 20px 15px 10px;
    }

    .page-8k8-vip__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-8k8-vip__promotions-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-vip__promotion-item {
      background-color: #2a2a44;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      flex: 1;
      min-width: 300px;
      max-width: 450px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-vip__promotion-title {
      font-size: 1.8em;
      color: #ffc107;
      margin-bottom: 15px;
    }

    .page-8k8-vip__promotion-description {
      color: #cccccc;
      margin-bottom: 20px;
    }

    /* Payment Methods Section */
    .page-8k8-vip__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip__payment-method-item {
      background-color: #2a2a44;
      border-radius: 8px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-8k8-vip__payment-method-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-vip__payment-method-image {
      max-width: 100px; /* Larger image for payment methods */
      height: auto;
      margin-bottom: 10px;
      max-height: 60px; /* Ensure images don't become too large */
    }

    .page-8k8-vip__payment-method-name {
      font-size: 1em;
      color: #ffc107;
      font-weight: bold;
    }

    /* Game Providers Section */
    .page-8k8-vip__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-vip__provider-item {
      background-color: #2a2a44;
      border-radius: 8px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-8k8-vip__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-vip__provider-image {
      max-width: 120px; /* Larger image for providers */
      height: auto;
      margin-bottom: 10px;
      max-height: 70px; /* Ensure images don't become too large */
    }

    .page-8k8-vip__provider-name {
      font-size: 1em;
      color: #ffc107;
      font-weight: bold;
    }

    /* Call to Action Section (Bottom) */
    .page-8k8-vip__bottom-cta {
      background-color: #2a2a44;
      padding: 50px 20px;
      border-radius: 10px;
      margin-top: 60px;
    }

    .page-8k8-vip__bottom-cta-title {
      font-size: 2.2em;
      color: #ffc107;
      margin-bottom: 20px;
    }

    .page-8k8-vip__bottom-cta-description {
      font-size: 1.1em;
      color: #f8f9fa;
      margin-bottom: 30px;
    }

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

    .page-8k8-vip__faq-item {
      background-color: #2a2a44;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-vip__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

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

    .page-8k8-vip__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-8k8-vip__faq-item.active .page-8k8-vip__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, visually a '-' */
    }

    .page-8k8-vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

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

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

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

      .page-8k8-vip__about-content {
        flex-direction: column;
      }

      .page-8k8-vip__about-text,
      .page-8k8-vip__about-image-wrapper {
        min-width: unset;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-vip__hero-section {
        min-height: 50vh;
        padding-bottom: 60px;
      }

      .page-8k8-vip__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8-vip__cta-button {
        padding: 12px 30px;
        font-size: 1em;
      }

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

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

      .page-8k8-vip__section-subtitle {
        font-size: 1em;
      }

      .page-8k8-vip__games-grid,
      .page-8k8-vip__promotions-list,
      .page-8k8-vip__payment-methods-grid,
      .page-8k8-vip__providers-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 20px;
      }

      /* Image responsiveness for mobile */
      .page-8k8-vip__about-image,
      .page-8k8-vip__game-card-image,
      .page-8k8-vip__payment-method-image,
      .page-8k8-vip__provider-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-vip__about-image-wrapper,
      .page-8k8-vip__game-card,
      .page-8k8-vip__promotion-item,
      .page-8k8-vip__payment-method-item,
      .page-8k8-vip__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* List item responsiveness for mobile */
      .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;
      }

      .page-8k8-vip__faq-question,
      .page-8k8-vip__faq-answer {
        padding: 15px 20px !important;
      }

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

      .page-8k8-vip__faq-answer p {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-8k8-vip__bottom-cta-title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-vip__hero-title {
        font-size: 1.8em;
      }

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

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

      .page-8k8-vip__bottom-cta-title {
        font-size: 1.5em;
      }
    }
  