
    :root {
      --page-102tr88-primary-color: #e44d26; /* A vibrant, energetic color for action */
      --page-102tr88-secondary-color: #333;
      --page-102tr88-accent-color: #f7b731; /* Gold/yellow for highlights */
      --page-102tr88-text-color: #f0f0f0;
      --page-102tr88-dark-bg: #1a1a1a;
      --page-102tr88-light-bg: #2a2a2a;
      --page-102tr88-border-color: #444;
      --header-offset: 122px; /* Default value, will be overridden by shared.css if present */
    }

    /* Base styles for the page content */
    .page-102tr88 {
      font-family: 'Arial', sans-serif;
      color: var(--page-102tr88-text-color);
      background-color: var(--page-102tr88-dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't define it */
      overflow-x: hidden; /* Prevent horizontal scroll due to floating elements */
    }

    .page-102tr88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px; /* Reduced top/bottom padding for mobile-first */
      box-sizing: border-box;
    }

    @media (min-width: 769px) {
      .page-102tr88__container {
        padding: 20px 20px;
      }
    }

    .page-102tr88__section {
      padding: 30px 0;
      text-align: center;
      background-color: var(--page-102tr88-light-bg);
      margin-bottom: 10px; /* Spacing between sections */
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-102tr88__section--dark {
      background-color: var(--page-102tr88-dark-bg);
    }

    .page-102tr88__title {
      color: var(--page-102tr88-accent-color);
      font-size: 2.2em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-102tr88__subtitle {
      color: var(--page-102tr88-primary-color);
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .page-102tr88__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-102tr88-text-color);
    }

    /* Brand Header */
    .page-102tr88__brand-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: var(--page-102tr88-primary-color);
      padding: 10px 0;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      margin-bottom: 20px;
    }

    .page-102tr88__brand-name {
      font-size: 2.5em;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      margin: 0;
    }

    /* Floating Buttons */
    .page-102tr88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 99;
    }

    .page-102tr88__button {
      background-color: var(--page-102tr88-primary-color);
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-102tr88__button:hover {
      background-color: #c23b18;
      transform: translateY(-2px);
    }

    .page-102tr88__button--secondary {
      background-color: var(--page-102tr88-accent-color);
      color: var(--page-102tr88-dark-bg);
    }

    .page-102tr88__button--secondary:hover {
      background-color: #d89f2a;
    }

    /* Hero Section */
    .page-102tr88__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 50px 0; /* Minimal top padding, rely on body for header offset */
      background: linear-gradient(135deg, var(--page-102tr88-dark-bg), var(--page-102tr88-light-bg));
      border-bottom: 5px solid var(--page-102tr88-primary-color);
      margin-bottom: 20px;
    }

    .page-102tr88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
      margin-bottom: 30px;
    }

    .page-102tr88__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 15px;
    }

    .page-102tr88__hero-title {
      font-size: 2.8em;
      color: #fff;
      margin-bottom: 15px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-102tr88__hero-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-102tr88__hero-cta-group {
      display: flex;
      flex-direction: column;
      gap: 15px;
      justify-content: center;
      align-items: center;
    }

    /* Product Grid */
    .page-102tr88__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-102tr88__product-card {
      background-color: var(--page-102tr88-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid var(--page-102tr88-border-color);
    }

    .page-102tr88__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-102tr88__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      height: auto;
      overflow: hidden;
      margin-bottom: 15px;
    }

    .page-102tr88__product-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-102tr88__product-card:hover .page-102tr88__product-image {
      transform: scale(1.05);
    }

    .page-102tr88__product-title {
      font-size: 1.5em;
      color: var(--page-102tr88-accent-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-102tr88__product-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-102tr88__promo-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0 15px;
      list-style: none;
      margin: 0;
    }

    .page-102tr88__promo-item {
      background-color: var(--page-102tr88-dark-bg);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      padding: 20px;
      text-align: left;
      flex: 1 1 calc(100% - 30px); /* Full width on mobile */
      max-width: calc(100% - 30px);
      box-sizing: border-box;
      border: 1px solid var(--page-102tr88-border-color);
    }

    .page-102tr88__promo-item-title {
      color: var(--page-102tr88-primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-102tr88__promo-item-description {
      color: #ccc;
      font-size: 0.9em;
      line-height: 1.5;
    }

    /* News Section */
    .page-102tr88__news-list {
      list-style: none;
      padding: 0 15px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-102tr88__news-item {
      background-color: var(--page-102tr88-dark-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-102tr88-border-color);
      transition: background-color 0.3s ease;
    }

    .page-102tr88__news-item:hover {
      background-color: #333;
    }

    .page-102tr88__news-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 5px;
    }

    .page-102tr88__news-title {
      font-size: 1.1em;
      color: var(--page-102tr88-accent-color);
      margin-bottom: 5px;
    }

    .page-102tr88__news-summary {
      font-size: 0.9em;
      color: #ccc;
    }

    /* Why Choose Us Section */
    .page-102tr88__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-102tr88__feature-card {
      background-color: var(--page-102tr88-dark-bg);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid var(--page-102tr88-border-color);
    }

    .page-102tr88__feature-icon {
      width: 200px; /* Min 200x200 for actual images */
      height: 200px;
      object-fit: contain;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-102tr88__feature-title {
      font-size: 1.3em;
      color: var(--page-102tr88-primary-color);
      margin-bottom: 10px;
    }

    .page-102tr88__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Payment & Provider Logos */
    .page-102tr88__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0 15px;
    }

    .page-102tr88__logo-item {
      background-color: #fff; /* White background for logos */
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 150px;
      width: 100%;
      height: 80px;
      box-sizing: border-box;
    }

    .page-102tr88__logo-image {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-102tr88__faq-list {
      list-style: none;
      padding: 0 15px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-102tr88__faq-item {
      background-color: var(--page-102tr88-dark-bg);
      border: 1px solid var(--page-102tr88-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-102tr88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: var(--page-102tr88-light-bg);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-102tr88__faq-question:hover {
      background-color: #383838;
    }

    .page-102tr88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-102tr88-text-color);
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-102tr88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-102tr88-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
      width: 20px; /* Ensure consistent width */
      text-align: center;
    }

    .page-102tr88__faq-item.active .page-102tr88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-102tr88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: var(--page-102tr88-dark-bg);
      color: #ccc;
      text-align: left;
      font-size: 0.95em;
    }

    .page-102tr88__faq-item.active .page-102tr88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* General image styling */
    .page-102tr88 img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
      .page-102tr88__brand-name {
        font-size: 2em;
      }

      .page-102tr88__hero-title {
        font-size: 2.2em;
      }

      .page-102tr88__hero-description {
        font-size: 1em;
      }

      .page-102tr88__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-102tr88__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-102tr88__title {
        font-size: 1.8em;
      }

      .page-102tr88__subtitle {
        font-size: 1.4em;
      }

      .page-102tr88__text {
        font-size: 1em;
      }

      .page-102tr88__product-grid {
        grid-template-columns: 1fr;
      }

      .page-102tr88__promo-item,
      .page-102tr88__news-item,
      .page-102tr88__feature-card,
      .page-102tr88__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
      }

      .page-102tr88__promo-list,
      .page-102tr88__news-list,
      .page-102tr88__feature-grid,
      .page-102tr88__logo-grid,
      .page-102tr88__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-102tr88__faq-question {
        padding: 12px 10px;
      }

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

      .page-102tr88__faq-answer {
        padding: 15px 10px !important;
        font-size: 0.9em;
      }

      .page-102tr88__logo-item {
        height: 60px;
        max-width: 120px;
      }

      /* Ensure all images are responsive */
      .page-102tr88__hero-image,
      .page-102tr88__product-image,
      .page-102tr88__feature-icon,
      .page-102tr88__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-102tr88__hero-title {
        font-size: 1.8em;
      }
      .page-102tr88__title {
        font-size: 1.5em;
      }
      .page-102tr88__subtitle {
        font-size: 1.2em;
      }
    }
  