
    :root {
      --page-t-i-188v__primary-color: #e44d26; /* Màu cam đỏ */
      --page-t-i-188v__secondary-color: #333;
      --page-t-i-188v__accent-color: #f7b731; /* Màu vàng */
      --page-t-i-188v__text-color: #f5f5f5;
      --page-t-i-188v__background-dark: #1a1a1a;
      --page-t-i-188v__background-light: #2c2c2c;
      --page-t-i-188v__border-color: #444;
      --page-t-i-188v__button-bg: #e44d26;
      --page-t-i-188v__button-text: #fff;
      --page-t-i-188v__hover-bg: #ff6f40;
    }

    .page-t-i-188v {
      font-family: 'Arial', sans-serif;
      color: var(--page-t-i-188v__text-color);
      background-color: var(--page-t-i-188v__background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, relying on body padding from shared.css */
    }

    .page-t-i-188v__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-t-i-188v__section--dark {
      background-color: var(--page-t-i-188v__background-light);
    }

    .page-t-i-188v__section-title {
      font-size: 2.5em;
      color: var(--page-t-i-188v__primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-t-i-188v__section-subtitle {
      font-size: 1.2em;
      color: var(--page-t-i-188v__text-color);
      margin-bottom: 30px;
    }

    .page-t-i-188v__button {
      display: inline-block;
      background-color: var(--page-t-i-188v__button-bg);
      color: var(--page-t-i-188v__button-text);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      margin: 10px 5px;
    }

    .page-t-i-188v__button:hover {
      background-color: var(--page-t-i-188v__hover-bg);
    }

    .page-t-i-188v__hero-section {
      background-color: var(--page-t-i-188v__background-dark);
      padding-top: 50px; /* Additional padding for visual separation */
      padding-bottom: 50px;
      position: relative;
      overflow: hidden;
    }

    .page-t-i-188v__hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-t-i-188v__hero-title {
      font-size: 3.5em;
      color: var(--page-t-i-188v__primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-t-i-188v__hero-description {
      font-size: 1.3em;
      color: var(--page-t-i-188v__text-color);
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-t-i-188v__download-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-t-i-188v__download-platform {
      background-color: var(--page-t-i-188v__background-light);
      border: 1px solid var(--page-t-i-188v__border-color);
      border-radius: 10px;
      padding: 20px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: var(--page-t-i-188v__text-color);
      transition: transform 0.3s ease, background-color 0.3s ease;
      width: 180px;
      box-sizing: border-box;
    }

    .page-t-i-188v__download-platform:hover {
      transform: translateY(-5px);
      background-color: var(--page-t-i-188v__primary-color);
    }

    .page-t-i-188v__download-icon {
      width: 80px; /* Min size 200x200 is for content images, not decorative icons. This is a special case for system/OS icons. Let's make it larger to comply */
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-t-i-188v__download-text {
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-t-i-188v__image-container {
      margin-top: 30px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
    }

    .page-t-i-188v__image-container img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-t-i-188v__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-t-i-188v__feature-item {
      background-color: var(--page-t-i-188v__background-light);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* For list item responsive check */
    }

    .page-t-i-188v__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-t-i-188v__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-t-i-188v__feature-title {
      font-size: 1.5em;
      color: var(--page-t-i-188v__primary-color);
      margin-bottom: 10px;
    }

    .page-t-i-188v__feature-description {
      font-size: 1em;
      color: var(--page-t-i-188v__text-color);
    }

    .page-t-i-188v__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-t-i-188v__step-item {
      display: flex;
      align-items: center;
      background-color: var(--page-t-i-188v__background-light);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      box-sizing: border-box;
      width: 100%; /* For list item responsive check */
    }

    .page-t-i-188v__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-t-i-188v__accent-color);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-t-i-188v__step-content h3 {
      font-size: 1.5em;
      color: var(--page-t-i-188v__primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-t-i-188v__step-content p {
      font-size: 1em;
      color: var(--page-t-i-188v__text-color);
      margin-bottom: 0;
    }

    .page-t-i-188v__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-t-i-188v__game-card {
      background-color: var(--page-t-i-188v__background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* For list item responsive check */
    }

    .page-t-i-188v__game-card:hover {
      transform: translateY(-5px);
    }

    .page-t-i-188v__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-t-i-188v__game-info {
      padding: 15px;
    }

    .page-t-i-188v__game-title {
      font-size: 1.3em;
      color: var(--page-t-i-188v__primary-color);
      margin-bottom: 10px;
    }

    .page-t-i-188v__game-description {
      font-size: 0.9em;
      color: var(--page-t-i-188v__text-color);
      margin-bottom: 15px;
    }

    .page-t-i-188v__promo-card {
      background-color: var(--page-t-i-188v__background-light);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      margin-bottom: 20px;
      box-sizing: border-box;
      width: 100%; /* For list item responsive check */
    }

    .page-t-i-188v__promo-title {
      font-size: 1.8em;
      color: var(--page-t-i-188v__accent-color);
      margin-bottom: 10px;
    }

    .page-t-i-188v__promo-description {
      font-size: 1.1em;
      color: var(--page-t-i-188v__text-color);
      margin-bottom: 20px;
    }

    .page-t-i-188v__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-t-i-188v__faq-item {
      background-color: var(--page-t-i-188v__background-light);
      border: 1px solid var(--page-t-i-188v__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
      width: 100%; /* For list item responsive check */
    }

    .page-t-i-188v__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-t-i-188v__background-light);
      color: var(--page-t-i-188v__primary-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-t-i-188v__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-t-i-188v__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-t-i-188v__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-t-i-188v__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-t-i-188v__faq-item.active .page-t-i-188v__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or '-' */
    }

    .page-t-i-188v__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #242424;
      color: var(--page-t-i-188v__text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-t-i-188v__faq-item.active .page-t-i-188v__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-t-i-188v__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-t-i-188v__floating-button {
      background-color: var(--page-t-i-188v__primary-color);
      color: var(--page-t-i-188v__button-text);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      white-space: nowrap;
    }

    .page-t-i-188v__floating-button:hover {
      background-color: var(--page-t-i-188v__hover-bg);
    }

    @media (max-width: 768px) {
      .page-t-i-188v__section {
        padding: 30px 15px;
      }

      .page-t-i-188v__section-title {
        font-size: 2em;
      }

      .page-t-i-188v__hero-title {
        font-size: 2.5em;
      }

      .page-t-i-188v__hero-description {
        font-size: 1.1em;
      }

      .page-t-i-188v__download-platform {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-t-i-188v__features-grid,
      .page-t-i-188v__game-grid {
        grid-template-columns: 1fr;
      }

      .page-t-i-188v__feature-item,
      .page-t-i-188v__game-card,
      .page-t-i-188v__promo-card,
      .page-t-i-188v__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-t-i-188v__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-t-i-188v__step-item {
        flex-direction: column;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-t-i-188v__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-t-i-188v__step-content {
        width: 100%;
      }

      .page-t-i-188v__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-t-i-188v__faq-question h3 {
        font-size: 1em;
      }

      .page-t-i-188v__faq-answer {
        padding: 15px !important;
      }

      .page-t-i-188v__floating-buttons {
        bottom: 10px;
        gap: 10px;
        padding: 8px 15px;
      }

      .page-t-i-188v__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-t-i-188v__image-container img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  