
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #DC143C; /* Crimson Red */
      --text-color: #E0E0E0; /* Light Gray */
      --background-dark: #1a1a1a; /* Dark Gray */
      --background-light: #2c2c2c; /* Slightly lighter dark gray */
    }

    /* General page styling */
    .page-888ti {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-888ti__section-title {
      font-size: 2.5rem;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-888ti__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--secondary-color);
      margin: 10px auto 0;
    }

    .page-888ti__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1rem;
      color: #b0b0b0;
    }

    /* Hero Section */
    .page-888ti__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      padding: 60px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles header offset */
    }

    .page-888ti__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-888ti__hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5); /* Darken image for text readability */
      max-width: 100% !important; /* Ensure responsiveness */
      box-sizing: border-box !important;
    }

    .page-888ti__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-888ti__main-heading {
      font-size: 3.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-888ti__tagline {
      font-size: 1.5rem;
      color: #f0f0f0;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-888ti__cta-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-888ti__cta-button:hover {
      background-color: #a00d2e; /* Darker red */
      transform: translateY(-3px);
    }

    /* About Section */
    .page-888ti__about-section,
    .page-888ti__products-section,
    .page-888ti__promotion-section,
    .page-888ti__faq-section,
    .page-888ti__cta-bottom-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-888ti__features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .page-888ti__feature-item {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-888ti__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-888ti__feature-icon {
      width: 120px; /* Min size 200x200, so 120px is fine for display */
      height: 120px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-888ti__feature-title {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-888ti__feature-text {
      font-size: 1rem;
      color: #b0b0b0;
    }

    /* Products Section */
    .page-888ti__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-888ti__product-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .page-888ti__product-card:hover {
      transform: translateY(-5px);
    }

    .page-888ti__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-888ti__product-title {
      font-size: 1.8rem;
      color: var(--primary-color);
      padding: 20px 15px 10px;
    }

    .page-888ti__product-description {
      font-size: 1rem;
      color: #b0b0b0;
      padding: 0 15px 20px;
    }

    /* Promotion Section */
    .page-888ti__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-888ti__promo-item {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .page-888ti__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-888ti__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-888ti__promo-title {
      font-size: 1.6rem;
      color: var(--primary-color);
      padding: 20px 15px 10px;
    }

    .page-888ti__promo-text {
      font-size: 1rem;
      color: #b0b0b0;
      padding: 0 15px 20px;
    }

    .page-888ti__promo-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-888ti__promo-button:hover {
      background-color: #a00d2e;
    }

    /* FAQ Section */
    .page-888ti__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .page-888ti__faq-item {
      background-color: var(--background-light);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-888ti__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-888ti__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-888ti__faq-title {
      font-size: 1.3rem;
      color: var(--primary-color);
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-888ti__faq-toggle {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-888ti__faq-item.active .page-888ti__faq-toggle {
      transform: rotate(45deg); /* + becomes x */
      color: var(--primary-color);
    }

    .page-888ti__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #d0d0d0;
      font-size: 1rem;
    }

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

    .page-888ti__faq-answer p {
      margin: 0;
    }

    /* Call to Action Bottom Section */
    .page-888ti__cta-bottom-section {
      text-align: center;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .page-888ti__cta-button--large {
      padding: 18px 40px;
      font-size: 1.4rem;
      margin-top: 30px;
    }

    /* Floating Register/Login Buttons */
    .page-888ti__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 26, 0.9);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-888ti__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 15px;
      margin: 0 5px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-888ti__floating-button--register {
      background-color: var(--primary-color);
      color: var(--background-dark);
    }

    .page-888ti__floating-button--register:hover {
      background-color: #e6c200; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-888ti__floating-button--login {
      background-color: var(--secondary-color);
      color: #fff;
    }

    .page-888ti__floating-button--login:hover {
      background-color: #a00d2e; /* Darker red */
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-888ti__main-heading {
        font-size: 3rem;
      }
      .page-888ti__tagline {
        font-size: 1.3rem;
      }
      .page-888ti__section-title {
        font-size: 2rem;
      }
      .page-888ti__feature-item {
        max-width: 45%;
      }
      .page-888ti__product-card,
      .page-888ti__promo-item {
        max-width: 48%;
      }
    }

    @media (max-width: 768px) {
      .page-888ti__main-heading {
        font-size: 2.5rem;
      }
      .page-888ti__tagline {
        font-size: 1.1rem;
      }
      .page-888ti__section-title {
        font-size: 1.8rem;
      }
      .page-888ti__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
      }
      .page-888ti__hero-section,
      .page-888ti__about-section,
      .page-888ti__products-section,
      .page-888ti__promotion-section,
      .page-888ti__faq-section,
      .page-888ti__cta-bottom-section {
        padding: 40px 15px;
      }

      .page-888ti__features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
      .page-888ti__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 25px;
      }
      .page-888ti__feature-icon {
        width: 100px;
        height: 100px;
      }

      .page-888ti__product-grid,
      .page-888ti__promotion-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-888ti__product-card,
      .page-888ti__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-888ti__product-image,
      .page-888ti__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-888ti__faq-question {
        padding: 15px 20px;
      }
      .page-888ti__faq-title {
        font-size: 1.1rem;
      }
      .page-888ti__faq-toggle {
        font-size: 1.5rem;
      }
      .page-888ti__faq-answer {
        padding: 0 20px;
      }
      .page-888ti__faq-item.active .page-888ti__faq-answer {
        padding: 15px 20px !important;
      }

      .page-888ti__floating-buttons {
        padding: 8px 0;
      }
      .page-888ti__floating-button {
        font-size: 1rem;
        padding: 10px 10px;
        margin: 0 3px;
      }
    }

    @media (max-width: 480px) {
      .page-888ti__main-heading {
        font-size: 2rem;
      }
      .page-888ti__tagline {
        font-size: 1rem;
      }
      .page-888ti__cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
      }
      .page-888ti__section-title {
        font-size: 1.6rem;
      }
      .page-888ti__feature-title,
      .page-888ti__product-title,
      .page-888ti__promo-title {
        font-size: 1.4rem;
      }
      .page-888ti__feature-icon {
        width: 80px;
        height: 80px;
      }
      .page-888ti__floating-button {
        font-size: 0.9rem;
        padding: 8px 8px;
      }
    }
  