 html {
     color-scheme: dark;
 }
 
 body {
     font-family: var(--font);
     background-color: var(--bg-primary);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
     margin: 0;
     padding: 0;
 }
 /* Navigation */
 
 .logo {
     font-size: 1.5rem;
     font-weight: var(--weight-bold);
     color: var(--primary);
     text-decoration: none;
     font-family: var(--font-alt);
 }
 
 .search-bar-nav {
     flex: 1;
     max-width: 600px;
     margin: 0 2rem;
 }
 
 .search-input-wrapper {
     position: relative;
     width: 100%;
 }
 
 .search-input {
     width: 100%;
     padding: 0.75rem 3rem 0.75rem 1rem;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-m);
     color: var(--text-primary);
     font-size: 0.95rem;
     transition: all 0.3s ease;
 }
 
 .search-input:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(8, 121, 145, 0.1);
 }
 
 .search-btn {
     position: absolute;
     right: 0.5rem;
     top: 50%;
     transform: translateY(-50%);
     background: var(--primary);
     color: white;
     border: none;
     padding: 0.5rem 1rem;
     border-radius: var(--ins-radius-s);
     cursor: pointer;
     transition: all 0.3s ease;
 }
 
 .search-btn:hover {
     background: var(--primary-dark);
 }
 
 .nav-auth {
     display: flex;
     gap: 1rem;
     align-items: center;
 }
 /* Main Content */
 
 .main-content {
     margin-top: 80px;
     max-width: 1600px;
     margin-left: auto;
     margin-right: auto;
     padding: 2rem;
 }
 /* Page Header */
 
 .page-header {
     margin-bottom: 2rem;
 }
 
 .page-title {
     font-size: 2.5rem;
     font-weight: var(--weight-bold);
     color: var(--text-primary);
     margin-bottom: 0.5rem;
     font-family: var(--font-alt);
 }
 
 .page-subtitle {
     font-size: 1.1rem;
     color: var(--text-secondary);
     margin-bottom: 2rem;
 }
 /* Content Layout */
 
 .content-layout {
     display: grid;
     grid-template-columns: 300px 1fr;
     gap: 2rem;
 }
 /* Sidebar Filters */
 
 .sidebar-filters {
     position: sticky;
     top: 100px;
     height: fit-content;
 }
 
 .filter-section {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-l);
     padding: 1.5rem;
     margin-bottom: 1.5rem;
 }
 
 .filter-title {
     font-size: 1rem;
     font-weight: var(--weight-bold);
     color: var(--text-primary);
     margin-bottom: 1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 
 .filter-clear {
     color: var(--primary);
     font-size: 0.85rem;
     font-weight: var(--weight-medium);
     cursor: pointer;
     transition: color 0.3s ease;
 }
 
 .filter-clear:hover {
     color: var(--text-primary);
 }
 /* Search Filter */
 
 .filter-search-input {
     width: 100%;
     padding: 0.75rem 1rem;
     background: var(--bg-tertiary);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-s);
     color: var(--text-primary);
     font-size: 0.95rem;
     margin-bottom: 1rem;
 }
 
 .filter-search-input:focus {
     outline: none;
     border-color: var(--primary);
 }
 /* Checkbox Filters */
 
 .filter-options {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }
 
 .filter-option {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     cursor: pointer;
     padding: 0.5rem;
     border-radius: var(--ins-radius-s);
     transition: background 0.3s ease;
 }
 
 .filter-option:hover {
     background: var(--bg-tertiary);
 }
 
 .filter-checkbox {
     width: 18px;
     height: 18px;
     border: 2px solid var(--border);
     border-radius: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     flex-shrink: 0;
 }
 
 .filter-option input:checked+.filter-checkbox {
     background: var(--primary);
     border-color: var(--primary);
 }
 
 .filter-option input:checked+.filter-checkbox::after {
     content: '✓';
     color: white;
     font-size: 0.75rem;
     font-weight: bold;
 }
 
 .filter-option input {
     display: none;
 }
 
 .filter-label {
     color: var(--text-secondary);
     font-size: 0.95rem;
     flex: 1;
 }
 
 .filter-count {
     color: var(--text-secondary);
     font-size: 0.85rem;
 }
 /* Range Filter */
 
 .range-inputs {
     display: flex;
     gap: 0.75rem;
     margin-bottom: 0.75rem;
 }
 
 .range-input {
     flex: 1;
     padding: 0.65rem 0.75rem;
     background: var(--bg-tertiary);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-s);
     color: var(--text-primary);
     font-size: 0.9rem;
 }
 
 .range-input:focus {
     outline: none;
     border-color: var(--primary);
 }
 /* Tag Filters */
 
 .filter-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
 }
 
 .filter-tag {
     padding: 0.5rem 1rem;
     background: var(--bg-tertiary);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-s);
     color: var(--text-secondary);
     font-size: 0.85rem;
     cursor: pointer;
     transition: all 0.3s ease;
 }
 
 .filter-tag:hover {
     background: var(--surface);
     border-color: var(--primary);
     color: var(--primary);
 }
 
 .filter-tag.active {
     background: var(--primary);
     color: white;
     border-color: var(--primary);
 }
 /* Main Content Area */
 
 .main-area {
     min-height: 100vh;
 }
 /* Top Bar */
 
 .top-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 2rem;
     padding-bottom: 1rem;
     border-bottom: 1px solid var(--border);
     flex-wrap: wrap;
     gap: 1rem;
 }
 
 .results-info {
     display: flex;
     align-items: center;
     gap: 1.5rem;
 }
 
 .results-count {
     font-size: 1rem;
     color: var(--text-secondary);
 }
 
 .results-count strong {
     color: var(--text-primary);
     font-weight: var(--weight-semibold);
 }
 
 .active-filters {
     display: flex;
     gap: 0.5rem;
     flex-wrap: wrap;
 }
 
 .active-filter-tag {
     padding: 0.4rem 0.75rem;
     background: var(--primary);
     color: white;
     border-radius: var(--ins-radius-s);
     font-size: 0.85rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }
 
 .filter-remove {
     cursor: pointer;
     font-weight: bold;
 }
 
 .controls {
     display: flex;
     gap: 1rem;
     align-items: center;
 }
 
 .sort-select {
     padding: 0.65rem 1rem;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-s);
     color: var(--text-primary);
     font-size: 0.95rem;
     cursor: pointer;
 }
 
 .sort-select:focus {
     outline: none;
     border-color: var(--primary);
 }
 
 .view-toggle {
     display: flex;
     gap: 0.5rem;
 }
 
 .view-btn {
     width: 40px;
     height: 40px;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-s);
     color: var(--text-secondary);
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
 }
 
 .view-btn:hover {
     border-color: var(--primary);
     color: var(--primary);
 }
 
 .view-btn.active {
     background: var(--primary);
     color: white;
     border-color: var(--primary);
 }
 /* Creators Grid */
 
 .creator-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 2rem;
     margin-bottom: 3rem;
 }
 
 .creator-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-l);
     overflow: hidden;
     transition: all 0.3s ease;
     cursor: pointer;
     display: flex;
     flex-direction: column;
 }
 
 .creator-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
     border-color: var(--primary);
 }
 /* Creator Banner */
 
 .creator-banner {
     height: 120px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
 }
 
 .creator-type-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: rgba(0, 0, 0, 0.7);
     backdrop-filter: blur(10px);
     color: white;
     padding: 0.4rem 0.85rem;
     border-radius: var(--ins-radius-s);
     font-size: 0.75rem;
     font-weight: var(--weight-semibold);
     text-transform: uppercase;
 }
 /* Creator Content */
 
 .creator-content {
     padding: 1.5rem;
     flex: 1;
     display: flex;
     flex-direction: column;
 }
 
 .creator-header {
     display: flex;
     gap: 1rem;
     margin-bottom: 1rem;
     margin-top: -50px;
     z-index: 1;
 }
 
 .creator-avatar {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     border: 4px solid var(--surface);
     flex-shrink: 0;
 }
 
 .creator-info {
     flex: 1;
     padding-top: 40px;
 }
 
 .creator-name {
     font-size: 1.25rem;
     font-weight: var(--weight-semibold);
     color: var(--text-primary);
     margin-bottom: 0.25rem;
 }
 
 .creator-location {
     font-size: 0.85rem;
     color: var(--text-secondary);
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }
 
 .creator-description {
     font-size: 0.95rem;
     color: var(--text-secondary);
     line-height: 1.6;
     margin-bottom: 1rem;
     flex: 1;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }
 
 .creator-specialties {
     display: flex;
     flex-wrap: wrap;
     gap: 0.4rem;
     margin-bottom: 1rem;
 }
 
 .specialty-tag {
     padding: 0.35rem 0.75rem;
     background: var(--bg-tertiary);
     border-radius: var(--ins-radius-s);
     font-size: 0.8rem;
     color: var(--text-secondary);
 }
 
 .creator-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 1rem;
     border-top: 1px solid var(--border);
 }
 
 .creator-stats {
     display: flex;
     gap: 1.25rem;
     font-size: 0.85rem;
     color: var(--text-secondary);
 }
 
 .stat {
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }
 
 .btn-follow {
     background: transparent;
     border: 2px solid var(--primary);
     color: var(--primary);
     border-radius: var(--ins-radius-s);
     cursor: pointer;
     font-weight: var(--weight-semibold);
     font-size: 0.9rem;
     transition: all 0.3s ease;
 }
 
 .btn-follow:hover {
     background: var(--primary);
     color: white;
 }
 
 .btn-follow.following {
     background: var(--primary);
     color: white;
 }
 /* List View */
 
 .creator-list {
     display: none;
     flex-direction: column;
     gap: 1.5rem;
 }
 
 .creator-list.active {
     display: flex;
 }
 
 .creator-card-list {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-l);
     padding: 1.5rem;
     transition: all 0.3s ease;
     cursor: pointer;
     display: flex;
     gap: 1.5rem;
 }
 
 .creator-card-list:hover {
     border-color: var(--primary);
     box-shadow: var(--shadow-md);
 }
 
 .list-avatar {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     flex-shrink: 0;
 }
 
 .list-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }
 
 .list-header {
     display: flex;
     justify-content: space-between;
     align-items: start;
 }
 
 .list-info h3 {
     font-size: 1.25rem;
     font-weight: var(--weight-semibold);
     color: var(--text-primary);
     margin-bottom: 0.25rem;
 }
 
 .list-meta {
     font-size: 0.85rem;
     color: var(--text-secondary);
 }
 
 .list-description {
     color: var(--text-secondary);
     line-height: 1.6;
 }
 
 .list-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }
 /* Pagination */
 
 .pagination {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 0.5rem;
     margin-top: 3rem;
 }
 
 .page-btn {
     padding: 0.75rem 1.25rem;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--ins-radius-s);
     color: var(--text-primary);
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: var(--weight-medium);
 }
 
 .page-btn:hover {
     background: var(--bg-secondary);
     border-color: var(--primary);
     color: var(--primary);
 }
 
 .page-btn.active {
     background: var(--primary);
     color: white;
     border-color: var(--primary);
 }
 
 .page-btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }
 /* Footer */
 
 footer {
     background: var(--surface);
     border-top: 1px solid var(--border);
     padding: 2rem 0;
     text-align: center;
     color: var(--text-secondary);
     font-size: 0.9rem;
     margin-top: 4rem;
 }
 /* Responsive */
 
 @media (max-width: 1200px) {
     .content-layout {
         grid-template-columns: 1fr;
     }
     .sidebar-filters {
         position: relative;
         top: 0;
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 1rem;
     }
     .filter-section {
         margin-bottom: 0;
     }
 }
 
 @media (max-width: 768px) {
     .nav-container {
         flex-wrap: wrap;
     }
     .search-bar-nav {
         order: 3;
         max-width: 100%;
         margin: 1rem 0 0 0;
         width: 100%;
     }
     .main-content {
         padding: 1rem;
     }
     .page-title {
         font-size: 2rem;
     }
     .sidebar-filters {
         grid-template-columns: 1fr;
     }
     .top-bar {
         flex-direction: column;
         align-items: stretch;
     }
     .controls {
         width: 100%;
         justify-content: space-between;
     }
     .creator-grid {
         grid-template-columns: 1fr;
     }
     .creator-card-list {
         flex-direction: column;
     }
 }