
    :root {
      --five88vip-primary-color: #e44d26; /* Orange/Red */
      --five88vip-secondary-color: #333; /* Dark Grey */
      --five88vip-accent-color: #f7b731; /* Yellow */
      --five88vip-text-color: #fff; /* White */
      --five88vip-bg-color: #1a1a1a; /* Dark background */
      --five88vip-card-bg: #2a2a2a; /* Slightly lighter card background */
      --five88vip-border-color: #444; /* Border color */
      --five88vip-link-color: #f7b731;
      --five88vip-button-hover-color: #ff6f3f;
    }

    /* Base styles for the page content */
    .page-five88vip {
      font-family: 'Arial', sans-serif;
      background-color: var(--five88vip-bg-color);
      color: var(--five88vip-text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed footer */
    }

    /* Responsive image container */
    .page-five88vip__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-five88vip__image-container img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%; /* Ensure image fills container */
    }

    @media (max-width: 768px) {
      .page-five88vip__image-container img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

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

    .page-five88vip__section--dark {
      background-color: var(--five88vip-secondary-color);
    }

    .page-five88vip__heading {
      color: var(--five88vip-accent-color);
      margin-bottom: 25px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-five88vip__subheading {
      color: var(--five88vip-primary-color);
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-five88vip__text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

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

    .page-five88vip__button:hover {
      background-color: var(--five88vip-button-hover-color);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-five88vip__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 120px; /* Space for fixed header on desktop */
      box-sizing: border-box;
    }

    .page-five88vip__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-five88vip__hero-content {
      position: relative; /* Ensure content is above image if needed, or adjust padding */
      text-align: center;
      padding: 30px 20px;
      background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
      margin-top: -5px; /* Adjust to sit below image */
      z-index: 1;
    }

    .page-five88vip__hero-title {
      font-size: 2.8em;
      color: var(--five88vip-accent-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-five88vip__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--five88vip-text-color);
    }

    /* Floating Login Button */
    .page-five88vip__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--five88vip-primary-color);
      color: var(--five88vip-text-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      text-align: center;
      white-space: nowrap;
    }

    .page-five88vip__floating-login:hover {
      background-color: var(--five88vip-button-hover-color);
      transform: translateY(-3px);
    }

    /* Game Categories */
    .page-five88vip__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-five88vip__category-card {
      background-color: var(--five88vip-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-five88vip__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-five88vip__category-link {
      text-decoration: none;
      color: var(--five88vip-text-color);
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .page-five88vip__category-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 1px solid var(--five88vip-border-color);
    }

    .page-five88vip__category-title {
      font-size: 1.4em;
      color: var(--five88vip-accent-color);
      padding: 15px;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
    }

    /* Game Providers */
    .page-five88vip__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-five88vip__provider-logo {
      background-color: var(--five88vip-card-bg);
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      height: 100px; /* Ensure consistent logo display area */
    }

    .page-five88vip__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-five88vip__provider-logo img {
      max-width: 100%;
      max-height: 70px; /* Adjust based on desired logo size */
      object-fit: contain;
    }

    /* Payment Methods */
    .page-five88vip__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-five88vip__payment-item {
      background-color: var(--five88vip-card-bg);
      padding: 15px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      height: 100px;
    }

    .page-five88vip__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-five88vip__payment-item img {
      max-width: 80%;
      max-height: 60px;
      object-fit: contain;
      margin-bottom: 5px;
    }

    .page-five88vip__payment-item span {
      font-size: 0.9em;
      color: var(--five88vip-text-color);
      text-align: center;
    }

    /* FAQ Section */
    .page-five88vip__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-five88vip__faq-item {
      background-color: var(--five88vip-card-bg);
      border: 1px solid var(--five88vip-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-five88vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-five88vip__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-five88vip__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--five88vip-accent-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-five88vip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--five88vip-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-five88vip__faq-item.active .page-five88vip__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar effect */
    }

    .page-five88vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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(--five88vip-text-color);
    }

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

    .page-five88vip__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-five88vip__hero-title {
        font-size: 2.5em;
      }
      .page-five88vip__hero-description {
        font-size: 1.1em;
      }
      .page-five88vip__heading {
        font-size: 2em;
      }
      .page-five88vip__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-five88vip__hero-section {
        padding-top: 100px; /* Space for fixed header on mobile */
      }
      .page-five88vip__hero-title {
        font-size: 2em;
      }
      .page-five88vip__hero-description {
        font-size: 1em;
      }
      .page-five88vip__section {
        padding: 30px 15px;
      }
      .page-five88vip__heading {
        font-size: 1.8em;
      }
      .page-five88vip__subheading {
        font-size: 1.4em;
      }
      .page-five88vip__text {
        font-size: 1em;
      }
      .page-five88vip__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-five88vip__floating-login {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.95em;
      }
      .page-five88vip__game-categories,
      .page-five88vip__providers-grid,
      .page-five88vip__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }
      .page-five88vip__category-image {
        height: 150px;
      }
      .page-five88vip__category-title {
        font-size: 1.2em;
        padding: 10px;
      }
      .page-five88vip__provider-logo,
      .page-five88vip__payment-item {
        height: 80px;
      }
      .page-five88vip__provider-logo img {
        max-height: 50px;
      }
      .page-five88vip__faq-question {
        padding: 12px 15px;
      }
      .page-five88vip__faq-question h3 {
        font-size: 1.1em;
      }
      .page-five88vip__faq-answer {
        padding: 0 15px;
      }
      .page-five88vip__faq-item.active .page-five88vip__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-five88vip__hero-title {
        font-size: 1.8em;
      }
      .page-five88vip__hero-description {
        font-size: 0.95em;
      }
      .page-five88vip__floating-login {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        bottom: 15px;
      }
      .page-five88vip__game-categories,
      .page-five88vip__providers-grid,
      .page-five88vip__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
      }
      .page-five88vip__category-image {
        height: 120px;
      }
      .page-five88vip__category-title {
        font-size: 1.1em;
      }
    }
  