
    /* CSS cho trang SV388 trực tiếp */
    .page-sv388live {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-sv388live__section {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      box-sizing: border-box;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-sv388live__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-sv388live__title {
      font-size: 2.5em;
      color: #c0392b; /* Đỏ đô */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 10px; /* Để tránh bị header cố định che */
    }

    .page-sv388live__subtitle {
      font-size: 1.8em;
      color: #2980b9; /* Xanh dương */
      text-align: center;
      margin-bottom: 15px;
    }

    .page-sv388live__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-sv388live__text strong {
      color: #e74c3c; /* Đỏ tươi */
    }

    .page-sv388live__link {
      color: #2980b9;
      text-decoration: none;
      font-weight: bold;
    }

    .page-sv388live__link:hover {
      text-decoration: underline;
    }

    /* Hero Section */
    .page-sv388live__hero-section {
      padding-top: 10px; /* Đảm bảo nội dung không bị header cố định che */
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .page-sv388live__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-sv388live__hero-content {
      text-align: center;
      padding: 20px 0;
    }

    /* Floating Button */
    .page-sv388live__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e74c3c; /* Đỏ tươi */
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-sv388live__floating-button:hover {
      background-color: #c0392b; /* Đỏ đô */
      transform: translateY(-3px);
    }

    /* Game List/Product Display */
    .page-sv388live__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-sv388live__game-card {
      background-color: #f8f8f8;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-sv388live__game-card:hover {
      transform: translateY(-5px);
    }

    .page-sv388live__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-sv388live__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .page-sv388live__game-card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
    }

    .page-sv388live__game-card-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
      min-height: 2.8em; /* Đảm bảo chiều cao tối thiểu cho tiêu đề */
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .page-sv388live__game-card-button {
      display: inline-block;
      background-color: #2980b9;
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      width: fit-content;
      margin: 0 auto;
    }

    .page-sv388live__game-card-button:hover {
      background-color: #2471a3;
    }

    /* Provider Logos */
    .page-sv388live__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-sv388live__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      background-color: #f0f0f0;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .page-sv388live__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      filter: grayscale(10%); /* Nhẹ nhàng để không thay đổi màu sắc chính */
      transition: filter 0.3s ease;
    }

    .page-sv388live__provider-logo:hover {
      filter: grayscale(0%);
    }

    /* Payment Methods */
    .page-sv388live__payment-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-sv388live__payment-item {
      background-color: #ecf0f1;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      color: #2c3e50;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

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

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

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

    .page-sv388live__faq-question:hover {
      background-color: #2980b9;
    }

    .page-sv388live__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn việc click vào h3 làm chặn sự kiện của div */
    }

    .page-sv388live__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      pointer-events: none; /* Ngăn chặn việc click vào toggle làm chặn sự kiện của div */
      transition: transform 0.3s ease;
    }

    .page-sv388live__faq-item.active .page-sv388live__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }

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

    .page-sv388live__faq-item.active .page-sv388live__faq-answer {
      max-height: 2000px !important; /* Đảm bảo đủ lớn cho mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-sv388live__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-sv388live__title {
        font-size: 2em;
        padding-top: 10px; /* Mobile padding for header */
      }

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

      .page-sv388live__text {
        font-size: 1em;
      }

      .page-sv388live__section {
        padding: 20px 15px;
      }

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

      .page-sv388live__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-sv388live__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      /* Force responsive image styles for mobile */
      .page-sv388live__hero-image,
      .page-sv388live__game-card-image,
      .page-sv388live__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sv388live__hero-image-container,
      .page-sv388live__game-card-image-container,
      .page-sv388live__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

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

      .page-sv388live__faq-question h3 {
        font-size: 1em;
      }

      .page-sv388live__faq-answer {
        padding: 15px 15px;
      }
    }
  