:root {
  --tiktok-bg: #000;
  --tiktok-accent: #fe2c55;
  --tiktok-gray: #121212;
  --tiktok-muted: #aaa;
  --cashback-bg: #8b6f2d;
}

body {
  background: var(--tiktok-bg);
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.no-scrollbar::-webkit-scrollbar { display: none; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-img {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 50;
}

.badge {
  display: inline-block;
  font-size: 0.66rem;
  margin-top: 0.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
}

.search-disabled {
  pointer-events: none;
  opacity: 0.9;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
