/* Toolify 风格优化 */
:root {
    --primary-color: #5c6bc0;
    --secondary-color: #7986cb;
    --accent-color: #ff7043;
    --light-bg: #f3f4f8;
    --logo-bg: #4065a3;
}

body {
    background-color: var(--light-bg);
}

.navbar {
    padding: 0.8rem 0;
}

/* ONECREATOR Logo 样式 */
.logo {
    font-size: 1.3rem;
}

.logo-box {
    background-color: var(--logo-bg);
    color: white;
    font-size: 24px;
    letter-spacing: 4px;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 300;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.nav-categories {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow-x: auto;
}

.category-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tabs a {
    white-space: nowrap;
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
    transition: all 0.2s;
}

.category-tabs a:hover, .category-tabs a.active {
    background-color: var(--primary-color);
    color: white;
}

.hero {
    padding: 3rem 0;
    border-radius: 0;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.section-title:after {
    height: 2px;
    width: 30px;
}

.tools-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tools-tabs button {
    padding: 10px 15px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.tools-tabs button.active {
    color: var(--primary-color);
}

.tools-tabs button.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tool-card {
    border-radius: 12px;
    padding: 20px;
    background: white;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.tool-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.tool-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.tool-name {
    font-size: 1.1rem;
}

.tool-tags {
    margin: 8px 0;
}

.tool-tag {
    background-color: #f5f5f5;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.tool-stats {
    display: flex;
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    align-items: center;
}

.tool-stats .stat {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.tool-stats i {
    margin-right: 4px;
    font-size: 1rem;
}

.view-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f5f5f5;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.2s;
}

.view-more:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .tools-tabs {
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .tools-tabs button {
        white-space: nowrap;
    }
    
    .logo-box {
        font-size: 18px;
        letter-spacing: 2px;
        padding: 6px 10px;
    }
} 