
    /* Tổng quan */
    .page-scv288 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho footer */
    }

    /* Tiêu đề */
    .page-scv288-h1, .page-scv288-h2, .page-scv288-h3 {
      color: #e9c46a; /* Màu vàng nổi bật */
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .page-scv288-h1 {
      font-size: 2.5rem;
      margin-top: 2rem;
    }

    .page-scv288-h2 {
      font-size: 2rem;
      margin-top: 3rem;
    }

    .page-scv288-h3 {
      font-size: 1.5rem;
      margin-top: 2rem;
    }

    /* Phần chính */
    .page-scv288-section {
      padding: 20px 15px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Banner chính */
    .page-scv288-hero {
      position: relative;
      text-align: center;
      padding-top: 150px; /* Safe zone for floating menu */
      background-color: #0f0f1d;
      padding-bottom: 20px;
    }

    .page-scv288-hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

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

    .page-scv288-hero p {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      color: #c0c0c0;
    }

    /* Nút */
    .page-scv288-button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1rem;
      margin: 10px;
      text-align: center;
    }

    .page-scv288-button-primary {
      background-color: #e9c46a;
      color: #1a1a2e;
      border: none;
    }

    .page-scv288-button-primary:hover {
      background-color: #f4d35e;
      transform: translateY(-2px);
    }

    .page-scv288-button-secondary {
      background-color: #3e2e5e;
      color: #e0e0e0;
      border: 1px solid #e9c46a;
    }

    .page-scv288-button-secondary:hover {
      background-color: #5a4a7e;
      transform: translateY(-2px);
    }

    /* Nút nổi */
    .page-scv288-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-around;
      padding: 0 10px;
      z-index: 1000;
      pointer-events: none; /* Cho phép click xuyên qua nếu không phải nút */
    }

    .page-scv288-floating-buttons .page-scv288-button {
      flex: 1;
      max-width: 48%;
      pointer-events: auto; /* Cho phép click trên nút */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 0.9rem; /* Điều chỉnh font size cho mobile */
      padding: 10px 15px;
    }

    /* Lưới sản phẩm/game */
    .page-scv288-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 2rem;
      justify-content: center; /* Căn giữa các item */
    }

    .page-scv288-card {
      background-color: #2e2e4a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 180px; /* Đảm bảo chiều cao tối thiểu */
    }

    .page-scv288-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    }

    .page-scv288-card-image {
      width: 100%;
      height: 100px; /* Chiều cao cố định cho ảnh */
      object-fit: contain; /* Đảm bảo ảnh không bị méo */
      background-color: #3a3a5a; /* Nền cho ảnh */
      padding: 10px;
      border-bottom: 1px solid #4a4a6a;
    }

    .page-scv288-card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-scv288-card-content h3 {
      font-size: 1.1rem;
      margin: 0 0 10px 0;
      color: #e9c46a;
    }

    .page-scv288-card-content p {
      font-size: 0.9rem;
      color: #c0c0c0;
      margin: 0;
    }

    .page-scv288-card a {
      text-decoration: none;
      color: inherit;
    }

    .page-scv288-card a:hover h3 {
      color: #f4d35e;
    }

    /* Danh sách tính năng */
    .page-scv288-features-list {
      list-style: none;
      padding: 0;
      margin: 2rem auto;
      max-width: 800px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-scv288-features-list li {
      background-color: #2e2e4a;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      font-size: 1.05rem;
      position: relative;
      padding-left: 45px;
    }

    .page-scv288-features-list li::before {
      content: '✅'; /* Biểu tượng checkmark */
      position: absolute;
      left: 15px;
      color: #28a745;
      font-size: 1.2rem;
    }

    /* Nhà cung cấp game */
    .page-scv288-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Nhỏ hơn cho logo */
      gap: 15px;
      margin-top: 2rem;
      justify-content: center;
    }

    .page-scv288-provider-logo {
      background-color: #2e2e4a;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 70px; /* Chiều cao cố định cho logo */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .page-scv288-provider-logo:hover {
      transform: scale(1.05);
    }

    .page-scv288-provider-logo img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    /* Phương thức thanh toán */
    .page-scv288-payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 2rem;
      justify-content: center;
    }

    .page-scv288-payment-item {
      background-color: #2e2e4a;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .page-scv288-payment-item:hover {
      transform: translateY(-3px);
    }

    .page-scv288-payment-item img {
      max-width: 80%;
      height: 50px;
      object-fit: contain;
      margin-bottom: 5px;
    }

    .page-scv288-payment-item p {
      font-size: 0.85rem;
      color: #e0e0e0;
      margin: 0;
    }

    /* Phản hồi */
    .page-scv288-testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 2rem;
    }

    .page-scv288-testimonial-card {
      background-color: #2e2e4a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      position: relative;
    }

    .page-scv288-testimonial-card::before {
      content: '❝';
      font-size: 3rem;
      color: rgba(233, 196, 106, 0.3);
      position: absolute;
      top: 10px;
      left: 15px;
    }

    .page-scv288-testimonial-card p {
      font-style: italic;
      margin-bottom: 10px;
      padding-top: 20px;
    }

    .page-scv288-testimonial-card .page-scv288-author {
      font-weight: bold;
      color: #e9c46a;
      text-align: right;
      display: block;
    }

    /* Responsive cho điện thoại */
    @media (max-width: 768px) {
      .page-scv288-h1 {
        font-size: 2rem;
      }

      .page-scv288-h2 {
        font-size: 1.7rem;
      }

      .page-scv288-hero {
        padding-top: 120px; /* Giảm safe zone cho màn hình nhỏ hơn */
      }

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

      .page-scv288-card-image {
        height: 80px;
      }

      .page-scv288-card-content h3 {
        font-size: 1rem;
      }

      .page-scv288-features-list {
        grid-template-columns: 1fr;
      }

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

      .page-scv288-provider-logo {
        height: 60px;
      }

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

    @media (max-width: 480px) {
      .page-scv288-floating-buttons {
        flex-direction: column;
        bottom: 10px;
      }
      .page-scv288-floating-buttons .page-scv288-button {
        max-width: 90%;
        margin: 5px auto;
        font-size: 0.85rem;
        padding: 8px 10px;
      }
      .page-scv288-hero {
        padding-top: 100px; /* Giảm safe zone tối thiểu */
      }
    }
  