
    /* CSS Styles for page-taixiub52 */
    :root {
      --page-taixiub52-primary-color: #007bff; /* Blue */
      --page-taixiub52-secondary-color: #28a745; /* Green */
      --page-taixiub52-text-color: #212529; /* Dark Gray */
      --page-taixiub52-bg-color: #f8f9fa; /* Light Gray */
      --page-taixiub52-card-bg: #ffffff; /* White */
      --page-taixiub52-border-color: #e0e0e0; /* Light Border */
      --page-taixiub52-dark-bg: #343a40; /* Dark Background */
      --page-taixiub52-dark-text: #ffffff; /* White Text for dark backgrounds */
    }

    .page-taixiub52 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-taixiub52-text-color);
      background-color: var(--page-taixiub52-bg-color);
      padding-top: 160px; /* Vùng an toàn cho header/menu nổi */
      position: relative;
    }

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

    /* Hero Section */
    .page-taixiub52-hero {
      position: relative;
      background: var(--page-taixiub52-dark-bg); /* Fallback */
      background-image: url('[GALLERY:banner:taixiu,b52,hero,desktop]');
      background-size: cover;
      background-position: center top; /* Đảm bảo hình ảnh banner ở phía trên */
      color: var(--page-taixiub52-dark-text);
      text-align: center;
      padding: 4rem 1rem;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 2rem;
      min-height: 300px; 
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .page-taixiub52-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Lớp phủ để tăng khả năng đọc văn bản */
        z-index: 1;
    }
    .page-taixiub52-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-taixiub52-hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      color: var(--page-taixiub52-dark-text);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-taixiub52-hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--page-taixiub52-dark-text);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-taixiub52-btn {
      display: inline-block;
      background-color: var(--page-taixiub52-secondary-color);
      color: var(--page-taixiub52-dark-text);
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
    }

    .page-taixiub52-btn:hover {
      background-color: #218838; /* Màu xanh đậm hơn */
    }

    /* Floating Login Button */
    .page-taixiub52-floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-taixiub52-primary-color);
      color: var(--page-taixiub52-dark-text);
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1rem;
      text-align: center;
    }

    .page-taixiub52-floating-btn:hover {
      background-color: #0056b3; /* Màu xanh đậm hơn */
      transform: translateY(-3px);
    }

    /* Sections */
    .page-taixiub52-section {
      background-color: var(--page-taixiub52-card-bg);
      padding: 2rem;
      margin-bottom: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    .page-taixiub52-section.page-taixiub52-dark-section {
        background-color: var(--page-taixiub52-dark-bg);
        color: var(--page-taixiub52-dark-text);
    }
    .page-taixiub52-dark-section h2, .page-taixiub52-dark-section h3 {
        color: var(--page-taixiub52-dark-text);
    }

    .page-taixiub52-section h2 {
      font-size: 2rem;
      color: var(--page-taixiub52-primary-color);
      margin-bottom: 1.5rem;
      text-align: center;
      position: relative;
    }
    .page-taixiub52-section h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--page-taixiub52-secondary-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-taixiub52-section h3 {
      font-size: 1.5rem;
      color: var(--page-taixiub52-text-color);
      margin-top: 1.5rem;
      margin-bottom: 1rem;
    }
    .page-taixiub52-dark-section h3 {
        color: var(--page-taixiub52-dark-text);
    }

    /* Grid Layouts */
    .page-taixiub52-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .page-taixiub52-card {
      background-color: var(--page-taixiub52-card-bg);
      border: 1px solid var(--page-taixiub52-border-color);
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-taixiub52-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-taixiub52-card img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 1rem;
    }
    .page-taixiub52-card.page-taixiub52-game-logo img {
        max-height: 80px; /* Chiều cao cụ thể cho logo nhà cung cấp game */
        object-fit: contain;
        margin-bottom: 0.5rem;
    }

    .page-taixiub52-card h4 {
      font-size: 1.2rem;
      color: var(--page-taixiub52-primary-color);
      margin-bottom: 0.5rem;
    }
    .page-taixiub52-card p {
        font-size: 0.95rem;
        color: #555;
    }

    .page-taixiub52-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-taixiub52-list li {
      background-color: #e9ecef;
      margin-bottom: 0.5rem;
      padding: 0.75rem 1rem;
      border-radius: 4px;
      display: flex;
      align-items: center;
      color: var(--page-taixiub52-text-color);
    }
    .page-taixiub52-list li::before {
        content: '✓';
        color: var(--page-taixiub52-secondary-color);
        font-weight: bold;
        margin-right: 0.5rem;
    }

    .page-taixiub52-promo-banner {
        text-align: center;
        margin: 2rem 0;
        padding: 2rem 1rem;
        background-color: var(--page-taixiub52-primary-color);
        color: var(--page-taixiub52-dark-text);
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .page-taixiub52-promo-banner h3 {
        color: var(--page-taixiub52-dark-text);
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .page-taixiub52-promo-banner p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .page-taixiub52-faq-item {
        background-color: var(--page-taixiub52-card-bg);
        border: 1px solid var(--page-taixiub52-border-color);
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
    }
    .page-taixiub52-faq-item summary {
        font-weight: bold;
        cursor: pointer;
        color: var(--page-taixiub52-primary-color);
        padding: 0.5rem 0;
        outline: none;
    }
    .page-taixiub52-faq-item p {
        padding-top: 1rem;
        margin-bottom: 0;
        color: var(--page-taixiub52-text-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-taixiub52-hero h1 {
        font-size: 2rem;
      }
      .page-taixiub52-hero p {
        font-size: 1rem;
      }
      .page-taixiub52-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
      }
      .page-taixiub52-section {
        padding: 1.5rem;
      }
      .page-taixiub52-section h2 {
        font-size: 1.7rem;
      }
      .page-taixiub52-floating-btn {
        bottom: 15px;
        right: 15px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
      .page-taixiub52 {
        padding-top: 120px; /* Điều chỉnh vùng an toàn cho màn hình nhỏ hơn */
      }
    }

    @media (max-width: 480px) {
      .page-taixiub52-hero {
        padding: 2rem 1rem;
      }
      .page-taixiub52-hero h1 {
        font-size: 1.8rem;
      }
      .page-taixiub52-hero p {
        font-size: 0.9rem;
      }
      .page-taixiub52-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
      .page-taixiub52-section {
        padding: 1rem;
      }
      .page-taixiub52-section h2 {
        font-size: 1.5rem;
      }
      .page-taixiub52-floating-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        bottom: 10px;
        right: 10px;
      }
      .page-taixiub52-grid {
          grid-template-columns: 1fr;
      }
      .page-taixiub52 {
        padding-top: 100px; /* Điều chỉnh thêm vùng an toàn */
      }
    }
  