/* Apps页面专用样式 */
.apps-main {
    min-height: 100vh;
    padding: 6rem 0 2rem 0; /* 增加顶部间距避免被导航栏遮挡 */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.apps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apps-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.apps-header .highlight {
    color: #ffd700;
    font-weight: 600;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.app-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.app-icon div {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 6px;
}

.search-icon {
    position: relative;
}

.search-icon::before {
    content: '🔍';
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.app-info {
    flex: 1;
}

.app-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.app-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.app-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.app-links a {
    color: #666;
    text-decoration: none;
    margin-right: 1rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.app-links a:hover {
    color: #667eea;
    border-bottom-color: #667eea;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .apps-container {
        padding: 0 1rem;
    }
    
    .apps-header h1 {
        font-size: 2rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .app-links a {
        display: block;
        margin: 0.25rem 0;
    }
}