
    /* Reset và các cài đặt cơ bản cho trang */
    .page-sv388daga {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng cho nền tối */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

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

    /* Tiêu đề */
    .page-sv388daga__heading-primary {
      color: #ffd700; /* Vàng kim */
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      line-height: 1.2;
    }

    .page-sv388daga__heading-secondary {
      color: #00ff00; /* Xanh lá */
      text-align: center;
      margin-top: 40px;
      margin-bottom: 25px;
      font-size: 2em;
    }

    .page-sv388daga__heading-tertiary {
      color: #00bfff; /* Xanh da trời */
      margin-top: 30px;
      margin-bottom: 15px;
      font-size: 1.5em;
    }

    /* Đoạn văn bản */
    .page-sv388daga__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    /* Liên kết trong nội dung */
    .page-sv388daga__link {
      color: #00bfff; /* Xanh da trời */
      text-decoration: underline;
      transition: color 0.3s ease;
    }

    .page-sv388daga__link:hover {
      color: #87ceeb; /* Xanh da trời nhạt hơn */
    }

    /* Nút chung */
    .page-sv388daga__button {
      display: inline-block;
      background-color: #ff4500; /* Cam đỏ */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-sv388daga__button:hover {
      background-color: #e63e00;
      transform: translateY(-2px);
    }

    .page-sv388daga__button--large {
      padding: 15px 30px;
      font-size: 1.2em;
    }

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

    .page-sv388daga__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      text-align: center; /* Căn giữa hình ảnh */
    }

    .page-sv388daga__hero-image {
      max-width: 100%;
      height: auto;
      display: block; /* Loại bỏ khoảng trắng thừa bên dưới hình ảnh */
      margin: 0 auto; /* Căn giữa hình ảnh */
    }

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

    /* Nút đăng nhập nổi */
    .page-sv388daga__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ff0000; /* Đỏ rực */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: page-sv388daga__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-sv388daga__floating-button:hover {
      background-color: #cc0000;
      animation: none;
    }

    @keyframes page-sv388daga__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
      }
    }

    /* Danh mục trò chơi / Hiển thị sản phẩm */
    .page-sv388daga__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      margin-bottom: 40px;
    }

    .page-sv388daga__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      text-decoration: none;
      color: inherit;
    }

    .page-sv388daga__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-sv388daga__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Chiều cao cố định cho hình ảnh sản phẩm */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #333;
    }

    .page-sv388daga__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Đảm bảo hình ảnh bao phủ toàn bộ khu vực */
      width: 100%;
      height: 100%;
    }

    .page-sv388daga__game-info {
      padding: 20px;
    }

    .page-sv388daga__game-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
      display: block; /* Đảm bảo tiêu đề liên kết lấp đầy thẻ */
    }

    /* Nhà cung cấp trò chơi */
    .page-sv388daga__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 40px;
    }

    .page-sv388daga__provider-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.2s ease;
      min-height: 150px; /* Đảm bảo chiều cao tối thiểu */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-sv388daga__provider-card:hover {
      transform: translateY(-3px);
    }

    .page-sv388daga__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 80px; /* Chiều cao cố định cho logo */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-sv388daga__provider-logo {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      display: block;
      object-fit: contain; /* Đảm bảo logo vừa vặn mà không bị cắt */
    }

    .page-sv388daga__provider-name {
      font-size: 1em;
      color: #f0f0f0;
      margin-top: 10px;
      font-weight: bold;
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-sv388daga__faq-section {
      margin-top: 50px;
      margin-bottom: 50px;
    }

    .page-sv388daga__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-sv388daga__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: #ffd700;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-sv388daga__faq-question:hover {
      background-color: #444;
    }

    .page-sv388daga__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
      color: inherit; /* Kế thừa màu từ .page-sv388daga__faq-question */
    }

    .page-sv388daga__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn toggle chặn sự kiện click */
    }

    .page-sv388daga__faq-item.active .page-sv388daga__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc - */
    }

    .page-sv388daga__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #f0f0f0;
    }

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

    /* Thiết kế đáp ứng (Responsive Design) */
    @media (max-width: 768px) {
      .page-sv388daga__container {
        padding: 15px;
      }

      .page-sv388daga__heading-primary {
        font-size: 2em;
      }

      .page-sv388daga__heading-secondary {
        font-size: 1.6em;
      }

      .page-sv388daga__heading-tertiary {
        font-size: 1.3em;
      }

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

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

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

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

      /* Tối ưu hóa hình ảnh đáp ứng cho tất cả hình ảnh */
      .page-sv388daga__hero-image,
      .page-sv388daga__game-image,
      .page-sv388daga__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      /* Các wrapper hình ảnh cũng phải đáp ứng */
      .page-sv388daga__hero-image-wrapper,
      .page-sv388daga__game-image-wrapper,
      .page-sv388daga__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  