
    /* CSS toàn cục cho trang XVIP Win 10 */
    .page-xvipwin10 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-xvipwin10__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Khoảng trống cho header cố định */
      background-color: #000; /* Fallback */
    }

    .page-xvipwin10__hero-banner {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      display: block;
    }

    .page-xvipwin10__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-xvipwin10__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      color: #ffd700; /* Gold */
    }

    .page-xvipwin10__hero-description {
      font-size: 1.2em;
      margin-bottom: 25px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-xvipwin10__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e44d26; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      animation: page-xvipwin10__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .page-xvipwin10__floating-button:hover {
      background-color: #ff6a00;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

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

    .page-xvipwin10__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-xvipwin10__section-title {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-xvipwin10__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e44d26;
      border-radius: 2px;
    }

    .page-xvipwin10__text-content {
      text-align: justify;
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    .page-xvipwin10__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-xvipwin10__game-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-xvipwin10__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-xvipwin10__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-xvipwin10__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-xvipwin10__game-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-xvipwin10__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-xvipwin10__game-button {
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .page-xvipwin10__game-button:hover {
      background-color: #0056b3;
    }

    .page-xvipwin10__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-xvipwin10__list-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
    }

    .page-xvipwin10__list-item-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      object-fit: contain;
      margin-top: 5px;
    }

    .page-xvipwin10__list-item-content {
      flex-grow: 1;
    }

    .page-xvipwin10__list-item-title {
      font-size: 1.2em;
      color: #e44d26;
      margin-bottom: 5px;
    }

    .page-xvipwin10__list-item-text {
      font-size: 1em;
      color: #555;
    }

    .page-xvipwin10__faq-section {
      background-color: #f0f2f5;
      border-radius: 12px;
      padding: 30px;
    }

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

    .page-xvipwin10__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-xvipwin10__faq-question:hover {
      background-color: #0056b3;
    }

    .page-xvipwin10__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #fff; /* Ensure text color is white */
    }

    .page-xvipwin10__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

    .page-xvipwin10__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #fdfdfd;
      color: #444;
      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-xvipwin10__faq-item.active .page-xvipwin10__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Media Queries for Mobile */
    @media (max-width: 768px) {
      .page-xvipwin10__hero-title {
        font-size: 1.8em;
      }

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

      .page-xvipwin10__floating-button {
        width: calc(100% - 40px);
        font-size: 1em;
        padding: 12px 20px;
      }

      .page-xvipwin10__section {
        padding: 30px 15px;
      }

      .page-xvipwin10__section-title {
        font-size: 1.7em;
      }

      .page-xvipwin10__game-grid {
        grid-template-columns: 1fr;
      }

      .page-xvipwin10__game-image-wrapper {
        height: 180px;
      }

      .page-xvipwin10__game-title {
        font-size: 1.2em;
      }

      .page-xvipwin10__list {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-xvipwin10__list-item {
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-xvipwin10__list-item-text {
        font-size: 0.9em;
      }

      .page-xvipwin10__faq-section {
        padding: 20px;
      }

      .page-xvipwin10__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-xvipwin10__faq-answer {
        font-size: 0.95em;
      }

      .page-xvipwin10__game-image {
        max-width: 100%;
        height: auto;
      }
      .page-xvipwin10__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }

    @media (max-width: 480px) {
      .page-xvipwin10__hero-title {
        font-size: 1.5em;
      }
      .page-xvipwin10__hero-description {
        font-size: 0.9em;
      }
      .page-xvipwin10__floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
    }
  