
    /* Tổng thể */
    .page-saowin92 {
      font-family: 'Arial', sans-serif;
      color: #fff;
      background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Phần Hero */
    .page-saowin92__hero-section {
      position: relative;
      padding-top: 10px; /* Dành chỗ cho thanh điều hướng cố định */
      text-align: center;
      color: #fff;
      padding-bottom: 30px;
    }

    .page-saowin92__hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-saowin92__hero-content {
      position: relative;
      z-index: 10;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-saowin92__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* Nút đăng ký/đăng nhập nổi */
    .page-saowin92__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(45deg, #ff416c, #ff4b2b);
      color: #fff;
      border: none;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse 2s infinite;
      text-decoration: none; /* Đảm bảo không có gạch chân */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-saowin92__floating-button:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    /* Các phần nội dung chung */
    .page-saowin92__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-saowin92__section-title {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

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

    .page-saowin92__card {
      background-color: #282844;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 250px;
    }

    .page-saowin92__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-saowin92__card-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ff4b2b;
      padding: 5px;
      box-sizing: border-box;
    }

    .page-saowin92__card-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-saowin92__card-description {
      font-size: 0.95em;
      color: #e0e0e0;
    }

    /* Phần nhà cung cấp game */
    .page-saowin92__provider-logo {
      width: 150px;
      height: 80px;
      object-fit: contain;
      margin: 10px;
      filter: grayscale(10%);
      transition: filter 0.3s ease;
    }

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

    /* Nút CTA chính */
    .page-saowin92__cta-button {
      display: inline-block;
      background: linear-gradient(45deg, #ff416c, #ff4b2b);
      color: #fff;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      margin-top: 40px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-saowin92__cta-button:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    /* Phần giới thiệu */
    .page-saowin92__about-content {
        text-align: left;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    .page-saowin92__about-content h3 {
        color: #ffd700;
        font-size: 1.5em;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-saowin92__about-content p {
        margin-bottom: 15px;
    }

    .page-saowin92__about-content ul {
        list-style: none;
        padding-left: 0;
    }

    .page-saowin92__about-content ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }

    .page-saowin92__about-content ul li::before {
        content: '✓';
        color: #ff4b2b;
        position: absolute;
        left: 0;
        top: 0;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-saowin92__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-saowin92__faq-item {
      background-color: #282844;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-saowin92__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #3a3a5a;
      border-bottom: 1px solid #4f4f7a;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-saowin92__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #ffd700;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-saowin92__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ff4b2b;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên span */
    }

    .page-saowin92__faq-item.active .page-saowin92__faq-toggle {
      transform: rotate(45deg); /* Biến dấu '+' thành 'x' hoặc '-' */
    }

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

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-saowin92__hero-section {
        padding-top: 10px; /* Dành chỗ cho thanh điều hướng cố định trên di động */
      }

      .page-saowin92__hero-title {
        font-size: 1.8em;
      }

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

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

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

      .page-saowin92__section-title {
        font-size: 1.6em;
      }

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

      .page-saowin92__card {
        padding: 20px;
        min-height: 200px;
      }

      .page-saowin92__card-icon {
        width: 80px;
        height: 80px;
      }

      .page-saowin92__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-saowin92__faq-question {
        padding: 12px 15px;
      }

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

      .page-saowin92__faq-answer {
        padding: 0 15px;
      }

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

      /* Responsive image optimization */
      .page-saowin92 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-saowin92__hero-banner,
      .page-saowin92__card-icon,
      .page-saowin92__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  