.page-header {
    margin-bottom: 24px;
}
.page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.page-subtitle {
    color: var(--muted-foreground);
    font-size: 14px;
}
.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 4px;
}
.filter-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
    margin-right: 8px;
    white-space: nowrap;
}
.filter-chip {
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}
.filter-chip.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}
.filter-select-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.filter-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background-color: var(--card);
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    white-space: nowrap;
    min-width: 160px;
}
.filter-select-value {
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 500;
}
.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    padding: 0 32px;
    gap: 16px;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .projects-grid {
        padding: 0 32px;
        gap: 16px;
    }
}

.project-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}
@media (min-width: 768px) {
    .project-card {
        max-width: 360px;
    }
}
.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    height: 140px;
}
.card-logo-bar {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.project-logo,
.platform-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: var(--radius-xl);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 1px var(--border);
}
.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xl);
    background-color: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.logo-text {
    display: none;
}
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.card-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.card-description {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.progress-section {
    margin-top: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}
.progress-bar {
    height: 8px;
    background-color: var(--secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: var(--radius-xl);
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
    padding-top: 16px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}
.stat-label {
    font-size: 12px;
    color: var(--muted-foreground);
}
.feedback-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--muted-foreground);
}
.feedback-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.feedback-count {
    font-weight: 600;
    color: var(--foreground);
}
.card-actions {
    display: flex;
    gap: 12px;
}
.btn {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}
.btn-outline {
    border: 1px solid var(--border);
    color: var(--foreground);
    background-color: transparent;
}
.btn-ai {
    border: 1px solid var(--accent);
    background-color: var(--secondary);
    color: var(--accent-foreground);
    position: relative;
    overflow: hidden;
}
.btn-ai::before {
    content: "AI";
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-foreground);
    background-color: var(--accent);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    position: absolute;
    top: 6px;
    left: 10px;
    white-space: nowrap;
}
.btn-ai span {
    padding-left: 18px;
}
