
    /* Base styles */
    :root {
      --page-22-vip-d-ng-nh-p-primary-color: #e44d26; /* A vibrant orange/red for action */
      --page-22-vip-d-ng-nh-p-secondary-color: #333;
      --page-22-vip-d-ng-nh-p-accent-color: #ffe000; /* Yellow for highlights */
      --page-22-vip-d-ng-nh-p-background-dark: #1a1a1a;
      --page-22-vip-d-ng-nh-p-background-light: #2a2a2a;
      --page-22-vip-d-ng-nh-p-text-light: #f5f5f5;
      --page-22-vip-d-ng-nh-p-text-dark: #333;
      --page-22-vip-d-ng-nh-p-border-radius: 8px;
      --page-22-vip-d-ng-nh-p-padding-section: 40px 20px;
      --page-22-vip-d-ng-nh-p-mobile-padding-section: 25px 15px;
    }

    .page-22-vip-d-ng-nh-p {
      font-family: 'Arial', sans-serif;
      color: var(--page-22-vip-d-ng-nh-p-text-light);
      background-color: var(--page-22-vip-d-ng-nh-p-background-dark);
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 10px; /* Small top padding for visual separation from header, assuming body padding-top is handled by shared.css */
    }

    .page-22-vip-d-ng-nh-p__section {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--page-22-vip-d-ng-nh-p-padding-section);
      box-sizing: border-box;
      text-align: center;
    }

    .page-22-vip-d-ng-nh-p__section--dark {
      background-color: var(--page-22-vip-d-ng-nh-p-background-light);
    }

    .page-22-vip-d-ng-nh-p__title {
      color: var(--page-22-vip-d-ng-nh-p-primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-22-vip-d-ng-nh-p__subtitle {
      color: var(--page-22-vip-d-ng-nh-p-accent-color);
      margin-bottom: 30px;
      font-size: 1.2em;
    }

    .page-22-vip-d-ng-nh-p__paragraph {
      margin-bottom: 15px;
      font-size: 1em;
      color: var(--page-22-vip-d-ng-nh-p-text-light);
    }

    /* Hero Section */
    .page-22-vip-d-ng-nh-p__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,mobile,login,22vip]') no-repeat center center/cover;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
    }

    .page-22-vip-d-ng-nh-p__hero-title {
      font-size: 3em;
      color: var(--page-22-vip-d-ng-nh-p-accent-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-22-vip-d-ng-nh-p__hero-description {
      font-size: 1.2em;
      color: var(--page-22-vip-d-ng-nh-p-text-light);
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-22-vip-d-ng-nh-p__cta-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-22-vip-d-ng-nh-p__button {
      background-color: var(--page-22-vip-d-ng-nh-p-primary-color);
      color: var(--page-22-vip-d-ng-nh-p-text-light);
      padding: 15px 30px;
      border: none;
      border-radius: var(--page-22-vip-d-ng-nh-p-border-radius);
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none; /* For external links */
      display: inline-block;
    }

    .page-22-vip-d-ng-nh-p__button:hover {
      background-color: #ff6a00;
      transform: translateY(-2px);
    }

    .page-22-vip-d-ng-nh-p__button--secondary {
      background-color: var(--page-22-vip-d-ng-nh-p-secondary-color);
    }

    .page-22-vip-d-ng-nh-p__button--secondary:hover {
      background-color: #555;
    }

    /* Features/Benefits Section */
    .page-22-vip-d-ng-nh-p__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-22-vip-d-ng-nh-p__feature-card {
      background-color: var(--page-22-vip-d-ng-nh-p-background-light);
      padding: 30px;
      border-radius: var(--page-22-vip-d-ng-nh-p-border-radius);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      border: 1px solid transparent;
    }

    .page-22-vip-d-ng-nh-p__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      border-color: var(--page-22-vip-d-ng-nh-p-primary-color);
    }

    .page-22-vip-d-ng-nh-p__feature-icon {
      margin-bottom: 20px;
      width: 80px; /* Base size, will be overridden by max-width: 100% and height: auto */
      height: 80px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-22-vip-d-ng-nh-p__feature-title {
      font-size: 1.5em;
      color: var(--page-22-vip-d-ng-nh-p-accent-color);
      margin-bottom: 10px;
    }

    .page-22-vip-d-ng-nh-p__feature-description {
      font-size: 0.95em;
      color: var(--page-22-vip-d-ng-nh-p-text-light);
    }

    /* Product Showcase Section */
    .page-22-vip-d-ng-nh-p__product-showcase {
      padding: var(--page-22-vip-d-ng-nh-p-padding-section);
      background-color: var(--page-22-vip-d-ng-nh-p-background-dark);
    }

    .page-22-vip-d-ng-nh-p__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-22-vip-d-ng-nh-p__product-card {
      background-color: var(--page-22-vip-d-ng-nh-p-background-light);
      border-radius: var(--page-22-vip-d-ng-nh-p-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: left;
      box-sizing: border-box;
    }

    .page-22-vip-d-ng-nh-p__product-card:hover {
      transform: translateY(-8px);
    }

    .page-22-vip-d-ng-nh-p__product-image-wrapper {
      width: 100%;
      height: 220px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-22-vip-d-ng-nh-p__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .page-22-vip-d-ng-nh-p__product-card:hover .page-22-vip-d-ng-nh-p__product-image {
      transform: scale(1.05);
    }

    .page-22-vip-d-ng-nh-p__product-content {
      padding: 20px;
    }

    .page-22-vip-d-ng-nh-p__product-title {
      font-size: 1.3em;
      color: var(--page-22-vip-d-ng-nh-p-primary-color);
      margin-bottom: 10px;
    }

    .page-22-vip-d-ng-nh-p__product-description {
      font-size: 0.9em;
      color: var(--page-22-vip-d-ng-nh-p-text-light);
    }

    /* FAQ Section */
    .page-22-vip-d-ng-nh-p__faq-section {
      padding: var(--page-22-vip-d-ng-nh-p-padding-section);
      background-color: var(--page-22-vip-d-ng-nh-p-background-light);
    }

    .page-22-vip-d-ng-nh-p__faq-container {
      max-width: 800px;
      margin: 30px auto 0;
      text-align: left;
    }

    .page-22-vip-d-ng-nh-p__faq-item {
      background-color: var(--page-22-vip-d-ng-nh-p-background-dark);
      margin-bottom: 15px;
      border-radius: var(--page-22-vip-d-ng-nh-p-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-22-vip-d-ng-nh-p__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #222;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

    .page-22-vip-d-ng-nh-p__faq-question:hover {
      background-color: #333;
    }

    .page-22-vip-d-ng-nh-p__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-22-vip-d-ng-nh-p-accent-color);
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-22-vip-d-ng-nh-p__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-22-vip-d-ng-nh-p-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

    .page-22-vip-d-ng-nh-p__faq-item.active .page-22-vip-d-ng-nh-p__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-22-vip-d-ng-nh-p__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(--page-22-vip-d-ng-nh-p-text-light);
      background-color: var(--page-22-vip-d-ng-nh-p-background-dark);
      font-size: 0.95em;
    }

    .page-22-vip-d-ng-nh-p__faq-item.active .page-22-vip-d-ng-nh-p__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Floating Buttons */
    .page-22-vip-d-ng-nh-p__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-22-vip-d-ng-nh-p__floating-button {
      background-color: var(--page-22-vip-d-ng-nh-p-primary-color);
      color: var(--page-22-vip-d-ng-nh-p-text-light);
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .page-22-vip-d-ng-nh-p__floating-button:hover {
      background-color: #ff6a00;
      transform: translateY(-3px);
    }

    .page-22-vip-d-ng-nh-p__floating-button--login {
      background-color: var(--page-22-vip-d-ng-nh-p-accent-color);
      color: var(--page-22-vip-d-ng-nh-p-text-dark);
    }

    .page-22-vip-d-ng-nh-p__floating-button--login:hover {
      background-color: #ffeb3b;
      transform: translateY(-3px);
    }

    .page-22-vip-d-ng-nh-p__floating-button-icon {
        width: 24px;
        height: 24px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-22-vip-d-ng-nh-p__section {
        padding: var(--page-22-vip-d-ng-nh-p-mobile-padding-section);
      }

      .page-22-vip-d-ng-nh-p__title {
        font-size: 2em;
      }

      .page-22-vip-d-ng-nh-p__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }

      .page-22-vip-d-ng-nh-p__hero-title {
        font-size: 2.2em;
      }

      .page-22-vip-d-ng-nh-p__hero-description {
        font-size: 1em;
      }

      .page-22-vip-d-ng-nh-p__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-22-vip-d-ng-nh-p__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-22-vip-d-ng-nh-p__features-grid,
      .page-22-vip-d-ng-nh-p__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-22-vip-d-ng-nh-p__feature-card,
      .page-22-vip-d-ng-nh-p__product-card {
        padding: 20px;
      }

      .page-22-vip-d-ng-nh-p__product-image-wrapper {
        height: 180px;
      }

      .page-22-vip-d-ng-nh-p__faq-question {
        padding: 12px 15px;
      }

      .page-22-vip-d-ng-nh-p__faq-question h3 {
        font-size: 1em;
      }

      .page-22-vip-d-ng-nh-p__faq-answer {
        padding: 15px !important;
        font-size: 0.9em;
      }

      /* Mobile specific for list items */
      .page-22-vip-d-ng-nh-p__features-grid .page-22-vip-d-ng-nh-p__feature-card,
      .page-22-vip-d-ng-nh-p__product-grid .page-22-vip-d-ng-nh-p__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-22-vip-d-ng-nh-p__features-grid,
      .page-22-vip-d-ng-nh-p__product-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Ensure the grid container itself doesn't overflow */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-22-vip-d-ng-nh-p__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }

      .page-22-vip-d-ng-nh-p__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    /* Images responsiveness */
    .page-22-vip-d-ng-nh-p img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    .page-22-vip-d-ng-nh-p__product-image-wrapper,
    .page-22-vip-d-ng-nh-p__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-22-vip-d-ng-nh-p img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-22-vip-d-ng-nh-p__product-image-wrapper,
        .page-22-vip-d-ng-nh-p__feature-icon-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }
  