
    /* CSS Reset & Base */
    .page-10tr88-com {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-top: 10px; /* Small decorative padding, assuming body handles main header offset */
    }

    .page-10tr88-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-10tr88-com__hero-section {
      background: linear-gradient(135deg, #FFD700, #FF8C00); /* Gold to Orange gradient */
      color: #fff;
      text-align: center;
      padding: 60px 20px 80px; /* Adjusted padding to accommodate floating buttons */
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-10tr88-com__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-10tr88-com__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.4;
    }

    .page-10tr88-com__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-10tr88-com__button {
      background-color: #007bff; /* Blue */
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-10tr88-com__button--primary {
      background-color: #FF4500; /* OrangeRed */
      box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
    }

    .page-10tr88-com__button--primary:hover {
      background-color: #E63900;
      transform: translateY(-2px);
    }

    .page-10tr88-com__button--secondary {
      background-color: #1E90FF; /* DodgerBlue */
      box-shadow: 0 4px 10px rgba(30, 144, 255, 0.4);
    }

    .page-10tr88-com__button--secondary:hover {
      background-color: #1C86EE;
      transform: translateY(-2px);
    }

    /* Floating Buttons (Register/Login) */
    .page-10tr88-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-10tr88-com__floating-button {
      flex: 1;
      max-width: 180px;
      padding: 12px 0;
      text-align: center;
      font-size: 1.1em;
      border-radius: 6px;
      font-weight: bold;
      transition: transform 0.2s ease;
    }

    .page-10tr88-com__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-10tr88-com__floating-button--register {
      background-color: #FFD700; /* Gold */
      color: #333;
    }

    .page-10tr88-com__floating-button--login {
      background-color: #32CD32; /* LimeGreen */
      color: #fff;
    }

    /* Section Styling */
    .page-10tr88-com__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-10tr88-com__section-dark {
      background-color: #333;
      color: #fff;
    }

    .page-10tr88-com__section-title {
      text-align: center;
      font-size: 2.2em;
      margin-bottom: 30px;
      color: #333;
      font-weight: bold;
    }

    .page-10tr88-com__section-dark .page-10tr88-com__section-title {
      color: #FFD700;
    }

    /* Product Grid */
    .page-10tr88-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Center items in the grid */
    }

    .page-10tr88-com__product-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      max-width: 350px; /* Limit card width */
    }

    .page-10tr88-com__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-10tr88-com__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #FFD700;
    }

    .page-10tr88-com__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-10tr88-com__product-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #333;
      font-weight: bold;
    }

    .page-10tr88-com__product-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-10tr88-com__product-link {
      display: inline-block;
      background-color: #FF4500;
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 0.95em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push button to bottom */
    }

    .page-10tr88-com__product-link:hover {
      background-color: #E63900;
    }

    /* Promotions Section */
    .page-10tr88-com__promotion-item {
      display: flex;
      align-items: center;
      background-color: #f9f9f9;
      border-left: 5px solid #FFD700;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-10tr88-com__promotion-icon {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      margin-right: 20px;
      border-radius: 50%;
      background-color: #FFD700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;
      color: #333;
      font-weight: bold;
    }

    .page-10tr88-com__promotion-content h3 {
      font-size: 1.5em;
      color: #FF4500;
      margin-bottom: 5px;
    }

    .page-10tr88-com__promotion-content p {
      font-size: 1em;
      color: #555;
    }

    /* Why Choose Us Section */
    .page-10tr88-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-10tr88-com__feature-item {
      text-align: center;
      padding: 25px;
      background-color: #333; /* Dark background */
      color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      border-bottom: 4px solid #FFD700;
    }

    .page-10tr88-com__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-10tr88-com__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #FFD700;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .page-10tr88-com__feature-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-10tr88-com__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* FAQ Section */
    .page-10tr88-com__faq-section {
      background-color: #f0f0f0;
      padding: 40px 0;
      margin-bottom: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

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

    .page-10tr88-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-10tr88-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Ensure h3 matches parent font size */
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-10tr88-com__faq-question:hover {
      background-color: #eee;
    }

    .page-10tr88-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-10tr88-com__faq-item.active .page-10tr88-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or similar) */
    }

    .page-10tr88-com__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;
      color: #555;
    }

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

    /* About Section (Text Only) */
    .page-10tr88-com__about-section p {
      text-align: center;
      font-size: 1.1em;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-10tr88-com__hero-title {
        font-size: 2em;
      }

      .page-10tr88-com__hero-subtitle {
        font-size: 1.1em;
      }

      .page-10tr88-com__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-10tr88-com__button {
        width: 80%;
        margin: 0 auto;
      }

      .page-10tr88-com__floating-buttons {
        gap: 10px;
        padding: 8px 0;
      }

      .page-10tr88-com__floating-button {
        font-size: 1em;
        padding: 10px 0;
        max-width: 150px;
      }

      .page-10tr88-com__section-title {
        font-size: 1.8em;
      }

      .page-10tr88-com__product-grid {
        grid-template-columns: 1fr;
      }

      .page-10tr88-com__product-card {
        max-width: 90%;
        margin: 0 auto;
      }

      .page-10tr88-com__promotion-item {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid #FFD700;
      }

      .page-10tr88-com__promotion-icon {
        margin: 0 auto 15px;
      }

      .page-10tr88-com__promotion-content h3 {
        font-size: 1.3em;
      }

      .page-10tr88-com__promotion-content p {
        font-size: 0.9em;
      }

      .page-10tr88-com__features-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive requirements for generic lists if any */
      .page-10tr88-com ul,
      .page-10tr88-com ol {
        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-10tr88-com li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px !important; /* Adjust as needed */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive requirements */
      .page-10tr88-com img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-10tr88-com__product-image,
      .page-10tr88-com__feature-icon {
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust */
        box-sizing: border-box !important;
      }
      .page-10tr88-com__product-card,
      .page-10tr88-com__feature-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
    }
  