/* licensor.directory */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #f9fafb; color: #111827; font-family: 'Inter', sans-serif; line-height: 1.6; }
.hero { background: linear-gradient(135deg, #3b82f6, #4f46e5); padding: 4rem 1.5rem; text-align: center; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.5rem); color: #ffffff; margin-bottom: 1.5rem; }
.search-bar { max-width: 640px; margin: 0 auto; padding: 16px 20px; border-radius: 12px; background: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.search-placeholder { font-size: 1rem; color: #9ca3af; }
.directory { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; gap: 2rem; }
.filter-sidebar { width: 200px; flex-shrink: 0; background: #f3f4f6; border-radius: 8px; padding: 1rem; }
.filter-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.75rem; }
.filter-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #374151; margin-bottom: 0.5rem; cursor: pointer; }
.checkbox { width: 14px; height: 14px; border: 1px solid #d1d5db; border-radius: 3px; display: inline-block; }
.count { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 0.7rem; color: #6b7280; margin-left: auto; }
.listing { flex: 1; }
.entry { display: flex; align-items: center; padding: 12px; border-bottom: 1px solid #e5e7eb; background: #ffffff; gap: 0.75rem; }
.entry-name { flex: 1; font-size: 0.85rem; font-weight: 500; }
.entry-badge { font-size: 0.65rem; background: #dbeafe; color: #1d4ed8; padding: 2px 8px; border-radius: 12px; }
.stars { font-size: 0.75rem; color: #f59e0b; }
.categories { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cat-card { background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(79,70,229,0.1)); border: 1px solid #e5e7eb; border-radius: 8px; padding: 1rem 1.5rem; }
.cat-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.8rem; color: #1d4ed8; }
.stats { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; display: flex; justify-content: center; gap: 3rem; text-align: center; }
.stat-num { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 1.5rem; color: #111827; display: block; }
.stat-label { font-size: 0.7rem; color: #6b7280; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
