/* 仅添加项目详情页特有的样式，不重复主题相关定义 */
.project-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .project-header {
flex-direction: row;
    }
}

.project-main-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-main-image:hover img {
    transform: scale(1.02);
}

.project-header-info {
    flex: 1;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--meta-text);
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
grid-template-columns: repeat(3, 1fr);
    }
}

.dependencies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dependency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.thanks-section {
    text-align: center;
}

.contributor {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contributor-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.contributor-info {
    text-align: left;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
}

.back-link:hover {
    text-decoration: underline;
    transform: translateX(-3px);
}