
    /* Reset và cơ bản */
    .page-taib52 {
      font-family: 'Arial', sans-serif;
      color: #FFFFFF; /* Màu chữ trắng */
      background-color: #000000; /* Nền đen */
      line-height: 1.6;
      padding-bottom: 50px; /* Đảm bảo đủ không gian cho footer */
    }

    /* Tiêu đề */
    .page-taib52 h1,
    .page-taib52 h2,
    .page-taib52 h3 {
      color: #FFD700; /* Màu vàng kim */
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-taib52 h1 {
      font-size: 2.8em;
      margin-top: 0;
      padding-top: 20px; /* Để tránh bị che bởi header cố định */
    }

    .page-taib52 h2 {
      font-size: 2.2em;
      padding-top: 40px;
    }

    .page-taib52 h3 {
      font-size: 1.8em;
    }

    /* Đoạn văn */
    .page-taib52 p {
      margin-bottom: 15px;
      text-align: justify;
      color: #FFFFFF;
    }

    /* Container chung */
    .page-taib52__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-taib52__hero-section {
      text-align: center;
      padding: 150px 0 50px; /* Đảm bảo an toàn cho banner, tránh bị header cố định che */
      background-color: #1a1a1a;
      position: relative;
      overflow: hidden;
    }

    .page-taib52__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 30px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }

    .page-taib52__hero-title {
      color: #FFD700;
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-taib52__hero-description {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #E0E0E0;
    }

    .page-taib52__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.4em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

    .page-taib52__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Giới thiệu */
    .page-taib52__intro-section {
      padding: 60px 0;
      background-color: #0a0a0a;
    }

    .page-taib52__intro-text {
      font-size: 1.1em;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    /* Danh mục trò chơi */
    .page-taib52__game-categories {
      padding: 60px 0;
      background-color: #000000;
    }

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

    .page-taib52__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    .page-taib52__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }

    .page-taib52__game-card-image {
      width: 100%;
      max-width: 300px; /* Đảm bảo hình ảnh không quá lớn */
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .page-taib52__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      text-decoration: none;
      display: block; /* Để link bao phủ toàn bộ tiêu đề */
    }

    .page-taib52__game-card-link {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-taib52__game-card-link:hover {
      color: #FFFFFF;
    }

    /* Khuyến mãi */
    .page-taib52__promotions-section {
      padding: 60px 0;
      background-color: #0a0a0a;
    }

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

    .page-taib52__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-taib52__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }

    .page-taib52__promo-card-icon {
      width: 100%;
      max-width: 250px; /* Đảm bảo kích thước hợp lý */
      height: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-taib52__promo-card h3 {
      font-size: 1.6em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-taib52__promo-card p {
      font-size: 1.05em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    .page-taib52__promo-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-taib52__promo-button:hover {
      background-color: #e6c200;
    }

    /* Lý do chọn */
    .page-taib52__why-choose-section {
      padding: 60px 0;
      background-color: #000000;
    }

    .page-taib52__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-taib52__feature-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-taib52__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-taib52__feature-icon {
      width: 100%;
      max-width: 150px; /* Kích thước icon hợp lý */
      height: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-taib52__feature-card h3 {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-taib52__feature-card p {
      font-size: 1em;
      color: #E0E0E0;
    }

    /* Nhà cung cấp trò chơi */
    .page-taib52__providers-section {
      padding: 60px 0;
      background-color: #0a0a0a;
    }

    .page-taib52__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-taib52__provider-logo {
      width: 100%;
      max-width: 120px; /* Kích thước logo nhà cung cấp */
      height: auto;
      padding: 10px;
      background-color: #222;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      object-fit: contain;
    }

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

    /* FAQ Section */
    .page-taib52__faq-section {
      padding: 60px 0;
      background-color: #000000;
    }

    .page-taib52__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
    }

    .page-taib52__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-taib52__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #222222;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #FFD700;
      transition: background-color 0.3s ease;
    }

    .page-taib52__faq-question:hover {
      background-color: #333333;
    }

    .page-taib52__faq-question h3 {
      margin: 0;
      text-align: left;
      color: #FFD700;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-taib52__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
    }

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

    .page-taib52__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #E0E0E0;
      background-color: #1a1a1a;
    }

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

    .page-taib52__faq-answer p {
      margin-bottom: 0;
      text-align: left;
      color: #E0E0E0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-taib52__hero-section {
        padding: 100px 0 30px; /* Giảm padding cho di động */
      }

      .page-taib52__hero-title {
        font-size: 2.5em;
      }

      .page-taib52__hero-description {
        font-size: 1.1em;
        padding: 0 10px;
      }

      .page-taib52__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }

      .page-taib52 h1 {
        font-size: 2.2em;
      }

      .page-taib52 h2 {
        font-size: 1.8em;
      }

      .page-taib52 h3 {
        font-size: 1.5em;
      }

      .page-taib52__game-grid,
      .page-taib52__promo-grid,
      .page-taib52__why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      .page-taib52__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }

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

      .page-taib52__faq-toggle {
        font-size: 1.5em;
      }

      .page-taib52__faq-answer {
        padding: 0 20px;
      }

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

      /* Image responsive optimization for mobile */
      .page-taib52 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-taib52__game-card-image,
      .page-taib52__promo-card-icon,
      .page-taib52__feature-icon,
      .page-taib52__provider-logo {
        width: 100% !important;
        max-width: 100% !important; /* Override max-width for smaller screens if necessary */
        height: auto !important;
      }
    }
  