
    .page-tai-game-b52 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-tai-game-b52__section-title {
      font-size: 2.2em;
      color: #0056b3; /* Darker blue for headings */
      text-align: center;
      margin-bottom: 30px;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-tai-game-b52__text-content {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-align: center;
      color: #555;
    }

    .page-tai-game-b52__primary-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for primary actions */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-tai-game-b52__primary-button:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-tai-game-b52__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient background */
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      padding-top: 10px; /* As per instruction, rely on body padding for header offset */
    }

    .page-tai-game-b52__hero-content {
      max-width: 900px;
      margin-bottom: 40px;
    }

    .page-tai-game-b52__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 900;
      color: #fff;
    }

    .page-tai-game-b52__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-tai-game-b52__hero-image-wrapper {
      max-width: 600px;
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .page-tai-game-b52__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Introduction Section */
    .page-tai-game-b52__introduction-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    /* Features Section */
    .page-tai-game-b52__features-section {
      padding: 60px 20px;
      background-color: #f0f2f5;
    }

    .page-tai-game-b52__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-tai-game-b52__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-tai-game-b52__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-tai-game-b52__feature-icon {
      width: 100%; /* Ensure images are responsive within their containers */
      max-width: 250px; /* Example max-width, adjust as needed */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-tai-game-b52__feature-title {
      font-size: 1.6em;
      color: #0056b3;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-tai-game-b52__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Game Showcase Section */
    .page-tai-game-b52__game-showcase-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-tai-game-b52__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
    }

    .page-tai-game-b52__game-category-item {
      background-color: #fdfdfd;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-tai-game-b52__game-category-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-tai-game-b52__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-tai-game-b52__game-title {
      font-size: 1.4em;
      color: #0056b3;
      margin: 15px 0 10px 0;
      padding: 0 15px;
      font-weight: bold;
    }

    .page-tai-game-b52__game-description {
      font-size: 0.95em;
      color: #777;
      padding: 0 15px 20px 15px;
    }

    .page-tai-game-b52__providers-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      background-color: #f0f2f5;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .page-tai-game-b52__providers-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-tai-game-b52__provider-items {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-tai-game-b52__provider-item {
      background-color: #e9ecef;
      color: #333;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 1em;
      white-space: nowrap;
      box-sizing: border-box; /* Required for list items */
    }

    /* How to Download Section */
    .page-tai-game-b52__how-to-download-section {
      padding: 60px 20px;
      background-color: #f0f2f5;
      text-align: center;
    }

    .page-tai-game-b52__download-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto 40px auto;
    }

    .page-tai-game-b52__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .page-tai-game-b52__step-icon {
      width: 100%;
      max-width: 200px; /* Example max-width for step icons */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-tai-game-b52__step-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-tai-game-b52__step-description {
      font-size: 1em;
      color: #666;
    }

    .page-tai-game-b52__download-cta {
      margin-top: 40px;
    }

    /* FAQ Section */
    .page-tai-game-b52__faq-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-tai-game-b52__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-tai-game-b52__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fdfdfd;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-tai-game-b52__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #e9f5ff; /* Light blue for question */
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-tai-game-b52__faq-question:hover {
      background-color: #d6eaff;
    }

    .page-tai-game-b52__faq-question-text {
      font-size: 1.2em;
      color: #0056b3;
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent text from blocking click event */
      font-weight: bold;
    }

    .page-tai-game-b52__faq-toggle {
      font-size: 1.8em;
      color: #0056b3;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent icon from blocking click event */
    }

    .page-tai-game-b52__faq-item.active .page-tai-game-b52__faq-toggle {
      transform: rotate(45deg); /* Plus to X (rotate 45deg) or to Minus (rotate 90deg) */
    }

    .page-tai-game-b52__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #ffffff;
      color: #555;
      font-size: 1em;
      text-align: left;
    }

    .page-tai-game-b52__faq-item.active .page-tai-game-b52__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-tai-game-b52__faq-answer p {
      margin: 0;
    }

    /* Final CTA Section */
    .page-tai-game-b52__cta-final-section {
      padding: 60px 20px;
      background: linear-gradient(to right, #0056b3, #007bff); /* Blue gradient */
      color: #fff;
      text-align: center;
    }

    .page-tai-game-b52__cta-final-section .page-tai-game-b52__section-title {
      color: #fff;
    }

    .page-tai-game-b52__cta-final-section .page-tai-game-b52__text-content {
      color: #eee;
    }

    .page-tai-game-b52__primary-button--large {
      padding: 18px 35px;
      font-size: 1.2em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-tai-game-b52__hero-section {
        padding: 40px 15px;
      }

      .page-tai-game-b52__hero-title {
        font-size: 2.5em;
      }

      .page-tai-game-b52__hero-description {
        font-size: 1.1em;
      }

      .page-tai-game-b52__section-title {
        font-size: 1.8em;
      }

      .page-tai-game-b52__text-content {
        font-size: 1em;
        padding: 0 10px;
      }

      .page-tai-game-b52__primary-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-tai-game-b52__primary-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-tai-game-b52__features-grid,
      .page-tai-game-b52__game-categories,
      .page-tai-game-b52__download-steps {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-tai-game-b52__feature-item,
      .page-tai-game-b52__game-category-item,
      .page-tai-game-b52__step-item {
        padding: 20px;
      }

      .page-tai-game-b52__feature-icon,
      .page-tai-game-b52__step-icon {
        max-width: 150px;
      }

      .page-tai-game-b52__feature-title {
        font-size: 1.4em;
      }

      .page-tai-game-b52__game-title {
        font-size: 1.2em;
      }

      .page-tai-game-b52__game-image {
        height: 180px;
      }

      .page-tai-game-b52__providers-list {
        padding: 20px;
      }

      .page-tai-game-b52__provider-items {
        flex-direction: column;
        gap: 10px;
        padding: 0 !important; /* Important for list containers */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-tai-game-b52__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px;
        font-size: 0.9em;
        word-wrap: break-word !important; /* Ensure text wraps */
        text-align: center;
      }

      .page-tai-game-b52__faq-question {
        padding: 15px;
      }

      .page-tai-game-b52__faq-question-text {
        font-size: 1em;
      }

      .page-tai-game-b52__faq-toggle {
        font-size: 1.5em;
      }

      .page-tai-game-b52__faq-answer {
        padding: 0 15px;
      }

      .page-tai-game-b52__faq-item.active .page-tai-game-b52__faq-answer {
        padding: 15px !important;
      }

      /* General image responsive */
      .page-tai-game-b52 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-tai-game-b52__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  