
    /* CSS Styles for page-vip666 */
    :root {
      --page-vip666-primary-color: #e44d26; /* A vibrant color for highlights */
      --page-vip666-secondary-color: #333;
      --page-vip666-background-color: #f9f9f9;
      --page-vip666-text-color: #333;
      --page-vip666-light-text-color: #666;
      --page-vip666-white: #fff;
      --page-vip666-accent-color: #ffcc00; /* Gold for promotions */
    }

    .page-vip666 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-vip666-text-color);
      background-color: var(--page-vip666-background-color);
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Hero Section */
    .page-vip666__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-color: #222; /* Dark background for banner */
      color: var(--page-vip666-white);
      padding: 10px 20px 40px; /* Adjust padding-top for fixed header */
      box-sizing: border-box;
      overflow: hidden; /* Ensure content stays within bounds */
    }
    @media (max-width: 768px) {
      .page-vip666__hero-section {
        min-height: 300px;
        padding: 10px 15px 30px; /* Mobile padding-top */
      }
    }

    .page-vip666__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6; /* Slightly dim image for text readability */
      z-index: 1;
      max-width: 100%; /* Important for responsive images */
    }
    .page-vip666__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }
    .page-vip666__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-vip666-accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    .page-vip666__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-vip666-white);
    }
    .page-vip666__hero-button {
      display: inline-block;
      background-color: var(--page-vip666-primary-color);
      color: var(--page-vip666-white);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      cursor: pointer;
    }
    .page-vip666__hero-button:hover {
      background-color: #ff6633;
    }

    @media (max-width: 768px) {
      .page-vip666__hero-title {
        font-size: 2em;
      }
      .page-vip666__hero-subtitle {
        font-size: 1em;
      }
      .page-vip666__hero-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    /* Floating Login Button */
    .page-vip666__floating-button-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      text-align: center;
    }
    .page-vip666__floating-button {
      background-color: var(--page-vip666-accent-color);
      color: var(--page-vip666-secondary-color);
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      cursor: pointer;
      display: block; /* Ensures padding works as expected */
      text-decoration: none; /* Make sure it doesn't look like a standard link */
      border: none; /* Remove button default border */
    }
    .page-vip666__floating-button:hover {
      transform: translateY(-5px);
      background-color: #ffd700;
    }
    @media (max-width: 768px) {
      .page-vip666__floating-button-container {
        bottom: 15px;
        right: 15px;
      }
      .page-vip666__floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* General Section Styling */
    .page-vip666__section {
      padding: 60px 20px;
      background-color: var(--page-vip666-white);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-align: center;
    }
    .page-vip666__section:nth-of-type(even) {
      background-color: var(--page-vip666-background-color);
    }
    .page-vip666__section-title {
      font-size: 2.2em;
      color: var(--page-vip666-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      display: inline-block;
    }
    .page-vip666__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-vip666-accent-color);
      border-radius: 2px;
    }
    .page-vip666__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px;
      color: var(--page-vip666-light-text-color);
    }
    @media (max-width: 768px) {
      .page-vip666__section {
        padding: 40px 15px;
      }
      .page-vip666__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-vip666__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
    }

    /* Game Categories Section */
    .page-vip666__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .page-vip666__game-card {
      background-color: var(--page-vip666-white);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-vip666__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .page-vip666__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsive images */
    }
    .page-vip666__game-card-content {
      padding: 20px;
    }
    .page-vip666__game-card-title {
      font-size: 1.5em;
      color: var(--page-vip666-primary-color);
      margin-bottom: 10px;
    }
    .page-vip666__game-card-description {
      font-size: 0.95em;
      color: var(--page-vip666-light-text-color);
      margin-bottom: 20px;
    }
    .page-vip666__game-card-button {
      display: inline-block;
      background-color: var(--page-vip666-accent-color);
      color: var(--page-vip666-secondary-color);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none; /* Use button tag for no link */
    }
    .page-vip666__game-card-button:hover {
      background-color: #ffd700;
    }
    @media (max-width: 768px) {
      .page-vip666__game-grid {
        grid-template-columns: 1fr;
      }
      .page-vip666__game-card-image {
        height: 180px;
      }
      .page-vip666__game-card-title {
        font-size: 1.3em;
      }
    }

    /* How-to Section */
    .page-vip666__how-to-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .page-vip666__step-card {
      flex: 1 1 300px;
      background-color: var(--page-vip666-white);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .page-vip666__step-card:hover {
      transform: translateY(-5px);
    }
    .page-vip666__step-icon {
      width: 80px; /* Placeholder for larger images, not icons */
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain; /* Ensure image fits */
      max-width: 100%; /* Responsive image */
    }
    .page-vip666__step-title {
      font-size: 1.4em;
      color: var(--page-vip666-secondary-color);
      margin-bottom: 15px;
    }
    .page-vip666__step-description {
      font-size: 1em;
      color: var(--page-vip666-light-text-color);
    }
    @media (max-width: 768px) {
      .page-vip666__how-to-steps {
        flex-direction: column;
      }
      .page-vip666__step-card {
        padding: 25px;
      }
      .page-vip666__step-icon {
        width: 60px;
        height: 60px;
      }
      .page-vip666__step-title {
        font-size: 1.2em;
      }
    }

    /* Promotions Section */
    .page-vip666__promotion-card {
      background-color: var(--page-vip666-primary-color);
      color: var(--page-vip666-white);
      padding: 40px;
      border-radius: 10px;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    .page-vip666__promotion-title {
      font-size: 2.5em;
      color: var(--page-vip666-accent-color);
      margin-bottom: 15px;
    }
    .page-vip666__promotion-text {
      font-size: 1.2em;
      margin-bottom: 30px;
    }
    .page-vip666__promotion-button {
      display: inline-block;
      background-color: var(--page-vip666-white);
      color: var(--page-vip666-primary-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, color 0.3s ease;
      cursor: pointer;
      text-decoration: none; /* For the external link */
    }
    .page-vip666__promotion-button:hover {
      background-color: var(--page-vip666-accent-color);
      color: var(--page-vip666-secondary-color);
    }
    @media (max-width: 768px) {
      .page-vip666__promotion-card {
        padding: 30px;
      }
      .page-vip666__promotion-title {
        font-size: 2em;
      }
      .page-vip666__promotion-text {
        font-size: 1em;
      }
      .page-vip666__promotion-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    /* FAQ Section */
    .page-vip666__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }
    .page-vip666__faq-item {
      background-color: var(--page-vip666-white);
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .page-vip666__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-vip666-secondary-color);
      transition: background-color 0.3s ease;
    }
    .page-vip666__faq-question:hover {
      background-color: #e0e0e0;
    }
    .page-vip666__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: var(--page-vip666-primary-color);
    }
    .page-vip666__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }
    .page-vip666__faq-item.active .page-vip666__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }
    .page-vip666__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding matches question */
      background-color: var(--page-vip666-white);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-vip666-light-text-color);
    }
    .page-vip666__faq-item.active .page-vip666__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important; /* Adjusted padding */
      opacity: 1;
    }
    .page-vip666__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }
    @media (max-width: 768px) {
      .page-vip666__faq-question {
        padding: 15px 15px;
      }
      .page-vip666__faq-question h3 {
        font-size: 1em;
      }
      .page-vip666__faq-answer {
        padding: 0 15px;
      }
      .page-vip666__faq-item.active .page-vip666__faq-answer {
        padding: 15px 15px !important;
      }
    }

    /* General responsive image styles */
    .page-vip666 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    .page-vip666__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto; /* Center image containers */
    }

    @media (max-width: 768px) {
      .page-vip666 img {
        max-width: 100% !important; /* Force responsive on mobile */
        height: auto !important;
      }
      .page-vip666__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    /* Additional content styling */
    .page-vip666__content-text {
        max-width: 800px;
        margin: 0 auto 30px;
        text-align: left;
        color: var(--page-vip666-light-text-color);
    }
    .page-vip666__content-text ul {
        list-style-type: disc;
        padding-left: 25px;
    }
    .page-vip666__content-text ol {
        list-style-type: decimal;
        padding-left: 25px;
    }
    .page-vip666__content-text li {
        margin-bottom: 8px;
    }
    .page-vip666__content-text strong {
        color: var(--page-vip666-secondary-color);
    }
  