
    :root {
      --page-f1686-vip-primary-bg: #1a1a2e;
      --page-f1686-vip-secondary-bg: #0f3460;
      --page-f1686-vip-text-color: #e0e0e0;
      --page-f1686-vip-accent-color: #e94560;
      --page-f1686-vip-light-text: #ffffff;
      --page-f1686-vip-border-color: #4a4a6a;
      --page-f1686-vip-button-hover-bg: #c93a52;
    }

    .page-f1686-vip {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-f1686-vip-primary-bg);
      color: var(--page-f1686-vip-text-color);
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-f1686-vip__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-f1686-vip__section--dark {
      background-color: var(--page-f1686-vip-secondary-bg);
    }

    .page-f1686-vip__section-title {
      color: var(--page-f1686-vip-accent-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-f1686-vip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-f1686-vip-accent-color);
    }

    .page-f1686-vip__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-f1686-vip-text-color);
    }

    .page-f1686-vip__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px 0; /* Adjusted padding-top for shared header offset */
      background-color: var(--page-f1686-vip-primary-bg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-align: center;
      z-index: 1;
    }

    .page-f1686-vip__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: -1;
    }

    .page-f1686-vip__hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      padding: 0 20px;
    }

    .page-f1686-vip__hero-title {
      font-size: 3.2em;
      color: var(--page-f1686-vip-light-text);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-f1686-vip__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-f1686-vip-text-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-f1686-vip__button {
      display: inline-block;
      background-color: var(--page-f1686-vip-accent-color);
      color: var(--page-f1686-vip-light-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-f1686-vip__button:hover {
      background-color: var(--page-f1686-vip-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-f1686-vip__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-f1686-vip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-f1686-vip__game-card {
      background-color: var(--page-f1686-vip-primary-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-f1686-vip-border-color);
      display: flex;
      flex-direction: column;
    }

    .page-f1686-vip__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-f1686-vip__game-card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-f1686-vip__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-f1686-vip__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-f1686-vip__game-card-title {
      font-size: 1.6em;
      color: var(--page-f1686-vip-accent-color);
      margin-bottom: 10px;
    }

    .page-f1686-vip__game-card-description {
      font-size: 0.95em;
      color: var(--page-f1686-vip-text-color);
      margin-bottom: 15px;
    }

    .page-f1686-vip__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-f1686-vip__feature-item {
      background-color: var(--page-f1686-vip-primary-bg);
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--page-f1686-vip-border-color);
    }

    .page-f1686-vip__feature-title {
      font-size: 1.4em;
      color: var(--page-f1686-vip-accent-color);
      margin-bottom: 10px;
    }

    .page-f1686-vip__feature-description {
      font-size: 1em;
      color: var(--page-f1686-vip-text-color);
    }

    .page-f1686-vip__providers-grid,
    .page-f1686-vip__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-f1686-vip__provider-item,
    .page-f1686-vip__payment-item {
      background-color: var(--page-f1686-vip-primary-bg);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      border: 1px solid var(--page-f1686-vip-border-color);
    }

    .page-f1686-vip__provider-logo,
    .page-f1686-vip__payment-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      filter: brightness(0.9); /* Allowed: brightness, contrast, etc. as they don't change hue/saturation */
    }

    .page-f1686-vip__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-f1686-vip__faq-item {
      background-color: var(--page-f1686-vip-secondary-bg);
      border: 1px solid var(--page-f1686-vip-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-f1686-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-f1686-vip-secondary-bg);
      transition: background-color 0.3s ease;
    }

    .page-f1686-vip__faq-question:hover {
      background-color: #2a4c7e; /* Slightly lighter hover */
    }

    .page-f1686-vip__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-f1686-vip-light-text);
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-f1686-vip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-f1686-vip-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      width: 20px; /* Ensure consistent width */
      text-align: center;
    }

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

    .page-f1686-vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--page-f1686-vip-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

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

    .page-f1686-vip__cta-section {
      background-color: var(--page-f1686-vip-accent-color);
      color: var(--page-f1686-vip-light-text);
      padding: 60px 20px;
      text-align: center;
    }

    .page-f1686-vip__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-f1686-vip-light-text);
    }

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

    .page-f1686-vip__cta-button {
      background-color: var(--page-f1686-vip-light-text);
      color: var(--page-f1686-vip-accent-color);
      padding: 18px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-f1686-vip__cta-button:hover {
      background-color: #f0f0f0;
      color: var(--page-f1686-vip-button-hover-bg);
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-f1686-vip__hero-title {
        font-size: 2.8em;
      }
      .page-f1686-vip__hero-subtitle {
        font-size: 1.3em;
      }
      .page-f1686-vip__section-title {
        font-size: 2em;
      }
      .page-f1686-vip__cta-title {
        font-size: 2.2em;
      }
      .page-f1686-vip__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-f1686-vip__hero-title {
        font-size: 2.2em;
      }
      .page-f1686-vip__hero-subtitle {
        font-size: 1.1em;
      }
      .page-f1686-vip__button, .page-f1686-vip__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-f1686-vip__floating-buttons {
        flex-direction: column;
        bottom: 10px;
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
        align-items: center;
        gap: 10px;
      }
      .page-f1686-vip__floating-buttons .page-f1686-vip__button {
        width: 100%;
        text-align: center;
      }
      .page-f1686-vip__section {
        padding: 30px 15px;
      }
      .page-f1686-vip__section-title {
        font-size: 1.8em;
      }
      .page-f1686-vip__text {
        font-size: 1em;
      }
      .page-f1686-vip__game-grid,
      .page-f1686-vip__features-list,
      .page-f1686-vip__providers-grid,
      .page-f1686-vip__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item specific responsive styles */
      .page-f1686-vip__features-list,
      .page-f1686-vip__providers-grid,
      .page-f1686-vip__payments-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-f1686-vip__feature-item,
      .page-f1686-vip__provider-item,
      .page-f1686-vip__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-f1686-vip__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-f1686-vip__game-card-image,
      .page-f1686-vip__provider-logo,
      .page-f1686-vip__payment-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-f1686-vip__faq-question h3 {
        font-size: 1.1em;
      }
      .page-f1686-vip__faq-toggle {
        font-size: 1.5em;
      }
      .page-f1686-vip__faq-answer {
        padding: 0 15px;
      }
      .page-f1686-vip__faq-item.active .page-f1686-vip__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-f1686-vip__hero-title {
        font-size: 1.8em;
      }
      .page-f1686-vip__hero-subtitle {
        font-size: 1em;
      }
      .page-f1686-vip__section-title {
        font-size: 1.5em;
      }
      .page-f1686-vip__cta-title {
        font-size: 1.8em;
      }
      .page-f1686-vip__cta-description {
        font-size: 1em;
      }
    }
  