.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.project-card {
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--card-shadow);
    position: relative;
    cursor:pointer;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(100, 108, 255, 0.3);
    filter:brightness(0.9);
}
.project-preview {
    height: 180px;
    position: relative;
    overflow: hidden;
}
.project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.project-card:hover .project-preview img {
    transform: scale(1.05);
}
.project-visibility {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(4px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}
.project-info {
    padding: 1.5rem;
}
.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}
.project-creator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.project-creator span:hover {
 text-decoration: underline;
}
.project-creator img:hover {
 filter: brightness(1.1);
}
.creator-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}
.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.project-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.project-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.project-metrics {
    display: flex;
    gap: 1rem;
}
.metric {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--gray);
}
.metric.rating {
    color: #ffb400;
}
.metric.plays {
    color: var(--primary);
}
.project-price {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(100, 108, 255, 0.15);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}
.project-price.free {
    background: rgba(100, 255, 163, 0.15);
    color: var(--success);
}
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}
.empty-state i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}
.empty-state h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--light);
}
.empty-state p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}
.project-genre {
     display: inline-block;
     padding: 0.25rem 0.75rem;
     background: rgba(100, 108, 255, 0.1);
     color: var(--primary);
     border-radius: 12px;
     font-size: 0.8rem;
     font-weight: 500;
     margin-bottom: 1rem;
 }
 .project-genre:hover {
     background: rgba(100, 108, 255, 0.2);
 }