
    /* Reset và các biến cơ bản, đảm bảo không xung đột */
    .page-vic88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7fa;
      padding-bottom: 80px; /* Dành chỗ cho nút CTA cố định */
    }

    .page-vic88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-vic88__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px; /* Đảm bảo chiều cao tối thiểu */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Để tránh bị che bởi header cố định */
      box-sizing: border-box;
    }

    .page-vic88__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    
    .page-vic88__hero-content {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, 0.5);
      padding: 20px 30px;
      border-radius: 10px;
      max-width: 90%;
    }

    .page-vic88__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffcc00; /* Màu vàng nổi bật */
    }

    .page-vic88__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    /* Floating CTA Button */
    .page-vic88__floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(90deg, #ff6b6b, #ee5253);
      padding: 15px 0;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-vic88__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Màu vàng nổi bật */
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-vic88__cta-button:hover {
      background-color: #e6b800;
    }

    /* Section Styling */
    .page-vic88__section {
      background-color: #fff;
      margin-bottom: 25px;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-vic88__section-title {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-vic88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    /* Content Blocks */
    .page-vic88__text-block p {
      margin-bottom: 15px;
      font-size: 1.05em;
      line-height: 1.7;
    }

    /* Game Cards / Feature Grid */
    .page-vic88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .page-vic88__game-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

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

    .page-vic88__game-card-image {
      width: 100%;
      height: 200px; /* Đảm bảo chiều cao tối thiểu cho hình ảnh */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Đảm bảo hình ảnh responsive */
      box-sizing: border-box;
    }

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

    .page-vic88__game-card-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-vic88__card-action {
      display: block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Đẩy nút xuống dưới */
    }

    .page-vic88__card-action:hover {
      background-color: #0056b3;
    }

    /* Download Section */
    .page-vic88__download-options {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .page-vic88__download-button {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #28a745;
      color: #fff;
      padding: 15px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 350px;
      margin: 0 auto;
      box-sizing: border-box;
    }

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

    /* FAQ Section */
    .page-vic88__faq-list {
      margin-top: 20px;
    }

    .page-vic88__faq-item {
      background-color: #f0f8ff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

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

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

    .page-vic88__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from interfering with click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-vic88__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

    .page-vic88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #333;
      background-color: #e9f5ff;
    }

    .page-vic88__faq-answer p {
      margin: 0;
      padding-bottom: 15px; /* Adjust as needed for content */
      font-size: 0.95em;
    }

    .page-vic88__faq-item.active .page-vic88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-vic88__faq-item.active .page-vic88__faq-toggle {
      content: '−';
    }

    /* General lists */
    .page-vic88__list {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-vic88__list-item {
      margin-bottom: 10px;
      font-size: 1.05em;
      color: #444;
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-vic88__hero-title {
        font-size: 1.8em;
      }

      .page-vic88__hero-subtitle {
        font-size: 1em;
      }

      .page-vic88__section {
        padding: 20px 10px;
      }

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

      .page-vic88__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-vic88__game-card-image {
        height: 180px;
      }

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

      .page-vic88__game-card-description {
        font-size: 0.9em;
      }

      .page-vic88__download-button {
        padding: 12px 15px;
        font-size: 1em;
        max-width: 100%;
      }

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

      .page-vic88__faq-answer {
        padding: 0 10px;
      }

      .page-vic88__faq-item.active .page-vic88__faq-answer {
        padding: 15px 10px !important;
      }

      /* Responsive list items */
      .page-vic88__list {
        padding-left: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-vic88__container {
        padding: 0 10px;
      }

      .page-vic88__hero-section {
        padding-top: 10px; /* Adjust if header is taller on mobile */
      }
    }

    @media (max-width: 480px) {
      .page-vic88__hero-title {
        font-size: 1.5em;
      }
      .page-vic88__hero-subtitle {
        font-size: 0.9em;
      }
      .page-vic88__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  