
    /* CSS Styles for page-vip */
    .page-vip {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Đen */
      color: #ffffff; /* Trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Dành chỗ cho nút nổi */
    }

    .page-vip__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-vip__hero-section {
      text-align: center;
      padding: 150px 0 50px 0; /* Đảm bảo không bị che bởi header cố định */
      background-color: #1a1a1a;
      position: relative;
      overflow: hidden;
    }
    .page-vip__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%;
      margin-bottom: 20px;
    }
    .page-vip__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 15px;
    }
    .page-vip__hero-title {
      font-size: 2.8em;
      color: #FFD700; /* Vàng */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    .page-vip__hero-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-vip__hero-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000000;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    .page-vip__hero-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-vip__section {
      padding: 60px 0;
      background-color: #000000;
    }
    .page-vip__section--dark {
      background-color: #1a1a1a;
    }
    .page-vip__section-title {
      font-size: 2.2em;
      color: #FFD700; /* Vàng */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-vip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-vip__text-block {
      margin-bottom: 30px;
      color: #e0e0e0;
      font-size: 1.1em;
    }
    .page-vip__text-block h3 {
      color: #FFD700;
      font-size: 1.6em;
      margin-top: 30px;
      margin-bottom: 15px;
    }
    .page-vip__text-block p {
      margin-bottom: 15px;
    }
    .page-vip__text-block ul {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 15px;
    }
    .page-vip__text-block ol {
      list-style: decimal;
      padding-left: 25px;
      margin-bottom: 15px;
    }
    .page-vip__text-block li {
      margin-bottom: 8px;
    }

    .page-vip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    .page-vip__game-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid #3a3a3a;
    }
    .page-vip__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    .page-vip__game-card-image-wrapper {
      width: 100%;
      max-height: 250px; /* Ensure images are not too tall */
      overflow: hidden;
    }
    .page-vip__game-card-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: transform 0.3s ease;
      min-height: 200px; /* Minimum size for content images */
      min-width: 200px;
    }
    .page-vip__game-card:hover .page-vip__game-card-image {
      transform: scale(1.05);
    }
    .page-vip__game-card-content {
      padding: 20px;
    }
    .page-vip__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .page-vip__game-card-title a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .page-vip__game-card-title a:hover {
      color: #e6c200;
    }
    .page-vip__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }
    .page-vip__game-card-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-vip__game-card-button:hover {
      background-color: #e6c200;
    }

    .page-vip__promo-float-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700; /* Vàng */
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      animation: page-vip__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .page-vip__promo-float-button:hover {
      background-color: #e6c200;
    }

    @keyframes page-vip__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* FAQ Section */
    .page-vip__faq-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }
    .page-vip__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .page-vip__faq-item {
      background-color: #2a2a2a;
      border: 1px solid #3a3a3a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }
    .page-vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-vip__faq-question:hover {
      background-color: #444444;
    }
    .page-vip__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1em; /* Make h3 size consistent with parent */
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }
    .page-vip__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }
    .page-vip__faq-item.active .page-vip__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or -) */
    }
    .page-vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #e0e0e0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }
    .page-vip__faq-item.active .page-vip__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important;
      opacity: 1;
    }
    .page-vip__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-vip__hero-section {
        padding-top: 150px; /* Adjust for mobile fixed header */
        padding-bottom: 30px;
      }
      .page-vip__hero-title {
        font-size: 2em;
      }
      .page-vip__hero-description {
        font-size: 1em;
      }
      .page-vip__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-vip__section {
        padding: 40px 0;
      }
      .page-vip__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-vip__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-vip__game-card-title {
        font-size: 1.3em;
      }
      .page-vip__promo-float-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.95em;
        width: auto; /* Allow content to dictate width */
        max-width: calc(100% - 30px); /* Prevent overflow */
        box-sizing: border-box;
      }
      .page-vip__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-vip__faq-answer {
        padding: 0 20px;
      }
      .page-vip__faq-item.active .page-vip__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive optimization */
      .page-vip img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
      }
      .page-vip__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  