/* plugins.css - 插件列表页专属样式 */
/* 基础重置与通用样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 网格布局通用样式 */
.grid {
    display: grid;
    width: 100%;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

/* 响应式网格列数 */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 插件列表头部样式 */
.section-header.plugins-header {
    padding: 3rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.plugins-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.plugins-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

/* 插件列表主体样式 */
.section-content.plugins-list {
    padding: 4rem 0;
}

.plugin-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.plugin-card__icon {
    margin-bottom: 1rem;
}

.plugin-card__icon img {
    border-radius: 8px;
    object-fit: cover;
}

.plugin-card__title {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.plugin-card__desc {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.plugin-card__features {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.plugin-card__features li {
    color: #718096;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.plugin-card__btn {
    display: inline-block;
}

/* 插件通用特性区域样式 */
.section-note.plugins-note {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.note-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.note-card__title {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.note-card__text {
    color: #4a5568;
    line-height: 1.6;
}

/* 支持区域样式 */
.section-support.support {
    padding: 4rem 0;
    text-align: center;
}

.section-desc {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* 按钮样式补充（和global.css兼容） */
.btn--primary {
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn--primary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
}

/* 页脚样式补充 */
.footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #3182ce;
}

.footer__bottom {
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}