
    :root {
      --page-8k8-8-primary-color: #ffd700; /* Gold/Yellow */
      --page-8k8-8-secondary-color: #f0f0f0; /* Light text */
      --page-8k8-8-background-dark: #1a1a1a; /* Dark background */
      --page-8k8-8-background-medium: #2a2a2a; /* Slightly lighter dark */
      --page-8k8-8-accent-color: #007bff; /* Blue for links/buttons if needed, but using gold */
      --page-8k8-8-text-color: #f0f0f0;
      --page-8k8-8-border-color: #444;
      --page-8k8-8-spacing-unit: 1rem;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-8-text-color);
      background-color: var(--page-8k8-8-background-dark);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-8k8-8 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px var(--page-8k8-8-spacing-unit); /* Initial padding, top 10px for hero */
    }

    .page-8k8-8__section {
      padding: calc(var(--page-8k8-8-spacing-unit) * 3) var(--page-8k8-8-spacing-unit);
      margin-bottom: calc(var(--page-8k8-8-spacing-unit) * 2);
      background-color: var(--page-8k8-8-background-medium);
      border-radius: 8px;
    }

    .page-8k8-8__section--dark {
      background-color: var(--page-8k8-8-background-dark);
    }

    .page-8k8-8__heading-primary {
      color: var(--page-8k8-8-primary-color);
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: calc(var(--page-8k8-8-spacing-unit) * 1.5);
      line-height: 1.2;
    }

    .page-8k8-8__heading-secondary {
      color: var(--page-8k8-8-primary-color);
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: calc(var(--page-8k8-8-spacing-unit) * 1.5);
    }

    .page-8k8-8__heading-tertiary {
      color: var(--page-8k8-8-secondary-color);
      font-size: 1.6rem;
      margin-bottom: var(--page-8k8-8-spacing-unit);
    }

    .page-8k8-8__paragraph {
      font-size: 1.1rem;
      margin-bottom: var(--page-8k8-8-spacing-unit);
      color: var(--page-8k8-8-text-color);
    }

    .page-8k8-8__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-8k8-8-primary-color);
      color: var(--page-8k8-8-background-dark);
      border: none;
      border-radius: 5px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
    }

    .page-8k8-8__button:hover {
      background-color: #e6c200; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-8k8-8__button--secondary {
      background-color: var(--page-8k8-8-background-dark);
      color: var(--page-8k8-8-primary-color);
      border: 2px solid var(--page-8k8-8-primary-color);
    }

    .page-8k8-8__button--secondary:hover {
      background-color: var(--page-8k8-8-primary-color);
      color: var(--page-8k8-8-background-dark);
    }

    /* Hero Section */
    .page-8k8-8__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:online_casino,gaming,8k8_vip_hero]') no-repeat center center/cover;
      color: var(--page-8k8-8-secondary-color);
      text-align: center;
      padding: 10px var(--page-8k8-8-spacing-unit) calc(var(--page-8k8-8-spacing-unit) * 4); /* Top 10px, bottom more padding */
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      margin-bottom: calc(var(--page-8k8-8-spacing-unit) * 2);
    }

    .page-8k8-8__hero-content {
      max-width: 800px;
    }

    .page-8k8-8__hero-subtitle {
      font-size: 1.4rem;
      margin-bottom: calc(var(--page-8k8-8-spacing-unit) * 2);
    }

    .page-8k8-8__hero-buttons {
      display: flex;
      gap: var(--page-8k8-8-spacing-unit);
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Game Providers / Payment Methods Grid */
    .page-8k8-8__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Min 180px for items */
      gap: calc(var(--page-8k8-8-spacing-unit) * 1.5);
      margin-top: calc(var(--page-8k8-8-spacing-unit) * 2);
    }

    .page-8k8-8__grid-item {
      background-color: var(--page-8k8-8-background-dark);
      padding: var(--page-8k8-8-spacing-unit);
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 150px; /* Ensure sufficient height for content */
      box-sizing: border-box; /* Crucial for grid items */
    }

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

    .page-8k8-8__grid-item-image {
      max-width: 100%;
      height: auto;
      max-height: 100px; /* Constrain image height in grid */
      object-fit: contain;
      margin-bottom: var(--page-8k8-8-spacing-unit);
      border-radius: 4px; /* Slight rounding for images */
    }

    .page-8k8-8__grid-item-title {
      color: var(--page-8k8-8-secondary-color);
      font-size: 1.1rem;
      font-weight: bold;
      word-wrap: break-word; /* Ensure long titles wrap */
    }

    /* Promotions List */
    .page-8k8-8__promotions-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: calc(var(--page-8k8-8-spacing-unit) * 2);
      margin-top: calc(var(--page-8k8-8-spacing-unit) * 2);
    }

    .page-8k8-8__promotion-item {
      background-color: var(--page-8k8-8-background-dark);
      border-radius: 8px;
      padding: calc(var(--page-8k8-8-spacing-unit) * 1.5);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* List item box-sizing */
    }

    .page-8k8-8__promotion-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: var(--page-8k8-8-spacing-unit);
      border-radius: 4px;
    }

    .page-8k8-8__promotion-image {
      width: 100%;
      height: auto;
      max-width: 100%; /* Ensure image responsiveness */
      border-radius: 4px;
    }

    .page-8k8-8__promotion-title {
      color: var(--page-8k8-8-primary-color);
      font-size: 1.4rem;
      margin-bottom: var(--page-8k8-8-spacing-unit);
      line-height: 1.3;
      word-wrap: break-word;
    }

    .page-8k8-8__promotion-description {
      font-size: 1rem;
      color: var(--page-8k8-8-text-color);
      flex-grow: 1;
      margin-bottom: var(--page-8k8-8-spacing-unit);
    }

    /* Why Choose Us List */
    .page-8k8-8__features-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: calc(var(--page-8k8-8-spacing-unit) * 1.5);
      margin-top: calc(var(--page-8k8-8-spacing-unit) * 2);
    }

    .page-8k8-8__feature-item {
      background-color: var(--page-8k8-8-background-dark);
      padding: var(--page-8k8-8-spacing-unit);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box; /* List item box-sizing */
    }

    .page-8k8-8__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: var(--page-8k8-8-spacing-unit);
    }

    .page-8k8-8__feature-icon {
      max-width: 100px;
      height: auto;
      max-height: 100px;
      margin: 0 auto var(--page-8k8-8-spacing-unit);
    }

    .page-8k8-8__feature-title {
      color: var(--page-8k8-8-primary-color);
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      word-wrap: break-word;
    }

    .page-8k8-8__feature-description {
      font-size: 0.95rem;
      color: var(--page-8k8-8-text-color);
    }

    /* FAQ Section */
    .page-8k8-8__faq-section {
      padding: calc(var(--page-8k8-8-spacing-unit) * 3) var(--page-8k8-8-spacing-unit);
      background-color: var(--page-8k8-8-background-medium);
      border-radius: 8px;
      margin-bottom: calc(var(--page-8k8-8-spacing-unit) * 2);
    }

    .page-8k8-8__faq-item {
      background-color: var(--page-8k8-8-background-dark);
      border: 1px solid var(--page-8k8-8-border-color);
      border-radius: 8px;
      margin-bottom: var(--page-8k8-8-spacing-unit);
      overflow: hidden;
    }

    .page-8k8-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-8-background-medium);
      color: var(--page-8k8-8-primary-color);
      font-size: 1.2rem;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-8__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-8k8-8__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: var(--page-8k8-8-primary-color); /* Ensure h3 color */
      word-wrap: break-word;
    }

    .page-8k8-8__faq-toggle {
      font-size: 1.8rem;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: var(--page-8k8-8-primary-color);
    }

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

    .page-8k8-8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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(--page-8k8-8-text-color);
    }

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

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

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-8 {
        padding: 10px var(--page-8k8-8-spacing-unit);
      }

      .page-8k8-8__heading-primary {
        font-size: 2.2rem;
      }

      .page-8k8-8__heading-secondary {
        font-size: 1.8rem;
      }

      .page-8k8-8__hero-subtitle {
        font-size: 1.2rem;
      }

      .page-8k8-8__hero-buttons {
        flex-direction: column;
      }

      .page-8k8-8__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-8__grid {
        grid-template-columns: 1fr; /* Single column for small screens */
      }

      /* Apply to all grid-like items for mobile responsiveness */
      .page-8k8-8__grid-item,
      .page-8k8-8__promotion-item,
      .page-8k8-8__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: var(--page-8k8-8-spacing-unit); /* Adjust padding */
        word-wrap: break-word !important;
      }

      .page-8k8-8__promotions-list,
      .page-8k8-8__features-list {
        grid-template-columns: 1fr;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-8__promotion-item {
        padding: calc(var(--page-8k8-8-spacing-unit) * 1.5); /* Adjust padding */
      }

      /* Image responsiveness for all images */
      .page-8k8-8 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
      }

      .page-8k8-8__faq-question {
        font-size: 1rem;
        padding: 12px 15px;
      }

      .page-8k8-8__faq-answer {
        padding: 0 15px;
      }

      .page-8k8-8__faq-item.active .page-8k8-8__faq-answer {
        padding: 15px 15px !important;
      }
    }
  