
    /* Tổng quan */
    .page-gamvip {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Cho nút đăng nhập nổi */
    }

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

    .page-gamvip__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-gamvip__section--light {
      background-color: #ffffff;
    }

    .page-gamvip__section--dark {
      background-color: #e9ecef;
    }

    .page-gamvip__title {
      font-size: 2.5em;
      color: #007bff;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-gamvip__subtitle {
      font-size: 1.8em;
      color: #28a745;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-gamvip__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    /* Hero Section */
    .page-gamvip__hero-section {
      position: relative;
      background-color: #0056b3; /* Màu nền dự phòng */
      color: #ffffff;
      padding-top: 10px; /* Đảm bảo không bị che bởi header cố định */
      text-align: center;
      overflow: hidden; /* Đảm bảo hình ảnh không tràn ra */
      min-height: 300px; /* Chiều cao tối thiểu */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-gamvip__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .page-gamvip__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-gamvip__hero-content {
      padding: 20px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-gamvip__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-gamvip__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    /* Nút Đăng Nhập Nổi */
    .page-gamvip__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
    }

    .page-gamvip__floating-login-button:hover {
      background-color: #e0a800;
      transform: scale(1.05);
    }

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

    /* Grid sản phẩm/game */
    .page-gamvip__game-grid,
    .page-gamvip__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-gamvip__game-item,
    .page-gamvip__provider-item {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
    }

    .page-gamvip__game-item:hover,
    .page-gamvip__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-gamvip__game-image-wrapper,
    .page-gamvip__provider-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .page-gamvip__game-image,
    .page-gamvip__provider-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: contain; /* Đảm bảo logo không bị cắt xén */
    }

    .page-gamvip__game-title,
    .page-gamvip__provider-title {
      font-size: 1.3em;
      color: #007bff;
      margin-top: 10px;
      font-weight: 600;
    }

    .page-gamvip__game-link,
    .page-gamvip__provider-link {
        text-decoration: none;
        color: inherit;
    }

    /* Phần Khuyến Mãi */
    .page-gamvip__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 25px;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-gamvip__promo-card h3 {
      color: #dc3545;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-gamvip__promo-card p {
      color: #555;
      font-size: 1.1em;
    }

    /* Phần Tải Ứng Dụng */
    .page-gamvip__download-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-gamvip__download-button {
      background-color: #28a745;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-gamvip__download-button:hover {
      background-color: #218838;
    }

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

    .page-gamvip__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-gamvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f8ff;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-gamvip__faq-question:hover {
      background-color: #e6f2ff;
    }

    .page-gamvip__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #007bff;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-gamvip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
    }

    .page-gamvip__faq-item.active .page-gamvip__faq-toggle {
      transform: rotate(45deg);
    }

    .page-gamvip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1.05em;
    }

    .page-gamvip__faq-item.active .page-gamvip__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-gamvip__title {
        font-size: 2em;
      }

      .page-gamvip__subtitle {
        font-size: 1.5em;
      }

      .page-gamvip__hero-title {
        font-size: 2.2em;
      }

      .page-gamvip__hero-description {
        font-size: 1em;
      }

      .page-gamvip__game-grid,
      .page-gamvip__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
      }

      .page-gamvip__game-item,
      .page-gamvip__provider-item {
        padding: 10px;
      }

      .page-gamvip__game-title,
      .page-gamvip__provider-title {
        font-size: 1.1em;
      }

      .page-gamvip__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-gamvip__section {
        padding: 30px 0;
      }

      .page-gamvip__faq-question {
        padding: 15px 20px;
      }

      .page-gamvip__faq-question h3 {
        font-size: 1.1em;
      }

      .page-gamvip__faq-toggle {
        font-size: 1.5em;
      }

      .page-gamvip__faq-answer {
        padding: 0 20px;
      }

      .page-gamvip__faq-item.active .page-gamvip__faq-answer {
        padding: 15px 20px !important;
      }

      /* Mobile image responsive */
      .page-gamvip__hero-image,
      .page-gamvip__game-image,
      .page-gamvip__provider-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-gamvip__hero-image-wrapper,
      .page-gamvip__game-image-wrapper,
      .page-gamvip__provider-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  