
    .page-t-i-8us {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
    }

    .page-t-i-8us__section-title {
      text-align: center;
      font-size: 2.5em;
      color: #1a1a1a;
      margin-bottom: 20px;
      padding-top: 20px;
      font-weight: 700;
    }

    .page-t-i-8us__section-subtitle {
      text-align: center;
      font-size: 1.2em;
      color: #555;
      margin-bottom: 40px;
    }

    .page-t-i-8us__highlight {
      color: #e44d26; /* A distinct color for emphasis */
      font-weight: bold;
    }

    .page-t-i-8us__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:gaming_platform,mobile_interface,8us]');
      background-size: cover;
      background-position: center;
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Ensure sufficient height */
      position: relative;
    }

    .page-t-i-8us__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .page-t-i-8us__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-t-i-8us__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 900;
      color: #fff;
    }

    .page-t-i-8us__hero-description {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-t-i-8us__hero-button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-t-i-8us__hero-button:hover {
      background-color: #ff6633;
      transform: translateY(-2px);
    }

    .page-t-i-8us__hero-image {
      position: relative;
      z-index: 2;
      margin-top: 40px;
    }

    .page-t-i-8us__hero-image img {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-t-i-8us__features-section,
    .page-t-i-8us__game-categories,
    .page-t-i-8us__download-guide,
    .page-t-i-8us__promotions-section,
    .page-t-i-8us__faq-section,
    .page-t-i-8us__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-t-i-8us__features-grid,
    .page-t-i-8us__categories-grid,
    .page-t-i-8us__guide-steps,
    .page-t-i-8us__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-t-i-8us__feature-item,
    .page-t-i-8us__category-card,
    .page-t-i-8us__step-item,
    .page-t-i-8us__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-t-i-8us__feature-item:hover,
    .page-t-i-8us__category-card:hover,
    .page-t-i-8us__step-item:hover,
    .page-t-i-8us__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-t-i-8us__feature-icon,
    .page-t-i-8us__step-icon {
      width: 150px; /* Min size 200px, so 150px is not allowed for actual image */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }
    
    .page-t-i-8us__feature-icon img, .page-t-i-8us__step-icon img {
        max-width: 100%;
        height: auto;
    }

    .page-t-i-8us__feature-title,
    .page-t-i-8us__category-title,
    .page-t-i-8us__step-title,
    .page-t-i-8us__promo-title {
      font-size: 1.6em;
      color: #e44d26;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-t-i-8us__feature-description,
    .page-t-i-8us__category-description,
    .page-t-i-8us__step-description,
    .page-t-i-8us__promo-description {
      font-size: 1.05em;
      color: #666;
    }

    .page-t-i-8us__category-image,
    .page-t-i-8us__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
    }

    .page-t-i-8us__download-buttons {
      text-align: center;
      margin-top: 50px;
    }

    .page-t-i-8us__download-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      margin: 0 15px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-t-i-8us__download-button--android {
      background-color: #3DDC84; /* Android green */
    }

    .page-t-i-8us__download-button--ios {
      background-color: #007AFF; /* iOS blue */
    }

    .page-t-i-8us__download-button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .page-t-i-8us__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .page-t-i-8us__faq-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-t-i-8us__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
    }

    .page-t-i-8us__faq-question:hover {
      background-color: #e6e6e6;
    }

    .page-t-i-8us__faq-item.active .page-t-i-8us__faq-question {
      background-color: #e44d26;
      color: #fff;
    }

    .page-t-i-8us__faq-title {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent click from being consumed by h3 */
      font-weight: 600;
      flex-grow: 1;
    }

    .page-t-i-8us__faq-item.active .page-t-i-8us__faq-title {
      color: #fff;
    }

    .page-t-i-8us__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e44d26;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click from being consumed by span */
    }

    .page-t-i-8us__faq-item.active .page-t-i-8us__faq-toggle {
      color: #fff;
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-t-i-8us__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.4s ease;
      color: #555;
    }

    .page-t-i-8us__faq-item.active .page-t-i-8us__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-t-i-8us__faq-answer p {
      margin: 0;
    }

    .page-t-i-8us__cta-section {
      text-align: center;
      background-color: #e44d26;
      color: #fff;
      padding: 80px 20px;
      margin-top: 60px;
    }

    .page-t-i-8us__cta-section .page-t-i-8us__section-title {
      color: #fff;
    }

    .page-t-i-8us__cta-description {
      font-size: 1.4em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #f0f0f0;
    }

    .page-t-i-8us__cta-button {
      display: inline-block;
      background-color: #fff;
      color: #e44d26;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-t-i-8us__cta-button:hover {
      background-color: #f0f0f0;
      color: #c23b1c;
      transform: translateY(-3px);
    }

    .page-t-i-8us__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-t-i-8us__floating-button {
      background-color: #e44d26;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-t-i-8us__floating-button:hover {
      background-color: #ff6633;
      transform: translateY(-2px);
    }

    .page-t-i-8us__floating-button--login {
      background-color: #007bff; /* Different color for distinction */
    }

    .page-t-i-8us__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-t-i-8us__hero-title {
        font-size: 3em;
      }
      .page-t-i-8us__hero-description {
        font-size: 1.3em;
      }
      .page-t-i-8us__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-t-i-8us__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
      }
      .page-t-i-8us__hero-title {
        font-size: 2.2em;
      }
      .page-t-i-8us__hero-description {
        font-size: 1.1em;
      }
      .page-t-i-8us__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-t-i-8us__section-title {
        font-size: 1.8em;
        padding-top: 15px;
      }
      .page-t-i-8us__section-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
      }

      .page-t-i-8us__features-section,
      .page-t-i-8us__game-categories,
      .page-t-i-8us__download-guide,
      .page-t-i-8us__promotions-section,
      .page-t-i-8us__faq-section,
      .page-t-i-8us__cta-section {
        padding: 40px 15px;
      }

      /* List Item Responsive Requirements */
      .page-t-i-8us__features-grid,
      .page-t-i-8us__categories-grid,
      .page-t-i-8us__guide-steps,
      .page-t-i-8us__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-t-i-8us__feature-item,
      .page-t-i-8us__category-card,
      .page-t-i-8us__step-item,
      .page-t-i-8us__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-t-i-8us__feature-title,
      .page-t-i-8us__category-title,
      .page-t-i-8us__step-title,
      .page-t-i-8us__promo-title {
        font-size: 1.4em;
      }
      .page-t-i-8us__feature-description,
      .page-t-i-8us__category-description,
      .page-t-i-8us__step-description,
      .page-t-i-8us__promo-description {
        font-size: 0.95em;
      }

      .page-t-i-8us__download-button {
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
      }

      .page-t-i-8us__download-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .page-t-i-8us__faq-question {
        padding: 15px 20px;
      }
      .page-t-i-8us__faq-title {
        font-size: 1.1em;
      }
      .page-t-i-8us__faq-toggle {
        font-size: 1.5em;
      }
      .page-t-i-8us__faq-answer {
        padding: 0 20px;
      }
      .page-t-i-8us__faq-item.active .page-t-i-8us__faq-answer {
        padding: 15px 20px !important;
      }

      .page-t-i-8us__cta-description {
        font-size: 1.1em;
      }
      .page-t-i-8us__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-t-i-8us__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 10px;
        gap: 10px;
      }
      .page-t-i-8us__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.95em;
      }

      /* Image responsive optimization */
      .page-t-i-8us__hero-image img,
      .page-t-i-8us__feature-icon img,
      .page-t-i-8us__category-image,
      .page-t-i-8us__step-icon img,
      .page-t-i-8us__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-t-i-8us__hero-image,
      .page-t-i-8us__feature-item > div:first-child,
      .page-t-i-8us__step-item > div:first-child,
      .page-t-i-8us__category-card,
      .page-t-i-8us__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-t-i-8us__hero-title {
        font-size: 1.8em;
      }
      .page-t-i-8us__hero-description {
        font-size: 1em;
      }
      .page-t-i-8us__section-title {
        font-size: 1.6em;
      }
      .page-t-i-8us__floating-buttons {
        bottom: 5px;
        left: 10px;
        right: 10px;
        gap: 5px;
      }
      .page-t-i-8us__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
      }
    }
  