
    :root {
      --page-taixiu-primary-color: #f7d04e; /* Vàng sáng */
      --page-taixiu-secondary-color: #d12e2e; /* Đỏ đậm */
      --page-taixiu-dark-background: #1a1a1a; /* Nền tối */
      --page-taixiu-light-text: #ffffff; /* Chữ sáng */
      --page-taixiu-dark-text: #333333; /* Chữ tối */
      --page-taixiu-accent-color: #4CAF50; /* Xanh lá */
      --page-taixiu-border-color: #333333;
    }

    .page-taixiu {
      font-family: 'Arial', sans-serif;
      color: var(--page-taixiu-light-text);
      background-color: var(--page-taixiu-dark-background);
      line-height: 1.6;
    }

    .page-taixiu-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: #222222; /* Slightly lighter dark background for sections */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    @media (min-width: 768px) {
      .page-taixiu-section {
        padding: 30px 25px;
      }
    }

    .page-taixiu-h1,
    .page-taixiu-h2,
    .page-taixiu-h3 {
      color: var(--page-taixiu-primary-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-taixiu-h1 {
      font-size: 2.2em;
      margin-top: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-taixiu-h2 {
      font-size: 1.8em;
      color: var(--page-taixiu-primary-color);
      border-bottom: 2px solid var(--page-taixiu-secondary-color);
      padding-bottom: 10px;
      margin-bottom: 25px;
    }

    .page-taixiu-h3 {
      font-size: 1.4em;
      color: var(--page-taixiu-light-text);
      margin-top: 20px;
      margin-bottom: 15px;
    }

    .page-taixiu-p {
      margin-bottom: 15px;
      color: var(--page-taixiu-light-text);
    }

    .page-taixiu-list {
      list-style-type: disc;
      margin-left: 20px;
      padding-left: 0;
      margin-bottom: 15px;
      color: var(--page-taixiu-light-text);
    }

    .page-taixiu-list li {
      margin-bottom: 8px;
    }

    .page-taixiu-button {
      display: inline-block;
      background-color: var(--page-taixiu-secondary-color);
      color: var(--page-taixiu-light-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

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

    .page-taixiu-center {
      text-align: center;
    }

    /* Hero Banner */
    .page-taixiu-hero {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: var(--page-taixiu-dark-background);
      padding-top: 140px; /* Safe zone for floating menu */
    }

    .page-taixiu-hero-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain; /* Ensure image maintains aspect ratio */
      margin: 0 auto;
      max-width: 100%;
      border-radius: 8px;
    }

    /* Floating Login/Register Button */
    .page-taixiu-floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      text-align: center;
    }

    .page-taixiu-floating-button {
      background-color: var(--page-taixiu-accent-color);
      color: var(--page-taixiu-light-text);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      animation: page-taixiu-pulse 2s infinite;
      display: block;
      width: 100%;
      border: 2px solid var(--page-taixiu-primary-color);
    }

    .page-taixiu-floating-button:hover {
      background-color: #3e8e41;
      animation: none;
    }

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

    /* Game Product Display */
    .page-taixiu-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      margin-top: 20px;
      justify-items: center;
    }

    .page-taixiu-game-item {
      background-color: #333333;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      width: 100%;
      max-width: 150px;
    }

    .page-taixiu-game-item:hover {
      transform: translateY(-5px);
    }

    .page-taixiu-game-item img {
      width: 100%;
      height: 90px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-taixiu-border-color);
    }

    .page-taixiu-game-item p {
      color: var(--page-taixiu-light-text);
      padding: 10px 5px;
      font-size: 0.9em;
      font-weight: bold;
      margin: 0;
    }

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

    .page-taixiu-provider-logo {
      background-color: #333333;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      width: 100%;
      max-width: 100px;
      height: 60px; /* Fixed height for logos */
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    /* Responsive adjustments */
    @media (max-width: 480px) {
      .page-taixiu-h1 {
        font-size: 1.8em;
      }
      .page-taixiu-h2 {
        font-size: 1.5em;
      }
      .page-taixiu-floating-button {
        font-size: 1.1em;
        padding: 12px 20px;
      }
      .page-taixiu-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-taixiu-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
      }
    }
  