
    /* CSS cho trang tải game sunwin */
    :root {
      --page-taigamesunwin-primary-color: #f7b32b; /* Màu vàng cam */
      --page-taigamesunwin-secondary-color: #333; /* Màu xám đậm */
      --page-taigamesunwin-background-dark: #1a1a1a; /* Nền tối */
      --page-taigamesunwin-text-light: #f5f5f5; /* Chữ sáng */
      --page-taigamesunwin-text-dark: #333; /* Chữ tối */
      --page-taigamesunwin-accent-color: #e74c3c; /* Màu đỏ nhấn */
      --page-taigamesunwin-border-color: #444;
    }

    .page-taigamesunwin {
      font-family: 'Arial', sans-serif;
      color: var(--page-taigamesunwin-text-light);
      background-color: var(--page-taigamesunwin-background-dark);
      line-height: 1.6;
      padding-top: 160px; /* An toàn cho menu nổi */
    }

    .page-taigamesunwin .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    /* Hero Section */
    .page-taigamesunwin__hero {
      text-align: center;
      padding: 2rem 1rem;
      background-color: var(--page-taigamesunwin-background-dark);
      margin-bottom: 2rem;
    }

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

    .page-taigamesunwin__hero h1 {
      color: var(--page-taigamesunwin-primary-color);
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-taigamesunwin__hero p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: var(--page-taigamesunwin-text-light);
    }

    .page-taigamesunwin__cta-button {
      display: inline-block;
      background-color: var(--page-taigamesunwin-accent-color);
      color: var(--page-taigamesunwin-text-light);
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-taigamesunwin__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-taigamesunwin__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-taigamesunwin-primary-color);
      color: var(--page-taigamesunwin-background-dark);
      padding: 0.8rem 1.5rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-taigamesunwin-pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .page-taigamesunwin__floating-button:hover {
      background-color: #e0a324;
    }

    @keyframes page-taigamesunwin-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Section Styling */
    .page-taigamesunwin__section {
      background-color: #222;
      padding: 2rem 1rem;
      margin-bottom: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-taigamesunwin__section h2 {
      color: var(--page-taigamesunwin-primary-color);
      text-align: center;
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

    .page-taigamesunwin__section p {
      margin-bottom: 1rem;
      color: var(--page-taigamesunwin-text-light);
    }

    .page-taigamesunwin__section ul {
      list-style-type: none;
      padding: 0;
      margin-top: 1rem;
    }

    .page-taigamesunwin__section ul li {
      background-color: #2a2a2a;
      border-left: 4px solid var(--page-taigamesunwin-primary-color);
      padding: 1rem;
      margin-bottom: 0.8rem;
      border-radius: 5px;
      color: var(--page-taigamesunwin-text-light);
    }

    .page-taigamesunwin__section ul li strong {
      color: var(--page-taigamesunwin-primary-color);
    }

    /* Game Categories / Product Display */
    .page-taigamesunwin__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
      text-align: center;
    }

    .page-taigamesunwin__game-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px 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;
      height: 100%;
    }

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

    .page-taigamesunwin__game-card img {
      width: 100%;
      height: 120px; /* Fixed height for category images */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-taigamesunwin-border-color);
    }

    .page-taigamesunwin__game-card h3 {
      font-size: 1.1rem;
      color: var(--page-taigamesunwin-text-light);
      margin: 1rem 0.5rem;
      flex-grow: 1;
    }

    .page-taigamesunwin__game-card a {
      color: var(--page-taigamesunwin-primary-color);
      text-decoration: none;
      font-weight: bold;
      display: block;
      padding: 0.75rem 0.5rem;
      background-color: #333;
      transition: background-color 0.3s ease;
    }

    .page-taigamesunwin__game-card a:hover {
      background-color: var(--page-taigamesunwin-primary-color);
      color: var(--page-taigamesunwin-background-dark);
    }

    /* Game Providers */
    .page-taigamesunwin__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
      justify-items: center;
    }

    .page-taigamesunwin__provider-logo {
      background-color: #333;
      padding: 0.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .page-taigamesunwin__provider-logo img {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-taigamesunwin__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .page-taigamesunwin__faq-question {
      padding: 1rem;
      background-color: #333;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-taigamesunwin-primary-color);
    }

    .page-taigamesunwin__faq-question::after {
      content: '+';
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .page-taigamesunwin__faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-taigamesunwin__faq-answer {
      padding: 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      color: var(--page-taigamesunwin-text-light);
    }

    .page-taigamesunwin__faq-answer p {
      padding-bottom: 1rem;
      margin: 0;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-taigamesunwin {
        padding-top: 0; /* Trên desktop không cần padding cho menu nổi */
      }
      .page-taigamesunwin__hero h1 {
        font-size: 3.5rem;
      }
      .page-taigamesunwin__hero p {
        font-size: 1.2rem;
      }
      .page-taigamesunwin__section h2 {
        font-size: 2.5rem;
      }
      .page-taigamesunwin__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-taigamesunwin__game-card img {
        height: 150px;
      }
      .page-taigamesunwin__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  