/* ========== 截图页面独有样式 ========== */
.screenshots-title {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
    padding-bottom: 10px;
}

.screenshots-desc {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 截图网格布局 */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.6);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.screenshot-item .caption {
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    .screenshot-item img {
        height: 150px;
    }
}