/* Tools 메인 페이지 전용 스타일 */

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.tool-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(100, 181, 246, 0.5);
}

.tool-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #64b5f6, #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.tool-content {
    flex: 1;
    min-width: 0;
}

.tool-content h3 {
    color: #e0e6ed;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tool-content p {
    color: #b0bec5;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.tool-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
}

.tool-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.features {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #64b5f6;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #64b5f6;
}

.inline-ad {
    margin: 30px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.inline-ad.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .tool-item {
        padding: 15px;
        gap: 15px;
    }
    
    .tool-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .tool-content h3 {
        font-size: 16px;
    }
    
    .tool-content p {
        font-size: 13px;
    }
    
    .tool-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tool-item {
        padding: 12px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .tool-content {
        order: 2;
    }
    
    .tool-btn {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .tool-icon {
        order: 1;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
